Expo config
app.json{
"expo": {
"ios": {
"infoPlist": {
"NSFaceIDUsageDescription": "TODO: why this app uses Face ID."
}
},
"android": {
"permissions": [
"android.permission.USE_BIOMETRIC"
]
},
"plugins": [
"expo-router",
"expo-local-authentication"
]
}
}
Prebuild writes these into the native projects; the config plugin is what makes the package's native code part of the build.