You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
956 B
36 lines
956 B
5 years ago
|
apply plugin: 'com.android.library'
|
||
|
apply plugin: 'kotlin-android'
|
||
|
|
||
|
android {
|
||
|
|
||
|
compileSdkVersion rootProject.compileSdkVersion
|
||
|
buildToolsVersion rootProject.buildToolsVersion
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion rootProject.minSdkVersion
|
||
|
targetSdkVersion rootProject.targetSdkVersion
|
||
|
versionCode 1
|
||
|
versionName "1.0"
|
||
|
}
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||
|
targetCompatibility JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation androidLibraries.androidAnnotations
|
||
|
implementation thirdLibraries.mmkv
|
||
|
implementation thirdLibraries.gson
|
||
|
implementation thirdLibraries.supportOptional
|
||
|
compileOnly thirdLibraries.rxJava
|
||
|
compileOnly kotlinLibraries.kotlinStdlib
|
||
|
}
|