2022-09-15 21:18:11 +08:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
|
|
|
|
android {
|
2022-10-17 15:14:28 +08:00
|
|
|
namespace "com.android.dialer.dialpadview"
|
|
|
|
|
2022-09-15 21:18:11 +08:00
|
|
|
compileSdk versions.compileSdk
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdk versions.minSdk
|
|
|
|
targetSdk versions.targetSdk
|
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility versions.sourceCompat
|
|
|
|
targetCompatibility versions.targetCompat
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "11"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-20 17:06:16 +08:00
|
|
|
dependencies {
|
|
|
|
implementation libs.androidx.appCompat
|
|
|
|
}
|
|
|
|
|
2022-09-15 23:08:46 +08:00
|
|
|
afterEvaluate {
|
|
|
|
tasks.findAll { it.name.startsWith("lint") }.each {
|
|
|
|
it.enabled = false
|
|
|
|
}
|
|
|
|
}
|