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