Portals for React Native has a minimum iOS platform version: 13.0. If your project has a lower minimum iOS platform version, you may encounter the following error when running pod install
:
[!] Cocoapods could not find compatible versions for pod "ReactNativePortals": In Podfile: ReactNativePortals (from `../node_modules/@ionic/portals-react-native`) Specs satisifying the `ReactNativePortals
(from `../node_modules/@ionic/portals-react-native`)` dependency were found,
but they required a higher minimum deployment target.
To resolve this error, set the minimum iOS version to 13.0 within your Podfile
:
require_relative '../node_modules/react-native/scripts/react_native_pods' require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' platform :ios, '13.0' install! 'cocoapods', :deterministic_uuids => false # Remaining code omitted for brevity #
Comments
0 comments
Article is closed for comments.