Open4
iOS local permission ReactNative Expo

iOS での位置情報取得権限を許可する方法

アプリから WiFi をつなぎたい要望がある

app.json
{
"expo": {
"name": "twaf",
"slug": "twaf",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.dokosore.twaf",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false,
// <-- ここ -->
"NSLocalNetworkUsageDescription": "The app requires access to the local network so it can..."
}
},
...
}