Expo config
app.json{
"expo": {
"ios": {
"infoPlist": {
"NSPhotoLibraryAddUsageDescription": "TODO: why this app saves media to your library."
}
},
"android": {
"permissions": [
"android.permission.WRITE_EXTERNAL_STORAGE"
]
},
"plugins": [
"expo-router",
"expo-media-library"
]
}
}
Prebuild writes these into the native projects; the config plugin is what makes the package's native code part of the build.