mirror of
https://github.com/vector-im/element-android.git
synced 2024-11-23 14:48:21 +08:00
26 lines
498 B
Groovy
26 lines
498 B
Groovy
|
apply plugin: 'com.android.library'
|
||
|
|
||
|
apply plugin: 'com.android.library'
|
||
|
|
||
|
android {
|
||
|
namespace "com.amulyakhare.textdrawable"
|
||
|
|
||
|
compileSdk versions.compileSdk
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdk versions.minSdk
|
||
|
targetSdk versions.targetSdk
|
||
|
}
|
||
|
|
||
|
compileOptions {
|
||
|
sourceCompatibility versions.sourceCompat
|
||
|
targetCompatibility versions.targetCompat
|
||
|
}
|
||
|
}
|
||
|
|
||
|
afterEvaluate {
|
||
|
tasks.findAll { it.name.startsWith("lint") }.each {
|
||
|
it.enabled = false
|
||
|
}
|
||
|
}
|