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