- 下载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)
34 lines
779 B
Groovy
34 lines
779 B
Groovy
apply plugin: "com.android.application"
|
|
apply plugin: "org.jetbrains.kotlin.android"
|
|
|
|
android {
|
|
namespace "dev.yuzu.gca"
|
|
compileSdk 35
|
|
|
|
defaultConfig {
|
|
applicationId "dev.yuzu.gca"
|
|
minSdk 24
|
|
targetSdk 35
|
|
versionCode 5
|
|
versionName "0.1.0"
|
|
}
|
|
|
|
buildTypes {
|
|
release { minifyEnabled false }
|
|
debug { debuggable true }
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
|
|
kotlinOptions { jvmTarget = "17" }
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:2.0.21"
|
|
implementation "androidx.appcompat:appcompat:1.7.0"
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0"
|
|
}
|