28 lines
644 B
Groovy
28 lines
644 B
Groovy
|
apply plugin: 'com.android.library'
|
||
|
|
||
|
dependencies {
|
||
|
api "androidx.recyclerview:recyclerview:${versions.androidxRecyclerView}"
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace 'app.k9mail.ui.utils.linearlayoutmanager'
|
||
|
|
||
|
compileSdkVersion buildConfig.compileSdk
|
||
|
buildToolsVersion buildConfig.buildTools
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion buildConfig.minSdk
|
||
|
targetSdkVersion buildConfig.robolectricSdk
|
||
|
}
|
||
|
|
||
|
lintOptions {
|
||
|
abortOnError false
|
||
|
lintConfig file("$rootProject.projectDir/config/lint/lint.xml")
|
||
|
}
|
||
|
|
||
|
compileOptions {
|
||
|
sourceCompatibility javaVersion
|
||
|
targetCompatibility javaVersion
|
||
|
}
|
||
|
}
|