Allow user certificates to do full network request proxying.

This commit is contained in:
Koen 2024-05-31 11:25:34 +02:00
parent 152b9b23cd
commit db1bcfcc6b
2 changed files with 10 additions and 1 deletions

View file

@ -4,7 +4,7 @@
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
<application>
<application android:networkSecurityConfig="@xml/network_security_config">
<receiver android:name=".receivers.InstallReceiver" />
<activity android:name=".activities.MainActivity">

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<base-config>
<trust-anchors>
<certificates src="system" />
<certificates src="user" />
</trust-anchors>
</base-config>
</network-security-config>