Package Exports
- expo-build-properties
- expo-build-properties/build/withBuildProperties.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (expo-build-properties) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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-propertiesAdd 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.