mirror of
https://gitlab.futo.org/videostreaming/grayjay.git
synced 2025-05-28 12:30:14 +02:00
Allow user certificates to do full network request proxying.
This commit is contained in:
parent
152b9b23cd
commit
db1bcfcc6b
@ -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">
|
||||
|
9
app/src/unstable/res/xml/network_security_config.xml
Normal file
9
app/src/unstable/res/xml/network_security_config.xml
Normal 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>
|
Loading…
x
Reference in New Issue
Block a user