We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d152e66 + 56f077d commit b30c067Copy full SHA for b30c067
app/src/main/AndroidManifest.xml
@@ -13,7 +13,8 @@
13
android:label="@string/app_name"
14
android:supportsRtl="true"
15
android:theme="@style/AppTheme"
16
- android:usesCleartextTraffic="true">
+ android:usesCleartextTraffic="true"
17
+ android:networkSecurityConfig="@xml/network_security_config">
18
19
<activity android:name=".activity.ChooseUrlActivity" />
20
<activity
app/src/main/res/xml/network_security_config.xml
@@ -0,0 +1,10 @@
1
+<?xml version="1.0" encoding="utf-8"?>
2
+<network-security-config xmlns:tools="http://schemas.android.com/tools">
3
+ <base-config>
4
+ <trust-anchors>
5
+ <certificates src="system"/>
6
+ <certificates src="user"
7
+ tools:ignore="AcceptsUserCertificates" />
8
+ </trust-anchors>
9
+ </base-config>
10
+</network-security-config>
0 commit comments