mirror of
https://github.com/pppscn/SmsForwarder
synced 2024-11-02 03:40:26 +00:00
31ff05b695
新增:OkHttp重试拦截器、设置超时时间为5秒
183 lines
6.5 KiB
Groovy
183 lines
6.5 KiB
Groovy
apply plugin: 'com.android.application'
|
||
|
||
def keyProps = new Properties()
|
||
def keyPropsFile = rootProject.file('keystore/keystore.properties')
|
||
if (keyPropsFile.exists()) {
|
||
keyProps.load(new FileInputStream(keyPropsFile))
|
||
}
|
||
|
||
// 读取version.properties
|
||
def versionProps = new Properties()
|
||
def versionPropsFile = rootProject.file('version.properties')
|
||
if (versionPropsFile.exists()) {
|
||
versionProps.load(new FileInputStream(versionPropsFile))
|
||
}
|
||
|
||
android {
|
||
buildToolsVersion '30.0.3'
|
||
compileSdkVersion 31
|
||
compileOptions {
|
||
sourceCompatibility 11
|
||
targetCompatibility 11
|
||
}
|
||
defaultConfig {
|
||
applicationId "com.idormy.sms.forwarder"
|
||
minSdkVersion 21
|
||
targetSdkVersion 31
|
||
versionCode versionProps['versionCode'].toInteger()
|
||
versionName versionProps['versionName']
|
||
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
|
||
}
|
||
lintOptions {
|
||
checkReleaseBuilds false
|
||
}
|
||
signingConfigs {
|
||
release {
|
||
keyAlias keyProps['keyAlias']
|
||
keyPassword keyProps['keyPassword']
|
||
storeFile keyProps['storeFile'] ? file(keyProps['storeFile']) : null
|
||
storePassword keyProps['storePassword']
|
||
}
|
||
debug {
|
||
keyAlias keyProps['keyAlias']
|
||
keyPassword keyProps['keyPassword']
|
||
storeFile keyProps['storeFile'] ? file(keyProps['storeFile']) : null
|
||
storePassword keyProps['storePassword']
|
||
}
|
||
}
|
||
buildTypes {
|
||
release {
|
||
minifyEnabled true
|
||
shrinkResources true
|
||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
signingConfig signingConfigs.release
|
||
}
|
||
debug {
|
||
minifyEnabled true
|
||
shrinkResources true
|
||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
signingConfig signingConfigs.debug
|
||
}
|
||
}
|
||
//apk file name
|
||
android.applicationVariants.all { variant ->
|
||
variant.outputs.all {
|
||
//def date = new Date().format("yyyyMMdd" , TimeZone.getTimeZone("Asia/Shanghai"))
|
||
def date = new Date().format("yyyyMMdd", TimeZone.getTimeZone("GMT+08"))
|
||
if (variant.buildType.name == 'debug') {
|
||
outputFileName = "SmsForwarder_debug_${date}_${versionName}.apk"
|
||
}
|
||
if (variant.buildType.name == 'release') {
|
||
outputFileName = "SmsForwarder_release_${date}_${versionName}.apk"
|
||
}
|
||
}
|
||
}
|
||
packagingOptions {
|
||
exclude 'META-INF/DEPENDENCIES.txt'
|
||
exclude 'META-INF/LICENSE.txt'
|
||
exclude 'META-INF/NOTICE.txt'
|
||
exclude 'META-INF/NOTICE'
|
||
exclude 'META-INF/LICENSE'
|
||
exclude 'META-INF/DEPENDENCIES'
|
||
exclude 'META-INF/notice.txt'
|
||
exclude 'META-INF/license.txt'
|
||
exclude 'META-INF/dependencies.txt'
|
||
exclude 'META-INF/LGPL2.1'
|
||
}
|
||
}
|
||
|
||
|
||
task upgradeVersion {
|
||
group 'help'
|
||
description '构建新版本'
|
||
doLast {
|
||
println("---自动升级版本号---\n")
|
||
String oldVersionCode = versionProps['versionCode']
|
||
String oldVersionName = versionProps['versionName']
|
||
if (oldVersionCode == null || oldVersionName == null ||
|
||
oldVersionCode.isEmpty() || oldVersionName.isEmpty()) {
|
||
println("error:版本号不能为空")
|
||
return
|
||
}
|
||
versionProps['versionCode'] = String.valueOf(versionProps['versionCode'].toInteger() + 1)
|
||
String str = versionProps['versionName'].toString()
|
||
versionProps['versionName'] = str.substring(0, str.lastIndexOf('.') + 1) +
|
||
(str.substring(str.lastIndexOf('.') + 1).toInteger() + 1)
|
||
String tip =
|
||
"版本号从$oldVersionName($oldVersionCode)升级到${versionProps['versionName']}(${versionProps['versionCode']})"
|
||
println(tip)
|
||
|
||
def writer = new FileWriter(versionPropsFile)
|
||
versionProps.store(writer, null)
|
||
writer.flush()
|
||
writer.close()
|
||
def tag = "v${versionProps['versionName']}"
|
||
cmdExecute("git pull")
|
||
cmdExecute("git add version.properties")
|
||
cmdExecute("git commit -m \"版本号升级为:$tag\"")
|
||
cmdExecute("git push origin")
|
||
cmdExecute("git tag $tag")
|
||
cmdExecute("git push origin $tag")
|
||
}
|
||
}
|
||
|
||
void cmdExecute(String cmd) {
|
||
println "\n执行$cmd"
|
||
println cmd.execute().text
|
||
}
|
||
|
||
|
||
dependencies {
|
||
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
||
//noinspection GradleDependency
|
||
implementation 'androidx.appcompat:appcompat:1.3.1'
|
||
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
|
||
//noinspection GradleDependency
|
||
implementation 'com.google.firebase:firebase-crashlytics-buildtools:2.5.2'
|
||
implementation 'com.google.android.material:material:1.5.0'
|
||
//noinspection GradleDynamicVersion
|
||
testImplementation 'junit:junit:4.+'
|
||
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
||
|
||
//okhttp
|
||
//noinspection GradleDependency
|
||
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
|
||
implementation 'com.squareup.okio:okio:3.0.0'
|
||
|
||
//fastjson
|
||
implementation "com.alibaba:fastjson:1.2.79"
|
||
|
||
//友盟统计SDK
|
||
implementation 'com.umeng.umsdk:common:9.4.6'// 必选
|
||
implementation 'com.umeng.umsdk:asms:1.6.0'// asms包依赖必选
|
||
//implementation 'com.umeng.umsdk:apm:1.5.2'// 错误分析升级为独立SDK,看crash数据请一定集成,可选
|
||
//implementation 'com.umeng.umsdk:abtest:1.0.0'//使用U-App中ABTest能力,可选
|
||
|
||
//XUpdate
|
||
implementation 'com.github.xuexiangjys:XUpdate:2.1.1'
|
||
implementation 'com.github.xuexiangjys.XUpdateAPI:xupdate-easy:1.0.1'
|
||
implementation 'com.github.xuexiangjys.XUpdateAPI:xupdate-downloader-aria:1.0.1'
|
||
|
||
//EmailKit
|
||
implementation 'com.github.mailhu:emailkit:4.2.2'
|
||
|
||
//Lombok
|
||
//noinspection AnnotationProcessorOnCompilePath
|
||
compileOnly 'org.projectlombok:lombok:1.18.22'
|
||
annotationProcessor 'org.projectlombok:lombok:1.18.22'
|
||
|
||
//RxJava
|
||
//implementation 'io.reactivex.rxjava3:rxjava:3.1.3'
|
||
|
||
//AndroidAsync
|
||
implementation 'com.koushikdutta.async:androidasync:3.1.0'
|
||
|
||
//权限请求框架:https://github.com/getActivity/XXPermissions
|
||
//implementation 'com.github.getActivity:XXPermissions:13.2'
|
||
|
||
//jetty
|
||
implementation "org.eclipse.jetty:jetty-server:9.2.30.v20200428"
|
||
implementation "org.eclipse.jetty:jetty-servlet:9.2.30.v20200428"
|
||
|
||
} |