You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.6 KiB
Groovy
53 lines
1.6 KiB
Groovy
3 years ago
|
plugins {
|
||
|
id 'com.android.library'
|
||
|
id 'kotlin-android'
|
||
|
id 'kotlin-android-extensions'
|
||
|
id 'kotlin-kapt'
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion rootProject.ext.android.compileSdkVersion
|
||
|
buildToolsVersion rootProject.ext.android.buildToolsVersion
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion rootProject.ext.android.minSdkVersion
|
||
|
targetSdkVersion rootProject.ext.android.targetSdkVersion
|
||
|
versionCode rootProject.ext.android.versionCode
|
||
|
versionName rootProject.ext.android.versionName
|
||
|
|
||
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||
|
consumerProguardFiles "consumer-rules.pro"
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
debug {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
release {
|
||
|
minifyEnabled true
|
||
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||
|
targetCompatibility JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
|
||
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
||
|
implementation 'com.google.android.material:material:1.2.1'
|
||
|
|
||
|
implementation 'androidx.navigation:navigation-fragment:2.3.0'
|
||
|
implementation 'androidx.navigation:navigation-ui:2.3.0'
|
||
|
|
||
|
// 添加kotlin依赖
|
||
|
implementation rootProject.ext.dependencies.kotlin
|
||
|
implementation rootProject.ext.dependencies.kotlin_android
|
||
|
|
||
|
//luban图片压缩
|
||
|
implementation rootProject.ext.dependencies.luban
|
||
|
}
|