Expo config
app.json{
"expo": {
"ios": {
"infoPlist": {
"NSMicrophoneUsageDescription": "TODO: why this app records audio."
}
},
"android": {
"permissions": [
"android.permission.RECORD_AUDIO"
]
},
"plugins": [
"expo-router",
"expo-audio"
]
}
}
Prebuild writes these into the native projects; the config plugin is what makes the package's native code part of the build.