Android-----APP下的build.gradle文件解析

//说明module类型:
//com.android.application为程序:打包得到是.apk文件
//com.android.library为库:打包得到是.aar文件
apply plugin: 'com.android.application'

//指定Android打包插件相关属性
android {
    //编译时SDK的版本
    compileSdkVersion 26
    //编译时构建工具版本
    buildToolsVersion "25.0.2"

    //其中包括若干默认属性,其可用属性是buildTypes和ProductFlavors之和,之后会分别介绍
    defaultConfig {
        //应用ID(应用程序包名)
        applicationId "com.demo.project"
        //支持最小SDK版本
        minSdkVersion 19
        //支持SDK的标准版本
        targetSdkVersion 26
        //版本号
        versionCode 1
        //版本名
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

你可能感兴趣的:(Android-----APP下的build.gradle文件解析)