Initial commit: Android app with compileSdk 34, minSdk 24, targetSdk 34

This commit is contained in:
xiajiid
2026-02-08 00:32:18 +08:00
commit eeb820342f
12 changed files with 278 additions and 0 deletions

21
build.gradle Normal file
View File

@@ -0,0 +1,21 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '8.2.0' apply false
id 'org.jetbrains.kotlin.android' version '1.9.20' apply false
}
allprojects {
repositories {
google()
mavenCentral()
}
}
gradle android {
compileSdkVersion 34 // 编译时使用的API版本
defaultConfig {
applicationId "com.example.app"
minSdkVersion 24 // 应用支持的最低Android版本
targetSdkVersion 34 // 应用适配的目标Android版本
}
}