26 lines
502 B
Groovy
26 lines
502 B
Groovy
|
|
plugins {
|
||
|
|
id 'com.android.library'
|
||
|
|
}
|
||
|
|
|
||
|
|
android {
|
||
|
|
namespace = "com.android.launcher3.icons"
|
||
|
|
sourceSets {
|
||
|
|
main {
|
||
|
|
java.srcDirs = ['src', 'src_full_lib']
|
||
|
|
manifest.srcFile 'AndroidManifest.xml'
|
||
|
|
res.srcDirs = ['res']
|
||
|
|
}
|
||
|
|
}
|
||
|
|
lint {
|
||
|
|
abortOnError false
|
||
|
|
}
|
||
|
|
|
||
|
|
tasks.withType(JavaCompile) {
|
||
|
|
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
implementation "androidx.core:core"
|
||
|
|
}
|