Initial commit: Android app with compileSdk 34, minSdk 24, targetSdk 34
This commit is contained in:
21
build.gradle
Normal file
21
build.gradle
Normal 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版本
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user