feat: include cloudflare trust anchor

Signed-off-by: Infi <infi@infi.sh>
This commit is contained in:
Infi 2025-10-12 01:22:23 +02:00
parent ba577e8e08
commit c64d4e9602
3 changed files with 10 additions and 0 deletions

View File

@ -28,6 +28,7 @@
android:allowBackup="true" android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules" android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules" android:fullBackupContent="@xml/backup_rules"
android:networkSecurityConfig="@xml/network_security_config"
android:icon="@mipmap/ic_launcher" android:icon="@mipmap/ic_launcher"
android:label="@string/app_name" android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round" android:roundIcon="@mipmap/ic_launcher_round"

Binary file not shown.

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<domain-config>
<domain includeSubdomains="true">stoatusercontent.com</domain>
<trust-anchors>
<certificates src="@raw/cloudflare_tls_i_e1" />
</trust-anchors>
</domain-config>
</network-security-config>