Browse Source

FIX: Allow unencrypted http calls (ios/andr)

psbt
Marcos Rodriguez 5 years ago
committed by Overtorment
parent
commit
d7cf785c09
  1. 1
      android/app/src/main/AndroidManifest.xml
  2. 2
      ios/BlueWallet/Info.plist

1
android/app/src/main/AndroidManifest.xml

@ -11,6 +11,7 @@
android:icon="@mipmap/ic_launcher" android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round" android:roundIcon="@mipmap/ic_launcher_round"
android:allowBackup="false" android:allowBackup="false"
android:usesCleartextTraffic="true"
android:theme="@style/AppTheme"> android:theme="@style/AppTheme">
<activity <activity
android:name=".MainActivity" android:name=".MainActivity"

2
ios/BlueWallet/Info.plist

@ -43,6 +43,8 @@
<true/> <true/>
<key>NSAppTransportSecurity</key> <key>NSAppTransportSecurity</key>
<dict> <dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSExceptionDomains</key> <key>NSExceptionDomains</key>
<dict> <dict>
<key>localhost</key> <key>localhost</key>

Loading…
Cancel
Save