Files
UIUIPad-Launcher3-Q/iconloaderlib/build.gradle
fanhuitong 2462bafa85 version:1.1
update:2021-10-19 17:27:09
fix:更换包名,自更新
add:加入极光推送,发送正在运行的app信息
2021-10-19 17:31:16 +08:00

63 lines
1.2 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 {
zhanRuiRelease.initWith(release)
zhanRuiRelease {
minifyEnabled false
}
zhanRuiDebug.initWith(debug)
zhanRuiDebug {
minifyEnabled false
}
debug {
minifyEnabled false
}
release {
minifyEnabled false
}
}
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()
}