2020-02-02 10:54:43 -03:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
|
|
|
|
|
|
android {
|
2024-10-01 14:07:34 -03:00
|
|
|
compileSdkVersion libs.versions.target_sdk.get().toInteger()
|
|
|
|
|
buildToolsVersion libs.versions.build_tools.get()
|
2020-02-02 10:54:43 -03:00
|
|
|
|
|
|
|
|
defaultConfig {
|
2024-10-01 14:07:34 -03:00
|
|
|
minSdkVersion libs.versions.min_sdk.get().toInteger()
|
|
|
|
|
targetSdkVersion libs.versions.target_sdk.get().toInteger()
|
2020-02-02 10:54:43 -03:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-06 14:34:42 -03:00
|
|
|
kotlinOptions {
|
|
|
|
|
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-02 10:54:43 -03:00
|
|
|
testOptions {
|
|
|
|
|
unitTests.returnDefaultValues = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
|
abortOnError false
|
|
|
|
|
}
|
2020-02-13 12:40:28 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2024-10-01 14:07:34 -03:00
|
|
|
kapt libs.room.compiler
|
|
|
|
|
}
|