Files
UIUIPad-Launcher3-Q/iconloaderlib/build.gradle
Fanhuitong 625a121cbb version:zhanrui 6.4.0
fix:
update:更换推送
2023-06-17 09:30:06 +08:00

55 lines
1.1 KiB
Groovy

apply plugin: 'com.android.library'
android {
compileSdkVersion COMPILE_SDK
buildToolsVersion BUILD_TOOLS_VERSION
publishNonDefault true
defaultConfig {
minSdkVersion 25
targetSdkVersion 28
versionCode 1
versionName "1.0"
}
buildTypes {
zhanRuiDebug {}
zhanRuiRelease {}
alldocubeDebug {}
alldocubeDebugReleas {}
TeclastP20SDebug {}
TeclastP20SRelease {}
debug {}
release {}
}
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"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation "androidx.core:core:${ANDROID_X_VERSION}"
}
repositories {
google()
}