fix(user-app): restore release apk build

This commit is contained in:
2026-08-04 11:15:34 +08:00
parent 95b6f2b69c
commit cbc2b8f635
5 changed files with 21 additions and 1 deletions

View File

@@ -3,7 +3,8 @@
<application
android:label="瓶安芯"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
android:icon="@mipmap/ic_launcher"
android:networkSecurityConfig="@xml/network_security_config">
<activity
android:name=".MainActivity"
android:exported="true"

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<base-config cleartextTrafficPermitted="false" />
<domain-config cleartextTrafficPermitted="true">
<domain includeSubdomains="false">rest.heqiapp.com</domain>
</domain-config>
</network-security-config>