blob: 23c7cb045f9b51c0f4871e44101a96785126742b [file] [log] [blame]
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"
}