mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-29 06:28:45 +03: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
|
||
|
}
|
||
|
}
|