-
-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Description
Contrary to the README, setting:
[
"expo-build-properties",
{
"ios": {
"deploymentTarget": "16.1"
}
}
],raises this error once running npx expo prebuild --clean:
[!] CocoaPods could not find compatible versions for pod "NitroActivityKit":
In Podfile:
NitroActivityKit (from `../node_modules/@kingstinct/react-native-activity-kit`)
Specs satisfying the `NitroActivityKit (from `../node_modules/@kingstinct/react-native-activity-kit`)` dependency were found, but they required a higher minimum deployment target.
Changing the deploymentTarget resolves this issue:
[
"expo-build-properties",
{
"ios": {
-- "deploymentTarget": "16.1"
++ "deploymentTarget": "26.0"
}
}
],is this a documentation error?
Metadata
Metadata
Assignees
Labels
No labels