Expo config
app.json{
"expo": {
"ios": {
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "TODO: say why this app needs location — App Review rejects a missing or boilerplate reason."
}
},
"android": {
"permissions": [
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION"
]
},
"plugins": [
"expo-router",
"expo-location"
]
}
}
Prebuild writes these into the native projects; the config plugin is what makes the package's native code part of the build.