12345678910111213141516171819202122232425 |
- plugins {
- id 'sysuigradleproject.android-library-conventions'
- }
- android {
- sourceSets {
- main {
- java.srcDirs = ['src', 'src_full_lib']
- manifest.srcFile 'AndroidManifest.xml'
- res.srcDirs = ['res']
- }
- }
- lintOptions {
- abortOnError false
- }
- tasks.withType(JavaCompile) {
- options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
- }
- }
- dependencies {
- implementation "androidx.core:core"
- }
|