Android Studio build.gradle.kts
时间: 2023-11-21 22:56:29 浏览: 142
android studio版本的oschina客户端,方便学习android开发.zip
Android Studio中的build.gradle.kts文件是用Kotlin脚本编写的Gradle构建文件。它与传统的Groovy脚本编写的build.gradle文件相比,具有更好的类型安全性和可读性。以下是一个简单的build.gradle.kts文件的示例:
```kotlin
plugins {
id("com.android.application")
kotlin("android")
}
android {
compileSdkVersion(30)
defaultConfig {
applicationId = "com.example.myapplication"
minSdkVersion(21)
targetSdkVersion(30)
versionCode = 1
versionName = "1.0"
}
buildTypes {
getByName("release") {
isMinifyEnabled = false
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
}
}
}
dependencies {
implementation("androidx.appcompat:appcompat:1.3.1")
implementation("com.google.android.material:material:1.4.0")
implementation("androidx.constraintlayout:constraintlayout:2.1.0")
testImplementation("junit:junit:4.+")
androidTestImplementation("androidx.test.ext:junit:1.1.3")
androidTestImplementation("androidx.test.espresso:espresso-core:3.4.0")
}
```
在这个示例中,我们定义了一个Android应用程序,并指定了应用程序的ID、最小SDK版本、目标SDK版本、版本代码和版本名称。我们还定义了一个名为“release”的构建类型,并禁用了代码混淆。最后,我们指定了应用程序的依赖项,包括AppCompat、Material Design和ConstraintLayout库。
阅读全文