version:2.0
fix:修复获取个人信息失败 add:
This commit is contained in:
@@ -45,6 +45,16 @@ android {
|
||||
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 {
|
||||
@@ -60,32 +70,14 @@ android {
|
||||
productFlavors {
|
||||
beta {
|
||||
flavorDimensions "default"
|
||||
versionCode 10
|
||||
versionName "1.9"
|
||||
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"'
|
||||
versionCode 11
|
||||
versionName "2.0"
|
||||
}
|
||||
|
||||
official {
|
||||
flavorDimensions "default"
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
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"'
|
||||
}
|
||||
}
|
||||
|
||||
@@ -100,16 +92,7 @@ android {
|
||||
v2SigningEnabled true
|
||||
}
|
||||
|
||||
debug {
|
||||
storeFile file("src/keys/xueshibaoos.jks")
|
||||
storePassword "123456"
|
||||
keyAlias "xueshibaoos"
|
||||
keyPassword "123456"
|
||||
v1SigningEnabled true
|
||||
v2SigningEnabled true
|
||||
}
|
||||
|
||||
release {// 签名文件
|
||||
mtk {
|
||||
storeFile file("src/keys/xueshibaoos.jks")
|
||||
storePassword "123456"
|
||||
keyAlias "xueshibaoos"
|
||||
@@ -120,33 +103,36 @@ android {
|
||||
}
|
||||
|
||||
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"'
|
||||
signingConfig signingConfigs.zhanRui
|
||||
manifestPlaceholders = [
|
||||
AMAP_KEY: "8d89de548781c72b984c4b45b146bf1e"
|
||||
]
|
||||
}
|
||||
|
||||
zhanRuiDebug.initWith(debug)
|
||||
zhanRuiDebug {
|
||||
versionNameSuffix "-debug"
|
||||
buildConfigField "String", "platform", '"ZhanRui"'
|
||||
debuggable true
|
||||
signingConfig signingConfigs.zhanRui
|
||||
manifestPlaceholders = [
|
||||
AMAP_KEY: "8d89de548781c72b984c4b45b146bf1e"
|
||||
]
|
||||
}
|
||||
|
||||
debug {
|
||||
buildConfigField "String", "platform", '"MTK"'
|
||||
manifestPlaceholders = [
|
||||
AMAP_KEY: "8d89de548781c72b984c4b45b146bf1e"
|
||||
]
|
||||
versionNameSuffix "-debug"
|
||||
minifyEnabled false
|
||||
//Zipalign优化
|
||||
zipAlignEnabled true
|
||||
signingConfig signingConfigs.debug
|
||||
minifyEnabled false
|
||||
signingConfig signingConfigs.mtk
|
||||
applicationVariants.all { variant ->
|
||||
variant.outputs.each { output ->
|
||||
if (outputFile != null) {
|
||||
@@ -155,21 +141,21 @@ android {
|
||||
}
|
||||
}
|
||||
}
|
||||
manifestPlaceholders = [
|
||||
AMAP_KEY: "8d89de548781c72b984c4b45b146bf1e"
|
||||
]
|
||||
}
|
||||
|
||||
release {
|
||||
buildConfigField "String", "platform", '"MTK"'
|
||||
//混淆
|
||||
minifyEnabled false
|
||||
manifestPlaceholders = [
|
||||
AMAP_KEY: "8d89de548781c72b984c4b45b146bf1e"
|
||||
]
|
||||
//Zipalign优化
|
||||
zipAlignEnabled true
|
||||
//混淆
|
||||
minifyEnabled false
|
||||
//前一部分代表系统默认的android程序的混淆文件,该文件已经包含了基本的混淆声明,后一个文件是自己的定义混淆文件
|
||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||
//签名
|
||||
signingConfig signingConfigs.release
|
||||
signingConfig signingConfigs.mtk
|
||||
// 将release版本的包名重命名,加上版本及日期
|
||||
applicationVariants.all { variant ->
|
||||
variant.outputs.each { output ->
|
||||
@@ -180,9 +166,6 @@ android {
|
||||
}
|
||||
}
|
||||
}
|
||||
manifestPlaceholders = [
|
||||
AMAP_KEY: "8d89de548781c72b984c4b45b146bf1e"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -199,10 +182,10 @@ dependencies {
|
||||
compileOnly files('libs/framework.jar')
|
||||
|
||||
//implementation 'com.android.support:multidex:1.0.3'
|
||||
implementation 'androidx.recyclerview:recyclerview:1.2.1'
|
||||
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
||||
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'
|
||||
|
||||
Reference in New Issue
Block a user