Skip to content

Minimum Deployment target is actually 26.0 #22

@fschoenfeldt

Description

@fschoenfeldt

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions