修复支付问题

This commit is contained in:
hch
2023-11-30 16:15:23 +08:00
parent 7c44f09803
commit 9dba41c22f
6 changed files with 24 additions and 14 deletions

View File

@@ -55,9 +55,11 @@ public class CommonAppContext extends MultiDexApplication {
// RongPushClient.setPushConfig(config); //将推送相关配置设置到 SDK
//设置新加坡融云服务器 有时候国内收不到推送是因为这个
RongIMClient.setServerInfo("navsg01.cn.ronghub.com", null);
//谷歌推送
PushConfig gconfig = new PushConfig.Builder().enableFCM(true).build();
RongPushClient.setPushConfig(gconfig);
if (CommonAppConfig.IS_GOOGLE_PLAY == 1) {
//谷歌推送
PushConfig gconfig = new PushConfig.Builder().enableFCM(true).build();
RongPushClient.setPushConfig(gconfig);
}
//初始化友盟统计
// UMConfigure.init(this, UMConfigure.DEVICE_TYPE_PHONE, null);
FacebookSdk.sdkInitialize(getApplicationContext());

View File

@@ -46,6 +46,13 @@ public class LoadingDialog extends AbsDialogFragment {
hint.setText(showText);
}
public void setHintText(String text) {
if (hint != null) {
hint.setText(text);
}
}
@Override
public void onDestroy() {
super.onDestroy();
@@ -56,7 +63,7 @@ public class LoadingDialog extends AbsDialogFragment {
protected void setWindowAttributes(Window window) {
window.setWindowAnimations(R.style.bottomToTopAnim);
WindowManager.LayoutParams params = window.getAttributes();
params.width = DeviceUtils.getScreenWidth(getActivity())/2;
params.width = DeviceUtils.getScreenWidth(getActivity()) / 2;
params.height = WindowManager.LayoutParams.WRAP_CONTENT;
params.gravity = Gravity.CENTER;
window.setAttributes(params);