diff options
| author | MohamedBassem <me@mbassem.com> | 2024-04-01 14:58:20 +0100 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-04-01 15:39:13 +0100 |
| commit | c53a0dd33041f1a21896e47b0a6fa49032f05600 (patch) | |
| tree | 675f45ed52a31d7e2af17a45cc8f1c1d64120a92 /apps/mobile/app.json | |
| parent | e4610d42e7a2b0c3fde3520ff93a6bda192f881e (diff) | |
| download | karakeep-c53a0dd33041f1a21896e47b0a6fa49032f05600.tar.zst | |
fix(mobile): Allow android/ios connections over http. #6
Diffstat (limited to 'apps/mobile/app.json')
| -rw-r--r-- | apps/mobile/app.json | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/apps/mobile/app.json b/apps/mobile/app.json index fec59de5..7c0f354e 100644 --- a/apps/mobile/app.json +++ b/apps/mobile/app.json @@ -18,6 +18,12 @@ "bundleIdentifier": "app.hoarder.hoardermobile", "config": { "usesNonExemptEncryption": false + }, + "infoPlist": { + "NSAppTransportSecurity": { + "NSAllowsArbitraryLoads": true, + "NSAllowsLocalNetworking": true + } } }, "android": { @@ -48,6 +54,14 @@ { "photosPermission": "The app access your photo gallary on your request to hoard them." } + ], + [ + "expo-build-properties", + { + "android": { + "usesCleartextTraffic": true + } + } ] ], "extra": { |
