1plugins { 2 id 'com.android.library' 3} 4 5android { 6 namespace = "com.android.launcher3.icons" 7 sourceSets { 8 main { 9 java.srcDirs = ['src', 'src_full_lib'] 10 manifest.srcFile 'AndroidManifest.xml' 11 res.srcDirs = ['res'] 12 } 13 } 14 lint { 15 abortOnError false 16 } 17 18 tasks.withType(JavaCompile) { 19 options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" 20 } 21} 22 23dependencies { 24 implementation "androidx.core:core" 25} 26