Since the last "pod install", i get the error "No podspec found for react-native-beacons-manager in ../node_modules/react-native-beacons-manager" if i ran "pod install" and i dont know why. The library works until the last month. But now, i get the error.
I add the following in react-native.config.js
module.exports = {
project: {
ios: {},
android: {},
},
assets: ['./src/app/static/fonts/'],
dependencies: {
'react-native-beacons-manager': {
platforms: {
android: null,
ios: null,
},
},
},
}
In the ios/Podfile i add the following:
pod 'react-native-beacons-manager', :path => '../node_modules/react-native-beacons-manager'
In XCode under "Libraries" i add RNiBeacon.xcodeproj
I the following Versions:
- iOS 15.5
- NPM 8.3.1
- NodeJS 16.14.0