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.
31 lines
703 B
31 lines
703 B
7 months ago
|
plugins {
|
||
|
id 'com.android.library'
|
||
|
id 'kotlin-android'
|
||
|
id 'kotlin-kapt'
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 30
|
||
|
buildToolsVersion "30.0.2"
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion 15
|
||
|
targetSdkVersion 30
|
||
|
versionCode 1
|
||
|
versionName "1.0"
|
||
|
}
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||
|
targetCompatibility JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
kotlinOptions {
|
||
|
jvmTarget = '1.8'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation project(':deep-android-lib')
|
||
|
implementation project(':deep-kotlin-lib')
|
||
|
implementation 'com.google.dagger:hilt-android:LOCAL-SNAPSHOT'
|
||
|
kapt 'com.google.dagger:hilt-compiler:LOCAL-SNAPSHOT'
|
||
|
}
|