构建 Android 应用示例
版本 8.7
您可以在 Android Studio IDE 中使用 项目导入器 打开此示例。 |
此示例展示了如何使用 Gradle 构建用 Java 编写的简单 Android 应用程序。该应用程序是按照 构建您的第一个应用程序指南 创建的。
app/build.gradle.kts
plugins {
id("com.android.application") version "7.3.0"
}
repositories {
google()
mavenCentral()
}
android {
compileSdkVersion(30)
defaultConfig {
applicationId = "org.gradle.samples"
minSdkVersion(16)
targetSdkVersion(30)
versionCode = 1
versionName = "1.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
getByName("release") {
isMinifyEnabled = false
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
}
}
}
dependencies {
implementation("androidx.appcompat:appcompat:1.2.0")
implementation("com.google.android.material:material:1.2.0")
implementation("androidx.constraintlayout:constraintlayout:2.0.4")
testImplementation("junit:junit:4.13.1")
androidTestImplementation("androidx.test.ext:junit:1.1.2")
androidTestImplementation("androidx.test.espresso:espresso-core:3.3.0")
}
app/build.gradle
plugins {
id('com.android.application') version '7.3.0'
}
repositories {
google()
mavenCentral()
}
android {
compileSdkVersion 30
defaultConfig {
applicationId 'org.gradle.samples'
minSdkVersion 16
targetSdkVersion 30
versionCode 1
versionName '1.0'
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
testImplementation 'junit:junit:4.13.1'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}
构建应用程序
$ ./gradlew build
有关更多信息,我们建议您阅读 Gradle 入门。您还可以在 Android 团队提供的指南中找到 Android 开发相关信息。