- AndroidManifest: 移除 usesCleartextTraffic=true - downloadFile: 增加 ALLOWED_HOSTS 白名单(git.childish-ghost.com/github.com) - manifest解析: indexOf/substring → org.json.JSONObject
24 lines
841 B
XML
24 lines
841 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
|
|
|
<application
|
|
android:label="Yuzu GCA v0.1.0"
|
|
android:allowBackup="false"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.AppCompat.DayNight">
|
|
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:label="Yuzu GCA v0.1.0"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|