mirror of
https://github.com/vector-im/element-android.git
synced 2024-11-23 14:48:21 +08:00
27 lines
538 B
Groovy
27 lines
538 B
Groovy
|
apply plugin: 'com.android.library'
|
||
|
|
||
|
android {
|
||
|
namespace "me.dm7.barcodescanner.core"
|
||
|
compileSdk versions.compileSdk
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdk versions.minSdk
|
||
|
targetSdk versions.targetSdk
|
||
|
}
|
||
|
|
||
|
compileOptions {
|
||
|
sourceCompatibility versions.sourceCompat
|
||
|
targetCompatibility versions.targetCompat
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation 'androidx.annotation:annotation-jvm:1.6.0'
|
||
|
}
|
||
|
|
||
|
afterEvaluate {
|
||
|
tasks.findAll { it.name.startsWith("lint") }.each {
|
||
|
it.enabled = false
|
||
|
}
|
||
|
}
|