修改问题
This commit is contained in:
parent
b29b0a1688
commit
320584769d
@ -213,7 +213,7 @@ dependencies {
|
|||||||
api 'com.yanzhenjie.recyclerview:x:1.3.2'
|
api 'com.yanzhenjie.recyclerview:x:1.3.2'
|
||||||
|
|
||||||
//华为支付插件包
|
//华为支付插件包
|
||||||
//api project(':lib_huawei')
|
// api project(':lib_huawei')
|
||||||
|
|
||||||
//google插件包
|
//google插件包
|
||||||
api project(':lib_google')
|
api project(':lib_google')
|
||||||
|
@ -149,11 +149,11 @@ public class GuardUpgradePopup extends CenterPopupView {
|
|||||||
IMLoginModel userInfo = IMLoginManager.get(getContext()).getUserInfo();
|
IMLoginModel userInfo = IMLoginManager.get(getContext()).getUserInfo();
|
||||||
htmlUrl.append(CommonAppConfig.HOST)
|
htmlUrl.append(CommonAppConfig.HOST)
|
||||||
.append("/h5/Guard/level.html?")
|
.append("/h5/Guard/level.html?")
|
||||||
.append("&token=")
|
.append("token=")
|
||||||
.append(userInfo.getToken())
|
.append(userInfo.getToken())
|
||||||
.append("&uid=")
|
.append("&uid=")
|
||||||
.append(userInfo.getId())
|
.append(userInfo.getId())
|
||||||
.append("&&anchorUid=")
|
.append("&anchorUid=")
|
||||||
.append(mLiveUid)
|
.append(mLiveUid)
|
||||||
.append("&isZh=")
|
.append("&isZh=")
|
||||||
.append(((WordUtil.isNewZh()) ? "1" : "0"));
|
.append(((WordUtil.isNewZh()) ? "1" : "0"));
|
||||||
|
@ -4,7 +4,7 @@ ext {
|
|||||||
buildToolsVersion: "29.0.2",
|
buildToolsVersion: "29.0.2",
|
||||||
minSdkVersion : 21,
|
minSdkVersion : 21,
|
||||||
targetSdkVersion : 33,
|
targetSdkVersion : 33,
|
||||||
versionCode : 469,
|
versionCode : 468,
|
||||||
versionName : "6.6.6"
|
versionName : "6.6.6"
|
||||||
]
|
]
|
||||||
manifestPlaceholders = [
|
manifestPlaceholders = [
|
||||||
@ -21,7 +21,7 @@ ext {
|
|||||||
baiduAppSecretKey: "nEVSgmuGpU0pjPr6VleEGGAl0hzGW52S",
|
baiduAppSecretKey: "nEVSgmuGpU0pjPr6VleEGGAl0hzGW52S",
|
||||||
|
|
||||||
// true表示谷歌支付 false 0 链接包 1 谷歌包 2华为包 3 samsung包
|
// true表示谷歌支付 false 0 链接包 1 谷歌包 2华为包 3 samsung包
|
||||||
isGooglePlay : 0,
|
isGooglePlay : 3,
|
||||||
//是否上报异常日志
|
//是否上报异常日志
|
||||||
isUploadLog : true,
|
isUploadLog : true,
|
||||||
//是否打包成插件包模式
|
//是否打包成插件包模式
|
||||||
|
@ -291,11 +291,11 @@ public class LiveGuardDialog extends AbsDialogPopupWindow {
|
|||||||
IMLoginModel userInfo = IMLoginManager.get(mContext).getUserInfo();
|
IMLoginModel userInfo = IMLoginManager.get(mContext).getUserInfo();
|
||||||
htmlUrl.append(CommonAppConfig.HOST)
|
htmlUrl.append(CommonAppConfig.HOST)
|
||||||
.append("/h5/Guard/mission.html?")
|
.append("/h5/Guard/mission.html?")
|
||||||
.append("&token=")
|
.append("token=")
|
||||||
.append(userInfo.getToken())
|
.append(userInfo.getToken())
|
||||||
.append("&uid=")
|
.append("&uid=")
|
||||||
.append(userInfo.getId())
|
.append(userInfo.getId())
|
||||||
.append("&&anchorUid=")
|
.append("&anchorUid=")
|
||||||
.append(mLiveUid)
|
.append(mLiveUid)
|
||||||
.append("&isZh=")
|
.append("&isZh=")
|
||||||
.append(((WordUtil.isNewZh()) ? "1" : "0"));
|
.append(((WordUtil.isNewZh()) ? "1" : "0"));
|
||||||
@ -317,11 +317,11 @@ public class LiveGuardDialog extends AbsDialogPopupWindow {
|
|||||||
IMLoginModel userInfo = IMLoginManager.get(mContext).getUserInfo();
|
IMLoginModel userInfo = IMLoginManager.get(mContext).getUserInfo();
|
||||||
htmlUrl.append(CommonAppConfig.HOST)
|
htmlUrl.append(CommonAppConfig.HOST)
|
||||||
.append("/h5/Guard/level.html?")
|
.append("/h5/Guard/level.html?")
|
||||||
.append("&token=")
|
.append("token=")
|
||||||
.append(userInfo.getToken())
|
.append(userInfo.getToken())
|
||||||
.append("&uid=")
|
.append("&uid=")
|
||||||
.append(userInfo.getId())
|
.append(userInfo.getId())
|
||||||
.append("&&anchorUid=")
|
.append("&anchorUid=")
|
||||||
.append(mLiveUid)
|
.append(mLiveUid)
|
||||||
.append("&isZh=")
|
.append("&isZh=")
|
||||||
.append(((WordUtil.isNewZh()) ? "1" : "0"));
|
.append(((WordUtil.isNewZh()) ? "1" : "0"));
|
||||||
|
@ -51,8 +51,8 @@
|
|||||||
android:paddingTop="1dp"
|
android:paddingTop="1dp"
|
||||||
android:text="@string/main_type_theater"
|
android:text="@string/main_type_theater"
|
||||||
android:textColor="#B1B1B1"
|
android:textColor="#B1B1B1"
|
||||||
android:layout_marginBottom="3dp"
|
android:layout_marginBottom="2dp"
|
||||||
android:textSize="16dp"
|
android:textSize="17dp"
|
||||||
android:textStyle="bold" />
|
android:textStyle="bold" />
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
Loading…
Reference in New Issue
Block a user