0.12.1 • Published 3 days ago

expo-build-properties v0.12.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 days ago

expo-build-properties

expo-build-properties is a config plugin for managed apps to override the default native build properties.

API documentation

Installation

Note: To use this config plugin, your apps must be a managed app and build by either EAS Build or expo run:[android|ios].

expo install expo-build-properties

Add plugin to app.json. For example:

{
  "expo": {
    "plugins": [
      [
        "expo-build-properties",
        {
          "android": {
            "compileSdkVersion": 31,
            "targetSdkVersion": 31,
            "buildToolsVersion": "31.0.0"
          },
          "ios": {
            "deploymentTarget": "13.0"
          }
        }
      ]
    ]
  }
}

Contributing

Contributions are very welcome! Please refer to guidelines described in the contributing guide.