1.0.2 新接口对接

This commit is contained in:
2023-10-19 10:17:37 +08:00
parent f10f006df1
commit d218c7edea
81 changed files with 6134 additions and 1498 deletions

View File

@@ -1,7 +1,7 @@
apply plugin: 'com.android.application'
static def appName() {
return "设备绑定"
return "小酷守护"
}
static def releaseTime() {
@@ -16,8 +16,8 @@ android {
applicationId "com.uiuipad.find"
minSdkVersion 24
targetSdkVersion 29
versionCode 1
versionName "1.0"
versionCode 3
versionName "1.0.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -57,10 +57,32 @@ android {
v2SigningEnabled false
}
U807 {
storeFile file("keystore/AllwinnerU807.jks")
storePassword "123456"
keyAlias "u807"
keyPassword "123456"
v2SigningEnabled false
}
}
buildTypes {
U807Debug.initWith(debug)
U807Debug {
buildConfigField "String", "platform", '"U807"'
versionNameSuffix "-debug"
debuggable true
signingConfig signingConfigs.U807
}
U807Release.initWith(release)
U807Release {
buildConfigField "String", "platform", '"U807"'
signingConfig signingConfigs.U807
}
debug {
versionNameSuffix "-debug"
debuggable true
@@ -155,7 +177,9 @@ dependencies {
implementation 'com.gitee.zackratos:UltimateBarX:0.8.0'
implementation 'com.jakewharton.rxbinding2:rxbinding:2.2.0'
//Aria
implementation 'com.arialyy.aria:core:3.8.15'
annotationProcessor 'com.arialyy.aria:compiler:3.8.15'
}
preBuild {