2015-12-12 15:03:40 +00:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2018-05-23 17:36:52 +00:00
|
|
|
compileSdkVersion buildConfig.compileSdk
|
|
|
|
buildToolsVersion buildConfig.buildTools
|
2015-12-12 15:03:40 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2018-05-23 17:36:52 +00:00
|
|
|
minSdkVersion buildConfig.minSdk
|
2015-12-12 15:03:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Do not abort build if lint finds errors
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-28 09:17:45 +00:00
|
|
|
dependencies {
|
2019-02-09 04:23:37 +00:00
|
|
|
implementation "androidx.lifecycle:lifecycle-extensions:${versions.androidxLifecycleExtensions}"
|
2018-05-23 17:36:52 +00:00
|
|
|
implementation "com.jakewharton.timber:timber:${versions.timber}"
|
2019-02-09 05:09:50 +00:00
|
|
|
implementation "com.takisoft.preferencex:preferencex:${versions.preferencesFix}"
|
2018-03-28 09:17:45 +00:00
|
|
|
}
|