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 {
|
2018-05-23 17:36:52 +00:00
|
|
|
implementation "android.arch.lifecycle:extensions:${versions.lifecycleExtensions}"
|
|
|
|
implementation "com.jakewharton.timber:timber:${versions.timber}"
|
|
|
|
implementation "com.takisoft.fix:preference-v7:${versions.preferencesFix}"
|
2018-03-28 09:17:45 +00:00
|
|
|
}
|