mirror of
https://github.com/ultrasonic/ultrasonic
synced 2025-01-08 14:51:39 +01:00
15 lines
263 B
Groovy
15 lines
263 B
Groovy
apply from: bootstrap.androidModule
|
|
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
lintOptions {
|
|
baselineFile file("lint-baseline.xml")
|
|
abortOnError true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api androidSupport.support
|
|
implementation other.timber
|
|
}
|