21 lines
566 B
Groovy
21 lines
566 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion buildConfig.compileSdk
|
|
buildToolsVersion buildConfig.buildTools
|
|
|
|
defaultConfig {
|
|
minSdkVersion buildConfig.minSdk
|
|
}
|
|
|
|
// Do not abort build if lint finds errors
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "androidx.lifecycle:lifecycle-common:${versions.androidxLifecycle}"
|
|
implementation "com.jakewharton.timber:timber:${versions.timber}"
|
|
implementation "com.takisoft.preferencex:preferencex:${versions.preferencesFix}"
|
|
}
|