agora-appbuilder-core 4.0.0-beta.94 → 4.0.0-beta.96
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<resources>
|
|
2
2
|
<string name="app_name">Hello App Display Name</string>
|
|
3
|
-
<string name="hostname">managedservices-
|
|
4
|
-
<string name="main_public_key">
|
|
3
|
+
<string name="hostname">managedservices-prod.rteappbuilder.com</string>
|
|
4
|
+
<string name="main_public_key">5VC9ody3DexBxZs51+65COtntkY7seybRRwJIC0VZRA=</string>
|
|
5
5
|
<string name="backup_public_key">18tkPyr2nckv4fgo0dhAkaUtJ2hu2831xlO2SKhq8dg=</string>
|
|
6
6
|
</resources>
|
|
@@ -83,11 +83,10 @@
|
|
|
83
83
|
</array>
|
|
84
84
|
<key>UIViewControllerBasedStatusBarAppearance</key>
|
|
85
85
|
<false/>
|
|
86
|
-
|
|
87
86
|
<key>HostName</key>
|
|
88
|
-
<string>managedservices-
|
|
87
|
+
<string>managedservices-prod.rteappbuilder.com</string>
|
|
89
88
|
<key>MainPublicKey</key>
|
|
90
|
-
<string>
|
|
89
|
+
<string>5VC9ody3DexBxZs51+65COtntkY7seybRRwJIC0VZRA=</string>
|
|
91
90
|
<key>BackupPublicKey</key>
|
|
92
91
|
<string>18tkPyr2nckv4fgo0dhAkaUtJ2hu2831xlO2SKhq8dg=</string>
|
|
93
92
|
</dict>
|
|
@@ -47,6 +47,8 @@ import LocalEventEmitter, {
|
|
|
47
47
|
} from '../rtm-events-api/LocalEvents';
|
|
48
48
|
import {PSTNUserLabel} from '../language/default-labels/videoCallScreenLabels';
|
|
49
49
|
import {controlMessageEnum} from '../components/ChatContext';
|
|
50
|
+
import {RECORDING_BOT_UID} from '../utils/constants';
|
|
51
|
+
|
|
50
52
|
export enum UserType {
|
|
51
53
|
ScreenShare = 'screenshare',
|
|
52
54
|
}
|
|
@@ -338,7 +340,7 @@ const RtmConfigure = (props: any) => {
|
|
|
338
340
|
const userData = {
|
|
339
341
|
screenUid: screenUid,
|
|
340
342
|
//below thing for livestreaming
|
|
341
|
-
type: 'rtc',
|
|
343
|
+
type: uid === parseInt(RECORDING_BOT_UID) ? 'bot' : 'rtc',
|
|
342
344
|
uid,
|
|
343
345
|
offline: false,
|
|
344
346
|
lastMessageTimeStamp: 0,
|
|
@@ -123,7 +123,7 @@ const ChatBubble = (props: ChatBubbleProps) => {
|
|
|
123
123
|
<View
|
|
124
124
|
style={[
|
|
125
125
|
isLocal ? style.chatBubbleLocalView : style.chatBubbleRemoteView,
|
|
126
|
-
isURL(message) ? {maxWidth: '88%'} : {},
|
|
126
|
+
//isURL(message) ? {maxWidth: '88%'} : {},
|
|
127
127
|
]}>
|
|
128
128
|
<View
|
|
129
129
|
style={
|