Android项目中gradle文件的内容详解
android项目中一般会有2个gradle文件,一个是整个项目的gradle文件,另一个是模块的gradle文件,如果有多个模块,gradle文件的个数也会随之增加。
项目的gradle文件内容详解
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:4.2.1"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
模块的gradle文件内容详解
plugins {
id 'com.android.application'
}
android {
//sdk编译版本
compileSdkVersion 30
//编译工具的版本
buildToolsVersion "30.0.3"
defaultConfig {
applicationId "com.example.studydemo"
//能运行此应用的sdk最低版本
minSdkVersion 16
//目标设备的sdk版本
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'
}
}
compileOptions {
//指定编译Java文件的Jdk版本
sourceCompatibility JavaVersion.VERSION_1_8
//指定目标设置的Jdk版本确保class文件与targetCompatibility指定版本,或者更新的java虚拟机兼容
targetCompatibility JavaVersion.VERSION_1_8
}
}
//依赖信息
dependencies {
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.2.1'
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}
gradle文件和AndroidManifest.xml文件中有些可配置的内容是相同的,当在两个文件中都进行配置以后,以gradle文件的为准。