blob: 344ac20b5f9bd73a8e72a0d23e0e2394f619d266 [file] [log] [blame] [edit]
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"
}