Files
UIUIPad-Launcher3-Q/iconloaderlib/build.gradle
tongtongstudio a67f6e0d53 version:1.2.3
fix:
update:增加W5A平台
2026-03-25 10:37:11 +08:00

63 lines
1.3 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 {
W5ADebug {}
W5ARelease {}
Aigo1071Debug {}
Aigo1071Release {}
UnisocS6688Debug {}
UnisocS6688Release {}
teclast8183Debug {}
teclast8183Release {}
G10PDebug {}
G10PRelease {}
U807Debug {}
U807Release {}
iPlay50SEDebug {}
iPlay50SERelease {}
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()
}