2018-10-06 13:52:14 +02:00
|
|
|
apply from: bootstrap.androidModule
|
2015-07-26 17:03:28 +02:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2017-07-31 22:44:51 +02:00
|
|
|
lintOptions {
|
|
|
|
baselineFile file("lint-baseline.xml")
|
|
|
|
abortOnError true
|
|
|
|
}
|
2021-04-18 22:21:34 +02:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = '1.8'
|
|
|
|
}
|
2015-07-26 17:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2017-12-21 10:12:10 +01:00
|
|
|
api androidSupport.support
|
2020-09-30 14:47:59 +02:00
|
|
|
implementation other.timber
|
2015-07-26 17:03:28 +02:00
|
|
|
}
|