274 lines
9.9 KiB
Groovy
274 lines
9.9 KiB
Groovy
apply plugin: 'com.android.application'
|
||
|
||
static def appName() {
|
||
return "UIUISN"
|
||
}
|
||
|
||
static def releaseTime() {
|
||
return new Date().format("yyyyMMdd-HHmmss", TimeZone.getDefault())
|
||
}
|
||
|
||
android {
|
||
// gradle.projectsEvaluated {
|
||
// tasks.withType(JavaCompile) {
|
||
// Set<File> fileSet = options.bootstrapClasspath.getFiles()
|
||
// List<File> newFileList = new ArrayList<>();
|
||
// //JAVA语法,可连续调用,输入参数建议为相对路径
|
||
// newFileList.add(new File("libs/framework.jar"))
|
||
// //最后将原始参数添加
|
||
// newFileList.addAll(fileSet)
|
||
// options.bootstrapClasspath = files(
|
||
// newFileList.toArray()
|
||
// )
|
||
// }
|
||
// }
|
||
|
||
compileSdkVersion 29
|
||
buildToolsVersion "29.0.3"
|
||
|
||
defaultConfig {
|
||
applicationId "com.uiui.sn"
|
||
minSdkVersion 24
|
||
targetSdkVersion 29
|
||
|
||
multiDexEnabled true
|
||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||
|
||
ndk {
|
||
//选择要添加的对应 cpu 类型的 .so 库。
|
||
abiFilters 'armeabi', 'armeabi-v7a', 'arm64-v8a', "x86"
|
||
// 还可以添加 'x86', 'x86_64', 'mips', 'mips64'
|
||
}
|
||
|
||
javaCompileOptions {
|
||
annotationProcessorOptions {
|
||
includeCompileClasspath true
|
||
}
|
||
}
|
||
|
||
manifestPlaceholders = [
|
||
JPUSH_PKGNAME: "com.uiui.sn",
|
||
JPUSH_APPKEY : "1a1e405ca5a1a5cd50e9f734", //JPush 上注册的包名对应的 Appkey.
|
||
JPUSH_CHANNEL: "developer-default", //暂时填写默认值即可.
|
||
XG_ACCESS_ID : "1500026387",
|
||
XG_ACCESS_KEY: "AG2PUQL7TEX5",
|
||
]
|
||
buildConfigField "String", "SCREEN_URL", '"https://led.aolelearn.cn:3018/wm/is_online"'
|
||
buildConfigField "String", "WEBSOCKET_URL", '"wss://led.aolelearn.cn:3018"'
|
||
}
|
||
|
||
lintOptions {
|
||
checkReleaseBuilds false
|
||
}
|
||
|
||
compileOptions {
|
||
sourceCompatibility JavaVersion.VERSION_1_8
|
||
targetCompatibility JavaVersion.VERSION_1_8
|
||
}
|
||
|
||
//多版本
|
||
productFlavors {
|
||
beta {
|
||
flavorDimensions "default"
|
||
versionCode 14
|
||
versionName "2.3"
|
||
}
|
||
|
||
official {
|
||
flavorDimensions "default"
|
||
versionCode 1
|
||
versionName "1.0"
|
||
}
|
||
}
|
||
|
||
//签名
|
||
signingConfigs {
|
||
zhanRui {
|
||
storeFile file("src/keys/zhanxun.keystore")
|
||
storePassword "123456"
|
||
keyAlias "zhanxun"
|
||
keyPassword "123456"
|
||
v1SigningEnabled true
|
||
v2SigningEnabled true
|
||
}
|
||
|
||
mtk {
|
||
storeFile file("src/keys/xueshibaoos.jks")
|
||
storePassword "123456"
|
||
keyAlias "xueshibaoos"
|
||
keyPassword "123456"
|
||
v1SigningEnabled true
|
||
v2SigningEnabled true
|
||
}
|
||
}
|
||
|
||
buildTypes {
|
||
zhanRuiDebug.initWith(debug)
|
||
zhanRuiDebug {
|
||
buildConfigField "String", "platform", '"ZhanRui"'
|
||
manifestPlaceholders = [
|
||
AMAP_KEY: "8d89de548781c72b984c4b45b146bf1e"
|
||
]
|
||
debuggable true
|
||
versionNameSuffix "-debug"
|
||
signingConfig signingConfigs.zhanRui
|
||
}
|
||
|
||
zhanRuiRelease.initWith(release)
|
||
zhanRuiRelease {
|
||
buildConfigField "String", "platform", '"ZhanRui"'
|
||
manifestPlaceholders = [
|
||
AMAP_KEY: "8d89de548781c72b984c4b45b146bf1e"
|
||
]
|
||
signingConfig signingConfigs.zhanRui
|
||
}
|
||
|
||
debug {
|
||
buildConfigField "String", "platform", '"MTK"'
|
||
manifestPlaceholders = [
|
||
AMAP_KEY: "8d89de548781c72b984c4b45b146bf1e"
|
||
]
|
||
versionNameSuffix "-debug"
|
||
//Zipalign优化
|
||
zipAlignEnabled true
|
||
minifyEnabled false
|
||
signingConfig signingConfigs.mtk
|
||
applicationVariants.all { variant ->
|
||
variant.outputs.each { output ->
|
||
if (outputFile != null) {
|
||
def fileName = "${appName()}-${variant.versionCode}-V${variant.versionName}-${releaseTime()}-${buildType.name}.apk"
|
||
output.outputFileName = fileName
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
release {
|
||
buildConfigField "String", "platform", '"MTK"'
|
||
manifestPlaceholders = [
|
||
AMAP_KEY: "8d89de548781c72b984c4b45b146bf1e"
|
||
]
|
||
//Zipalign优化
|
||
zipAlignEnabled true
|
||
//混淆
|
||
minifyEnabled false
|
||
//前一部分代表系统默认的android程序的混淆文件,该文件已经包含了基本的混淆声明,后一个文件是自己的定义混淆文件
|
||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
//签名
|
||
signingConfig signingConfigs.mtk
|
||
// 将release版本的包名重命名,加上版本及日期
|
||
applicationVariants.all { variant ->
|
||
variant.outputs.each { output ->
|
||
def outputFile = ""
|
||
if (outputFile != null) {
|
||
def fileName = "${appName()}-${variant.versionCode}-V${variant.versionName}-${releaseTime()}-${buildType.name}.apk"
|
||
output.outputFileName = new File(outputFile, fileName)
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
lintOptions {
|
||
checkReleaseBuilds false
|
||
// Or, if you prefer, you can continue to check for errors in release builds,
|
||
// but continue the build even when errors are found:
|
||
abortOnError false
|
||
}
|
||
}
|
||
|
||
dependencies {
|
||
// implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||
compileOnly files('libs/framework.jar')
|
||
|
||
//implementation 'com.android.support:multidex:1.0.3'
|
||
implementation 'androidx.appcompat:appcompat:1.3.1'
|
||
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
||
implementation 'androidx.recyclerview:recyclerview:1.2.1'
|
||
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
||
|
||
testImplementation 'junit:junit:4.13.2'
|
||
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
||
|
||
//BindView
|
||
implementation 'com.jakewharton:butterknife:10.2.3'
|
||
// If you are using Kotlin, replace annotationProcessor with kapt.
|
||
// annotationProcessor rootProject.ext.dependencies["butterknife-compiler"]
|
||
annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.3'
|
||
//极光推送
|
||
implementation 'cn.jiguang.sdk:jpush:3.8.6' // 此处以JPush 3.8.6 版本为例。
|
||
implementation 'cn.jiguang.sdk:jcore:2.6.0' // 此处以JCore 2.6.0 版本为例。
|
||
|
||
//okhttp
|
||
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
|
||
//Retrofit
|
||
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
|
||
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
|
||
implementation 'com.squareup.retrofit2:adapter-rxjava3:2.9.0'
|
||
//RxJava
|
||
implementation 'io.reactivex.rxjava3:rxjava:3.0.0'
|
||
implementation 'io.reactivex.rxjava3:rxandroid:3.0.0'
|
||
//生命周期管理
|
||
implementation 'com.trello.rxlifecycle4:rxlifecycle:4.0.2'
|
||
implementation 'com.trello.rxlifecycle4:rxlifecycle-android:4.0.2'
|
||
implementation 'com.trello.rxlifecycle4:rxlifecycle-components:4.0.2'
|
||
implementation 'com.trello.rxlifecycle4:rxlifecycle-components-preference:4.0.2'
|
||
implementation 'com.trello.rxlifecycle4:rxlifecycle-android-lifecycle:4.0.2'
|
||
//Google
|
||
implementation 'com.google.code.gson:gson:2.9.0'
|
||
implementation 'com.google.zxing:core:3.4.1'
|
||
//图片加载框架
|
||
implementation 'com.github.bumptech.glide:glide:4.13.1'
|
||
annotationProcessor 'com.github.bumptech.glide:compiler:4.13.1'
|
||
//磁盘缓存
|
||
implementation 'com.jakewharton:disklrucache:2.0.2'
|
||
//fastjson
|
||
implementation 'com.alibaba:fastjson:1.2.80'
|
||
//Aria
|
||
implementation 'com.arialyy.aria:core:3.8.15'
|
||
annotationProcessor 'com.arialyy.aria:compiler:3.8.15'
|
||
//Java WebSocket
|
||
implementation "org.java-websocket:Java-WebSocket:1.5.2"
|
||
//MMKV
|
||
implementation 'com.tencent:mmkv-static:1.2.13'
|
||
//腾讯移动推送 TPNS
|
||
implementation 'com.tencent.tpns:tpns:1.3.2.0-release'
|
||
//高德地图定位
|
||
// implementation 'com.amap.api:location:5.1.0'
|
||
//百度地图
|
||
implementation 'com.baidu.lbsyun:BaiduMapSDK_Location:9.1.8'
|
||
//工具类
|
||
implementation 'com.blankj:utilcodex:1.31.0'
|
||
//autosize会改变第三方view的大小
|
||
//https://github.com/JessYanCoding/AndroidAutoSize
|
||
//implementation 'me.jessyan:autosize:1.2.1'
|
||
implementation 'com.flyco.tablayout:FlycoTabLayout_Lib:2.1.2@aar'
|
||
implementation 'com.github.chrisbanes:PhotoView:2.0.0'
|
||
//沉浸状态栏
|
||
implementation 'com.gitee.zackratos:UltimateBarX:0.8.0'
|
||
//动态权限框架
|
||
// implementation 'com.hjq:xxpermissions:6.0'
|
||
}
|
||
|
||
preBuild {
|
||
doLast {
|
||
def imlFile = file(project.name + ".iml")
|
||
println 'Change ' + project.name + '.iml order'
|
||
try {
|
||
def parsedXml = (new XmlParser()).parse(imlFile)
|
||
def jdkNode = parsedXml.component[1].orderEntry.find { it.'@type' == 'jdk' }
|
||
parsedXml.component[1].remove(jdkNode)
|
||
def sdkString = "Android API " + android.compileSdkVersion.substring("android-".length()) + " Platform"
|
||
println 'what' + sdkString
|
||
new Node(parsedXml.component[1], 'orderEntry', ['type': 'jdk', 'jdkName': sdkString, 'jdkType': 'Android SDK'])
|
||
groovy.xml.XmlUtil.serialize(parsedXml, new FileOutputStream(imlFile))
|
||
} catch (FileNotFoundException e) {
|
||
// nop, iml not found
|
||
println "no iml found"
|
||
}
|
||
}
|
||
//https://www.pianshen.com/article/93481144911/
|
||
//使用系统编译后的framework.jar
|
||
}
|