38 lines
751 B
Groovy
38 lines
751 B
Groovy
|
plugins {
|
||
|
id 'com.android.library'
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
compileSdk TARGET_SDK.toInteger()
|
||
|
buildToolsVersion = BUILD_TOOLS_VERSION
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion TARGET_SDK.toInteger()
|
||
|
targetSdkVersion TARGET_SDK.toInteger()
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
main {
|
||
|
java.srcDirs = ['src']
|
||
|
manifest.srcFile 'AndroidManifest.xml'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
lintOptions {
|
||
|
abortOnError false
|
||
|
}
|
||
|
|
||
|
tasks.withType(JavaCompile) {
|
||
|
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
|
||
|
}
|
||
|
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||
|
targetCompatibility JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation "androidx.core:core:+"
|
||
|
}
|