expo-build-properties
is a config plugin to customize native build properties when using npx expo prebuild
.
npx 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"
}
}
]
]
}
}
Contributions are very welcome! Please refer to guidelines described in the [contributing guide][../../contributing.md].