26 lines
491 B
Groovy
26 lines
491 B
Groovy
|
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"
|
||
|
}
|