d63eda9b07
Based on RecyclerView 1.2.1
27 lines
640 B
Groovy
27 lines
640 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
dependencies {
|
|
api "androidx.recyclerview:recyclerview:${versions.androidxRecyclerView}"
|
|
}
|
|
|
|
android {
|
|
namespace 'app.k9mail.ui.utils.itemtouchhelper'
|
|
|
|
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
|
|
}
|
|
}
|