build(android): APK构建成功 — 纯原生OTA测试App

- 下载Gradle Wrapper 8.10.2 (43KB)
- MainActivity: 自包含OTA测试(manifest拉取/下载/SHA256/PackageInstaller)
- 移除React Native依赖, 轻量原生App仅3.2MB
- local.properties指向本机Android SDK
- BUILD SUCCESSFUL → app-debug.apk (3.2MB)
This commit is contained in:
LukeMackin
2026-07-19 10:55:51 +08:00
parent eab872ff09
commit 34cdec130f
25 changed files with 157 additions and 184 deletions

View File

@@ -5,19 +5,15 @@
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
<application
android:name=".MainApplication"
android:label="Yuzu GCA"
android:icon="@mipmap/ic_launcher"
android:label="Yuzu GCA Test"
android:allowBackup="false"
android:supportsRtl="true"
android:usesCleartextTraffic="true">
android:usesCleartextTraffic="true"
android:theme="@style/Theme.AppCompat.DayNight">
<activity
android:name=".MainActivity"
android:label="Yuzu GCA"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
android:launchMode="singleTask"
android:windowSoftInputMode="adjustResize"
android:label="Yuzu GCA Test"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />