In managed Expo you set Info.plist keys through app.json:
{
"expo": {
"ios": {
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false
}
}
}
}false is correct if you only use HTTPS and standard OS encryption, which is almost every app. Recent Expo SDKs also have ios.config.usesNonExemptEncryption which does the same thing.