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