thunderbird-android/ui-utils/LinearLayoutManager/build.gradle

28 lines
644 B
Groovy
Raw Normal View History

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
}
}