You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
502 B
26 lines
502 B
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"
|
|
}
|