mirror of
https://github.com/vector-im/element-android.git
synced 2024-11-22 14:38:15 +08:00
30 lines
649 B
Groovy
30 lines
649 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
namespace "me.dm7.barcodescanner.zxing"
|
|
|
|
compileSdk versions.compileSdk
|
|
|
|
defaultConfig {
|
|
minSdk versions.minSdk
|
|
targetSdk versions.targetSdk
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility versions.sourceCompat
|
|
targetCompatibility versions.targetCompat
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api project(":library:external:barcodescanner:core")
|
|
// Stick to 3.3.3 because of https://github.com/zxing/zxing/issues/1170
|
|
api 'com.google.zxing:core:3.3.3'
|
|
}
|
|
|
|
afterEvaluate {
|
|
tasks.findAll { it.name.startsWith("lint") }.each {
|
|
it.enabled = false
|
|
}
|
|
}
|