调整测试反馈问题
This commit is contained in:
parent
96cfadd335
commit
a1635151dc
@ -2724,6 +2724,9 @@ rx.internal.util.atomic.LinkedQueueNode* consumerNode;
|
|||||||
-dontwarn kotlin.annotation.Target
|
-dontwarn kotlin.annotation.Target
|
||||||
|
|
||||||
# End of content from C:\gradle-6.1.1\caches\transforms-3\e7e2a2183722056abf9bd4188272512b\transformed\jetified-annotation-experimental-1.1.0\proguard.txt
|
# End of content from C:\gradle-6.1.1\caches\transforms-3\e7e2a2183722056abf9bd4188272512b\transformed\jetified-annotation-experimental-1.1.0\proguard.txt
|
||||||
|
# The proguard configuration file for the following section is C:\gradle-6.1.1\caches\transforms-3\eb4fdf1a1abe4d45e8a1ea6c65e9f330\transformed\jetified-model-8.7.0\proguard.txt
|
||||||
|
|
||||||
|
# End of content from C:\gradle-6.1.1\caches\transforms-3\eb4fdf1a1abe4d45e8a1ea6c65e9f330\transformed\jetified-model-8.7.0\proguard.txt
|
||||||
# The proguard configuration file for the following section is C:\gradle-6.1.1\caches\transforms-3\e4ea56c12de34fd26c2a84541f3aeb08\transformed\jetified-calligraphy3-3.1.1\proguard.txt
|
# The proguard configuration file for the following section is C:\gradle-6.1.1\caches\transforms-3\e4ea56c12de34fd26c2a84541f3aeb08\transformed\jetified-calligraphy3-3.1.1\proguard.txt
|
||||||
# Add project specific ProGuard rules here.
|
# Add project specific ProGuard rules here.
|
||||||
# By default, the flags in this file are appended to flags specified
|
# By default, the flags in this file are appended to flags specified
|
||||||
@ -2757,9 +2760,6 @@ rx.internal.util.atomic.LinkedQueueNode* consumerNode;
|
|||||||
|
|
||||||
-keepnames class com.android.billingclient.api.ProxyBillingActivity
|
-keepnames class com.android.billingclient.api.ProxyBillingActivity
|
||||||
# End of content from C:\gradle-6.1.1\caches\transforms-3\a358ff6705c32d8c6337aefd4316f1b9\transformed\jetified-billing-5.0.0\proguard.txt
|
# End of content from C:\gradle-6.1.1\caches\transforms-3\a358ff6705c32d8c6337aefd4316f1b9\transformed\jetified-billing-5.0.0\proguard.txt
|
||||||
# The proguard configuration file for the following section is C:\gradle-6.1.1\caches\transforms-3\eb4fdf1a1abe4d45e8a1ea6c65e9f330\transformed\jetified-model-8.7.0\proguard.txt
|
|
||||||
|
|
||||||
# End of content from C:\gradle-6.1.1\caches\transforms-3\eb4fdf1a1abe4d45e8a1ea6c65e9f330\transformed\jetified-model-8.7.0\proguard.txt
|
|
||||||
# The proguard configuration file for the following section is <unknown>
|
# The proguard configuration file for the following section is <unknown>
|
||||||
|
|
||||||
# End of content from <unknown>
|
# End of content from <unknown>
|
@ -77,7 +77,6 @@ public class MessageSayHiNotifyDialog extends AbsDialogCenterPopupWindow {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void buildDialog(XPopup.Builder builder) {
|
public void buildDialog(XPopup.Builder builder) {
|
||||||
ToastUtil.show("设置可关闭:" + cancelable);
|
|
||||||
builder.dismissOnTouchOutside(cancelable);
|
builder.dismissOnTouchOutside(cancelable);
|
||||||
builder.dismissOnBackPressed(cancelable);
|
builder.dismissOnBackPressed(cancelable);
|
||||||
}
|
}
|
||||||
@ -166,16 +165,19 @@ public class MessageSayHiNotifyDialog extends AbsDialogCenterPopupWindow {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static void sendMessage(Conversation.ConversationType type, String targetId, TextMessage tipsContent) {
|
public static void sendMessage(Conversation.ConversationType type, String targetId, TextMessage tipsContent) {
|
||||||
IMCenter.getInstance().insertOutgoingMessage(type, targetId, Message.SentStatus.SENT, tipsContent, System.currentTimeMillis(), new RongIMClient.ResultCallback<Message>() {
|
Message message=Message.obtain(targetId, type,tipsContent);
|
||||||
|
IMCenter.getInstance().sendMessage(message, null, null, new IRongCallback.ISendMessageCallback() {
|
||||||
@Override
|
@Override
|
||||||
public void onSuccess(Message message) {
|
public void onAttached(Message message) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onError(RongIMClient.ErrorCode e) {
|
public void onSuccess(Message message) {
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onError(Message message, RongIMClient.ErrorCode errorCode) {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -53,7 +53,6 @@ public class MessageSayHiNotifyManager {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
isCancelDialog = data.isCancelDialog();
|
isCancelDialog = data.isCancelDialog();
|
||||||
ToastUtil.show("设置可关闭0:"+isCancelDialog);
|
|
||||||
timer = new Timer();
|
timer = new Timer();
|
||||||
timer.schedule(createTask(), data.getNextTime() * 1000L);
|
timer.schedule(createTask(), data.getNextTime() * 1000L);
|
||||||
hiBean = new MessageSayHiBean();
|
hiBean = new MessageSayHiBean();
|
||||||
|
@ -10,14 +10,14 @@ ext {
|
|||||||
]
|
]
|
||||||
manifestPlaceholders = [
|
manifestPlaceholders = [
|
||||||
//正式、
|
//正式、
|
||||||
// serverHost : "https://napi.yaoulive.com",
|
serverHost : "https://napi.yaoulive.com",
|
||||||
// 测试
|
// 测试
|
||||||
serverHost : "https://ceshi.yaoulive.com",
|
// serverHost : "https://ceshi.yaoulive.com",
|
||||||
buildTime : new Date().format("MM-dd HH:mm", TimeZone.getTimeZone("GMT+8")),
|
buildTime : new Date().format("MM-dd HH:mm", TimeZone.getTimeZone("GMT+8")),
|
||||||
|
|
||||||
//百度语音识别
|
//百度语音识别
|
||||||
|
|
||||||
swReleaseModel : false, //true 声网正式服 false 测试服
|
swReleaseModel : true, //true 声网正式服 false 测试服
|
||||||
|
|
||||||
baiduAppId : "23774720",
|
baiduAppId : "23774720",
|
||||||
baiduAppKey : "zgCgFhUKEOV7I3ZXDFpTfnRB",
|
baiduAppKey : "zgCgFhUKEOV7I3ZXDFpTfnRB",
|
||||||
|
@ -37,7 +37,6 @@ import io.agora.beautyapi.faceunity.Config;
|
|||||||
import io.agora.beautyapi.faceunity.FaceUnityBeautyAPI;
|
import io.agora.beautyapi.faceunity.FaceUnityBeautyAPI;
|
||||||
import io.agora.beautyapi.faceunity.FaceUnityBeautyAPIKt;
|
import io.agora.beautyapi.faceunity.FaceUnityBeautyAPIKt;
|
||||||
import io.agora.beautyapi.faceunity.MirrorMode;
|
import io.agora.beautyapi.faceunity.MirrorMode;
|
||||||
import io.agora.beautyapi.faceunity.R;
|
|
||||||
import io.agora.rtc2.ChannelMediaOptions;
|
import io.agora.rtc2.ChannelMediaOptions;
|
||||||
import io.agora.rtc2.Constants;
|
import io.agora.rtc2.Constants;
|
||||||
import io.agora.rtc2.IRtcEngineEventHandler;
|
import io.agora.rtc2.IRtcEngineEventHandler;
|
||||||
|
Loading…
Reference in New Issue
Block a user