Files
Yuzu-GCA/packages/client-android/android/app/build.gradle
LukeMackin d4169538c9 fix: manifest放回仓库源码 + APK按版本号命名
- manifest.json/beta/nightly 从Release Assets移到源码仓库
- APK命名: gca-v0.1.0 → v0.1.0-dav-android-debug.apk
- Release #7: 仅含APK(prerelease), manifest从raw URL拉取
- 三渠道manifest: manifest.json / manifest-beta.json / manifest-nightly.json
2026-07-19 15:42:01 +08:00

36 lines
820 B
Groovy

apply plugin: "com.android.application"
apply plugin: "org.jetbrains.kotlin.android"
archivesBaseName = "v0.1.0-dav-android"
android {
namespace "dev.yuzu.gca"
compileSdk 35
defaultConfig {
applicationId "dev.yuzu.gca"
minSdk 24
targetSdk 35
versionCode 6
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"
}