AgoraIO-Extensions / Agora-Flutter-SDK

Flutter plugin of Agora RTC SDK for Android/iOS/macOS/Windows

Home Page:https://pub.dev/packages/agora_rtc_engine

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Black screen 6.3.0 Flutter

meihdimtg opened this issue · comments

Hi everyone, I need help,

I updated the new sdk, I migrated everything,
Unless I'm mistaken, I create a live as admin of the live I see myself.

But if a user wants to join the live then I see in the counter that a user is there, but he has a black screen but he has the sound.

I couldn't stop looking left and right for nothing.

IMG_0089
IMG_DAC003F15244-1

`@override
void initState() {
super.initState();
agoraId = Get.find().usermodel.value!.agoraUid!.toString();
setMaxBrightnessAndWakeLock();
_initRoom();
initAgora();
}

@OverRide
void didChangeAppLifecycleState(AppLifecycleState state) {
if (state == AppLifecycleState.paused) {
// L'application est en arrière-plan
setState(() {
_isLivePaused = true;
});
} else if (state == AppLifecycleState.resumed) {
// L'application revient au premier plan
setState(() {
_isLivePaused = false;
});
}
}

_initRoom() async {
if (_tokshowcontroller.engine != null) {
await _tokshowcontroller.leaveAgoraEngine(widget.roomId);
}
if (_tokshowcontroller.currentRoom.value.id != null &&
_tokshowcontroller.currentRoom.value.id !=
authController.usermodel.value!.currentRoom) {
await _tokshowcontroller.leaveRoom();
}

await _tokshowcontroller.fetchRoom(widget.roomId);
_chatController.currentChatId.value = widget.roomId;
_chatController.singleRoomChatStream(widget.roomId);
_createClient();

}

@OverRide
void dispose() {
restoreBrightnessAndWakeLock();
WidgetsBinding.instance.removeObserver(this);
super.dispose();
}

//RTM AGORA
void _createClient() async {
_tokshowcontroller.client =
await AgoraRtmClient.createInstance(agoraAppID.trim());
_tokshowcontroller.client?.onMessageReceived =
(RtmMessage message, String peerId) {
print("Private Message from $peerId: ${message.text}");
};

_tokshowcontroller.client?.onConnectionStateChanged2 =
    (RtmConnectionState state, RtmConnectionChangeReason reason) {
  print('Connection state changed: $state, reason: $reason');
  if (state == RtmConnectionState.aborted) {
    _tokshowcontroller.client?.logout();
    print('Logout.');
  }
};

}

Future initAgora() async {
print("INIT AGORA 1");
await [Permission.microphone, Permission.camera].request();
print("INIT AGORA 2");

// Cette ligne est ajustée en fonction de la méthode correcte pour votre version du SDK
_tokshowcontroller.engine = await createAgoraRtcEngine();
await _tokshowcontroller.engine!.initialize(RtcEngineContext(
  appId: agoraAppID.trim(),
));
await _joinTokshow();
await _tokshowcontroller.engine
    ?.setChannelProfile(ChannelProfileType.channelProfileLiveBroadcasting);
print("INIT AGORA 3");
await _tokshowcontroller.engine?.setClientRole(role: ClientRoleType.clientRoleBroadcaster);
print("INIT AGORA 4");
await _tokshowcontroller.engine?.enableVideo();
print("INIT AGORA 5");
await _tokshowcontroller.engine?.startPreview();
print("INIT AGORA 6");
await _tokshowcontroller.engine?.setDefaultAudioRouteToSpeakerphone(true);
print("INIT AGORA 7");
await _tokshowcontroller.engine?.setAudioProfile(
    profile: AudioProfileType.audioProfileDefault,
    scenario: AudioScenarioType.audioScenarioChatroom);
print("INIT AGORA 8");
await _tokshowcontroller.engine?.setVideoEncoderConfiguration(const VideoEncoderConfiguration(
  mirrorMode: VideoMirrorModeType.videoMirrorModeAuto,
  frameRate: 15, // Augmentation du débit d'images à 15 images par seconde pour une meilleure fluidité sans trop augmenter la consommation de données.
  bitrate: standardBitrate, // Utilisation d'un débit binaire standard qui offre un bon compromis entre qualité vidéo et consommation de données.
  dimensions: VideoDimensions(width: 480, height: 854), // Augmentation légère de la résolution à 480x854 pour une meilleure qualité vidéo sans consommer trop de bande passante.
  orientationMode: OrientationMode.orientationModeAdaptive,
  degradationPreference: DegradationPreference.maintainFramerate, // Préférence de dégradation pour maintenir le débit d'images plutôt que la qualité vidéo, ce qui peut offrir une meilleure expérience utilisateur dans des conditions réseau variables.
));
print("INIT AGORA 9");
agoraId = Get.find<AuthController>().usermodel.value!.agoraUid!.toString();
print("INIT AGORA 10");
setState(() {
  _isReadyPreview = true;
});
print("INIT AGORA 11");
_tokshowcontroller.engine?.registerEventHandler(const rtcengine.RtcEngineEventHandler());


print("INIT AGORA 13");
if (authController.currentuser!.id! ==
    _tokshowcontroller.currentRoom.value.ownerId?.id! ||
    (_tokshowcontroller.currentRoom.value.invitedSpeakerIds != null &&
        _tokshowcontroller.currentRoom.value.invitedSpeakerIds!.indexWhere(
                (element) =>
            element.id == FirebaseAuth.instance.currentUser!.uid) !=
            -1)) {
  await _tokshowcontroller.engine?.muteLocalAudioStream(false);
  print("INIT AGORA 14");
  await _tokshowcontroller.engine?.enableAudio();
  print("INIT AGORA 15");
} else {
  print("INIT AGORA 15");
  await _tokshowcontroller.engine
      ?.setClientRole(role: ClientRoleType.clientRoleAudience);
}
print("INIT AGORA 16");
_tokshowcontroller.audioMuted.value = false;
print("INIT AGORA 17");
_login();

}

Future _joinTokshow() async {
// Assurez-vous que 'agoraId' est un entier valide
int uid = authController.currentuser!.agoraUid ?? 0;
String channelId = _tokshowcontroller.currentRoom.value.id!;

await _tokshowcontroller.engine?.joinChannel(
  token: _tokshowcontroller.currentRoom.value.token!,
  channelId: channelId,
  uid: uid,
  options: const ChannelMediaOptions(),
);
print("Channel joined successfully");

// Configuration des gestionnaires d'événements
_tokshowcontroller.engine?.registerEventHandler(RtcEngineEventHandler(
  onJoinChannelSuccess: (RtcConnection connection, int uid) {
    print("joinChannelSuccess: Channel ${connection.channelId}, uid: $uid");
  },
  onUserJoined: (RtcConnection connection, int uid, int elapsed) {
    print("userJoined: uid: $uid, elapsed: $elapsed ms");
  },
  // Ajoutez d'autres gestionnaires d'événements selon vos besoins...
));

}

//LOGIN RTM AGORA
void _login() async {
var token = await RoomAPI().getRoomToken(agoraId);
await _tokshowcontroller.client?.login(token, agoraId);
print('Login success: ');
_joinChannel();
}

//RTM AGORA JOIN CHANNEL
void _joinChannel() async {
String channelId = _tokshowcontroller.currentRoom.value.id!;
_tokshowcontroller.rtmChannel = await _createChannel(channelId);
await _tokshowcontroller.rtmChannel?.join();
_initRoomData();

print('Join channel success.');

}

//RTC AGORA INIT ROOM//
void _initRoomData() {
print("INIT ROOM DATA 1");
_chatController.saveToFirestore(
"${authController.usermodel.value!.firstName!} $joined 👋",
widget.roomId);
print("INIT ROOM DATA 2");
_tokshowcontroller.activeUsers.clear();
print("INIT ROOM DATA 3");
_tokshowcontroller.activeUsers.addAll(
_tokshowcontroller.currentRoom.value.userIds!.map((e) => e.agoraUid!));

if (_tokshowcontroller.currentRoom.value.activeAuctionId != null &&
    _tokshowcontroller.currentRoom.value.activeAuctionId!.started == true) {
  if (_checkOwner() == true) {
    _startTime(
        _tokshowcontroller.currentRoom.value.activeAuctionId!.startedTime!);
  } else {
    getTimeRemaining(
        _tokshowcontroller.currentRoom.value.activeAuctionId!.startedTime!);
  }
}
print("INIT ROOM DATA 4");
if ((authController.usermodel.value!.defautPaymentMethod == null || _tokshowcontroller.selectedShippingMethod.value?.id == null) &&
    _checkOwner() == false) {
  _showAlert();
}
_joinTokshow();
print("INIT ROOM DATA 5");

}

Future<AgoraRtmChannel?> _createChannel(String name) async {
AgoraRtmChannel? channel =
await _tokshowcontroller.client?.createChannel(name);
channel?.onMemberJoined = (RtmChannelMember member) {
print(
"onMemberJoined ${member.userId} ${_tokshowcontroller.activeUsers}");
if (_tokshowcontroller.activeUsers
.indexWhere((element) => element == int.parse(member.userId)) ==
-1) {
_tokshowcontroller.activeUsers.add(int.parse(member.userId));
}
};
channel?.onMemberLeft = (RtmChannelMember member) {
_tokshowcontroller.activeUsers
.removeWhere((element) => element == int.parse(member.userId));
};
channel?.onMessageReceived =
(RtmMessage message, RtmChannelMember member) {
var decodedData = jsonDecode(message.text);
var startmylive = _tokshowcontroller.roomListeners(
decodedData,
member.channelId,
context,
_tokshowcontroller.client,
_tokshowcontroller.engine,
_tokshowcontroller.rtmChannel);
print("start my live");
print(startmylive);

};
return channel;

}

bool _isReadyPreview = false;
`

Can you share the API logs?

flutter: Connection state changed: RtmConnectionState.connecting, reason: RtmConnectionChangeReason.login
[info] [iris_rtc_api_engine.cc:341] api name RtcEngine_initialize_0320339 params "{"context":{"appId":"090***************a57"}}"
[Client] Updating selectors after delegate removal failed with: Error Domain=NSCocoaErrorDomain Code=4099 "The connection to service on pid 85 named com.apple.commcenter.coretelephony.xpc was invalidated from this process." UserInfo={NSDebugDescription=The connection to service on pid 85 named com.apple.commcenter.coretelephony.xpc was invalidated from this process.}
fp 16 is 1
[info] [iris_rtc_api_engine.cc:407] api name RtcEngine_initialize_0320339 result 0 outdata {"result":0}
[info] [iris_rtc_api_engine.cc:343] api name RtcEngine_setAppType params "{"appType":4}"
[info] [iris_rtc_api_engine.cc:407] api name RtcEngine_setAppType result 0 outdata {"result":0}
[info] [iris_rtc_api_engine.cc:343] api name RtcEngine_setupLocalVideo_acc9c38 params "{"canvas":{"uid":0,"view":5318972384}}"
[info] [iris_rtc_api_engine.cc:407] api name RtcEngine_setupLocalVideo_acc9c38 result 0 outdata {"result":0}
[info] [iris_rtc_api_engine.cc:343] api name RtcEngine_setChannelProfile_a78fa4f params "{"profile":1}"
[info] [iris_rtc_api_engine.cc:407] api name RtcEngine_setChannelProfile_a78fa4f result 0 outdata {"result":0}
flutter: INIT AGORA 3
[info] [iris_rtc_api_engine.cc:343] api name RtcEngine_setClientRole_3426fa6 params "{"role":1,"options":null}"
[info] [iris_rtc_api_engine.cc:407] api name RtcEngine_setClientRole_3426fa6 result 0 outdata {"result":0}
flutter: INIT AGORA 4
flutter: INIT AGORA 5
flutter: INIT AGORA 6
[info] [iris_rtc_api_engine.cc:343] api name RtcEngine_setDefaultAudioRouteToSpeakerphone_5039d15 params "{"defaultToSpeaker":true}"
[info] [iris_rtc_api_engine.cc:407] api name RtcEngine_setDefaultAudioRouteToSpeakerphone_5039d15 result 0 outdata {"result":0}
flutter: INIT AGORA 7
[info] [iris_rtc_api_engine.cc:343] api name RtcEngine_setAudioProfile_d944543 params "{"profile":0,"scenario":5}"
[info] [iris_rtc_api_engine.cc:407] api name RtcEngine_setAudioProfile_d944543 result 0 outdata {"result":0}
flutter: INIT AGORA 8
[info] [iris_rtc_api_engine.cc:343] api name RtcEngine_setVideoEncoderConfiguration_89677d8 params "{"config":{"dimensions":{"width":480,"height":854},"frameRate":15,"bitrate":0,"orientationMode":0,"degradationPreference":1,"mirrorMode":0}}"
[info] [iris_rtc_api_engine.cc:407] api name RtcEngine_setVideoEncoderConfiguration_89677d8 result 0 outdata {"result":0}
flutter: INIT AGORA 9
flutter: INIT AGORA 10
flutter: INIT AGORA 11
flutter: INIT AGORA 12
[info] [iris_rtc_api_engine.cc:343] api name RtcEngine_registerEventHandler_5fc0465 params "{}"
[info] [iris_rtc_api_engine.cc:395] api name RtcEngine_registerEventHandler_5fc0465 extened params "{"event":10745133632}"
[info] [iris_rtc_api_engine.cc:407] api name RtcEngine_registerEventHandler_5fc0465 result 0 outdata {"result":0}
[info] [iris_rtc_api_engine.cc:341] api name RtcEngine_joinChannel_cdbb747 params "{"token":"007e***************IQ==","channelId":"65fc079723b181ebeb88a384","uid":666243,"options":{}}"
flutter: RELAIS RELAIS
flutter: Erreur lors de la récupération des options d'expédition pour le point relais sélectionné : Null check operator used on a null value
flutter: Non sélectionné
flutter: Non sélectionné
[info] [iris_rtc_api_engine.cc:407] api name RtcEngine_joinChannel_cdbb747 result 0 outdata {"result":0}
flutter: Channel joined successfully
flutter: INIT AGORA 13
[info] [iris_rtc_api_engine.cc:343] api name RtcEngine_muteLocalAudioStream_5039d15 params "{"mute":false}"
[info] [iris_rtc_api_engine.cc:407] api name RtcEngine_muteLocalAudioStream_5039d15 result 0 outdata {"result":0}
flutter: INIT AGORA 14
[info] [iris_rtc_api_engine.cc:343] api name RtcEngine_enableAudio params "{}"
[info] [iris_rtc_api_engine.cc:407] api name RtcEngine_enableAudio result 0 outdata {"result":0}
flutter: INIT AGORA 15
flutter: INIT AGORA 16
flutter: INIT AGORA 17
flutter: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOjE3MTA5NzMxODUzNjksImlkIjoiNjQ1YWI4OTIzMDI2ODUzMDYxYzE5Y2M2Iiwicm9sZSI6ImN1c3RvbWVyIiwiaWF0IjoxNzEwOTczMTg1LCJleHAiOjE3MTEwNTk1ODV9.WaaqTQ2VNNWQl25XWU0wVLhgcYCatTwOAA56Ncpu7uU
flutter: Login success:
flutter: Connection state changed: RtmConnectionState.connected, reason: RtmConnectionChangeReason.loginSuccess
flutter: INIT ROOM DATA 1
flutter: INIT ROOM DATA 2
flutter: INIT ROOM DATA 3
flutter: INIT ROOM DATA 4
flutter: INIT ROOM DATA 5
flutter: Join channel success.
flutter: joinChannelSuccess: Channel 65fc079723b181ebeb88a384, uid: 258
flutter: RETOUR TOKEN
flutter: 007eJxTYDjyeWZixg0duS9/WpdFZfTbH2y/cFYu6cLXq1apn/t+W7grMBhYGhgaGadYGBklm5ukmZhYJJqlGJmbJFqaGqRZJpqaz2D/kyoQ9Df11Nl1TIwMTAyMQAjiszGYmZkZmRgDAEYXI9s=
flutter: Chat message saved
Capture d’écran 2024-03-21 à 11 12 07

Now i downgrade 6.3.0 to 6.1.1 and now black screen for both

Can you share the API logs?

Do you have solution?

Can you also share the logs of the remote side?

Can you also share the logs of the remote side?

[GETX] GOING TO ROUTE /NewLiveTokshowPage
I/flutter (20051): eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOjE3MTEzNjgzNjkyOTIsImlkIjoiNjQ2MjE0NzM4NDVhYzUyNTgwNWQ3NWUzIiwicm9sZSI6ImN1c3RvbWVyIiwiaWF0IjoxNzExMzY4MzY5LCJleHAiOjE3MTE0NTQ3Njl9.BBwRZX5JEN4FJqkejbqiE6jRivPdamuSoZYYQbue8bg
I/flutter (20051): eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOjE3MTEzNjgzNjkyOTIsImlkIjoiNjQ2MjE0NzM4NDVhYzUyNTgwNWQ3NWUzIiwicm9sZSI6ImN1c3RvbWVyIiwiaWF0IjoxNzExMzY4MzY5LCJleHAiOjE3MTE0NTQ3Njl9.BBwRZX5JEN4FJqkejbqiE6jRivPdamuSoZYYQbue8bg
I/ViewRootImpl[MainActivity](20051): controlInsetsForCompatibility not hide statusbar
I/ViewRootImpl[MainActivity](20051): setLayoutParams: not fullscreen caller = android.view.WindowManagerGlobal.updateViewLayout:507 android.view.WindowManagerImpl.updateViewLayout:167 android.app.Activity.onWindowAttributesChanged:4189 io.sentry.android.core.internal.gestures.WindowCallbackAdapter.onWindowAttributesChanged:85 android.view.Window.dispatchWindowAttributesChanged:1259 com.android.internal.policy.PhoneWindow.dispatchWindowAttributesChanged:3321 android.view.Window.setFlags:1245 android.view.Window.addFlags:1178 creativemaybeno.wakelock.Wakelock.toggle:24 creativemaybeno.wakelock.WakelockPlugin.toggle:42 
I/ViewRootImpl[MainActivity](20051): controlInsetsForCompatibility not hide statusbar
I/spdlog  (20051): [2024-03-25 14:30:50.550] [20051] [info] [iris_rtc_engine_impl.cc:52] IrisRtcEngineImpl Initialize
I/spdlog  (20051): [2024-03-25 14:30:50.595] [20051] [info] [iris_rtc_engine_impl.cc:94] api name RtcEngine_initialize params {"context":{"appId":"a26***************389"}}
I/agora.io(20051): [AGS]: Agora SDK ver 4.2.3 build 279679
I/agora.io(20051): [AGS]: Agora SDK git ver: and branch:
I/agora.io(20051): (00000000): RtcEngine::initialize(this:0xb400006eef32b290, {"context":{"eventHandler":"0xb400006e6f72c7b0", "areaCode":4294967295, "logConfig":{"filePath":""}, "autoRegisterAgoraExtensions":1}})
I/agora.io(20051): (00000001):   RtcEngine::initializeEx(this:0xb400006eef32b290, context:(isPassThruMode:0 maxOutputBitrateKpbs:30000, channelProfile:1, audioScenario:0, areaCode:4294967295))
I/agora.io(20051): (00000002):     RtcEngine::startService(this:0xb400006eef32b290, context:(isPassThruMode:0, maxOutputBitrateKpbs:30000))
I/agora.io(20051): (00000003):       RtcEngine::initLowLevelModules(this:0xb400006eef32b290, void)
I/agora.io(20051): (00000004): AgoraService::initializeEx(this:0xb400006ea7674250, configEx:(engineType:0, enableAudioProcessor:1, enableAudioDevice:1, enableVideo:1, context:0x29c6, bitrateConstraints:(min_bitrate_bps:0, start_bitrate_bps:300000, min_bitrate_bps:0), logDir: , domainLimit:0))
I/agora.io(20051): [AudioRoute] initialize +
I/agora.io(20051): WebRtcAudioRecord [JavaAdm]: [USB] Set AudioRecordRouteCallback
I/agora.io(20051): WebRtcAudioTrack [JavaAdm]: [USB] Set AudioTrackRouteCallback
I/agora.io(20051): [AudioRoute] AudioDeviceCallbackImpl ctor!
I/agora.io(20051): [AudioRoute] not handle this route 1 yet!
I/agora.io(20051): [AudioRoute] process device connect,route: 1 connect: true
I/agora.io(20051): [AudioRoute] not handle this route 3 yet!
I/agora.io(20051): [AudioRoute] process device connect,route: 3 connect: true
I/agora.io(20051): [AudioRoute] Headset setup: Plugged = false mHeadsetType -1
I/agora.io(20051): [AudioRoute] BT Headset setup: Plugged = false
V/AudioManager(20051): isBluetoothScoOn...
I/agora.io(20051): [AudioRoute] initial Bluetooth SCO state  disable
I/flutter (20051): REPONSE REPONSE
I/flutter (20051): {"acknowledged":true,"modifiedCount":1,"upsertedId":null,"upsertedCount":0,"matchedCount":1}
I/agora.io(20051): [AudioRoute] Monitor stopped
V/AudioManager(20051): isBluetoothScoOn...
I/agora.io(20051): [AudioRoute] BT ACTION_SCO_AUDIO_STATE_UPDATED prev -1,0
I/agora.io(20051): [AudioRoute] initialize -
I/agora.io(20051): [AudioRoute] Bluetooth SCO state disconnected
I/agora.io(20051): [CM]: succeeded to load report cache in ReportCacheDocument::Unpack(), elapsed 0, total item 6
I/agora.io(20051): [CM]: succeeded to load from Cache File Manager in DnsCacheDocument::Unpack(), elapsed 0
E/agora.io(20051): [CommonUtility] Unable to create PhoneStateListener, 
E/agora.io(20051): [CommonUtility] java.lang.SecurityException: listen
I/agora.io(20051): [cache-certs] load aut certs size: 5670
E/agora.io(20051): [CommonUtility] java.lang.SecurityException: listen
E/agora.io(20051): 	at android.os.Parcel.createExceptionOrNull(Parcel.java:2437)
E/agora.io(20051): 	at android.os.Parcel.createException(Parcel.java:2421)
E/agora.io(20051): 	at android.os.Parcel.readException(Parcel.java:2404)
E/agora.io(20051): 	at android.os.Parcel.readException(Parcel.java:2346)
E/agora.io(20051): 	at com.android.internal.telephony.ITelephonyRegistry$Stub$Proxy.listenWithEventList(ITelephonyRegistry.java:1036)
E/agora.io(20051): 	at android.telephony.TelephonyRegistryManager.listenFromListener(TelephonyRegistryManager.java:250)
E/agora.io(20051): 	at android.telephony.TelephonyManager.listen(TelephonyManager.java:6175)
E/agora.io(20051): 	at io.agora.rtc2.internal.CommonUtility.startMonitor(Unknown Source:49)
E/agora.io(20051): 	at io.agora.rtc2.internal.CommonUtility$1.run(Unknown Source:2)
E/agora.io(20051): 	at android.os.Handler.handleCallback(Handler.java:955)
E/agora.io(20051): 	at android.os.Handler.dispatchMessage(Handler.java:102)
E/agora.io(20051): 	at android.os.Looper.loopOnce(Looper.java:206)
E/agora.io(20051): 	at android.os.Looper.loop(Looper.java:296)
E/agora.io(20051): 	at android.os.HandlerThread.run(HandlerThread.java:67)
E/agora.io(20051): Caused by: android.os.RemoteException: Remote stack trace:
E/agora.io(20051): 	at com.android.internal.telephony.TelephonyPermissions.enforceCarrierPrivilege(TelephonyPermissions.java:660)
E/agora.io(20051): 	at com.android.internal.telephony.TelephonyPermissions.checkReadPhoneState(TelephonyPermissions.java:174)
E/agora.io(20051): 	at com.android.internal.telephony.TelephonyPermissions.checkCallingOrSelfReadPhoneState(TelephonyPermissions.java:116)
E/agora.io(20051): 	at com.android.server.TelephonyRegistry.checkListenerPermission(TelephonyRegistry.java:3284)
E/agora.io(20051): 	at com.android.server.TelephonyRegistry.listen(TelephonyRegistry.java:1070)
E/agora.io(20051): callee: null 1591/5326
E/agora.io(20051): 
W/libc    (20051): Access denied finding property "net.dns1"
W/libc    (20051): Access denied finding property "net.dns2"
W/libc    (20051): Access denied finding property "net.dns3"
W/libc    (20051): Access denied finding property "net.dns4"
W/libc    (20051): Access denied finding property "net.dns1"
W/libc    (20051): Access denied finding property "net.dns2"
W/libc    (20051): Access denied finding property "net.dns3"
W/libc    (20051): Access denied finding property "net.dns4"
I/DisplayManager(20051): mask is 7 and Registered Mask is 7
I/agora.io(20051): [network]: 'NETWORK_UNKOWN' -> 'WIFI' ipv4/v6 '192.******.29'/'2a01:******:710a' gw '192.******.1'/'' subtype 101 level 4 ssid '****' bssid '****' rssi -32 asu -100
I/agora.io(20051): [SHIM] NotifyNetworkPreChang
I/agora.io(20051): [SHIM] NotifyNetworkChanged from -1 to 2
I/agora.io(20051): [local-ap] local ap manager initialize
I/agora.io(20051): [ipstack]: start ipv4 detecting
I/agora.io(20051): [ap-base] initialize ap list
I/agora.io(20051): [ap-base] append predefined ip: 123.******.221, 13.******.184, 3.******.239, 20.******.143, 18.******.59, 54.******.11, 18.******.64, 184.******.217, 168.******.216, 3.******.108, 15.******.208, 18.******.254, 54.******.178, 101.******.165, 52.******.111, 52.******.238, 3.******.253, 2600:******:217, 2406:******:64, 2406:******:253, 2408:******:affb, 2a05:******:239, 2406:******:60, 2406:******:108, 
I/agora.io(20051): [ap-base] append predefined ip: 50.******.121, 35.******.187, 199.******.132, 118.******.38, 54.******.72, 13.******.235, 23.******.152, 112.******.46, 52.******.59, 52.******.170, 13.******.196, 106.******.130, 3.******.78, 52.******.244, 15.******.129, 13.******.137, 47.******.93, 2408:******:546a, 2406:******:78, 2406:******:190, 2406:******:196, 2406:******:235, 2406:******:59, 2600:******:121, 2a05:******:244, 2406:******:129, 2a05:******:187, 2406:******:137, 2600:******:170, 2408:******:4d0d, 
I/agora.io(20051): [ap-base] append predefined ip: 50.******.121, 35.******.187, 199.******.132, 118.******.38, 54.******.72, 13.******.235, 23.******.152, 112.******.46, 52.******.59, 52.******.170, 13.******.196, 106.******.130, 3.******.78, 52.******.244, 15.******.129, 13.******.137, 47.******.93, 2408:******:546a, 2406:******:78, 2406:******:190, 2406:******:196, 2406:******:235, 2406:******:59, 2600:******:121, 2a05:******:244, 2406:******:129, 2a05:******:187, 2406:******:137, 2600:******:170, 2408:******:4d0d, 
I/agora.io(20051): [ap-base] queryDns ap2-tls.agora.io
I/agora.io(20051): [ap-base] queryDns ap2.agora.io
I/agora.io(20051): [ap-base] queryDns ap-ipv6.agora.io
I/agora.io(20051): [ap-base] initialize ap list
I/agora.io(20051): [ap-base] append predefined ip: 123.******.221, 13.******.184, 3.******.239, 20.******.143, 18.******.59, 54.******.11, 18.******.64, 184.******.217, 168.******.216, 3.******.108, 15.******.208, 18.******.254, 54.******.178, 101.******.165, 52.******.111, 52.******.238, 3.******.253, 2600:******:217, 2406:******:64, 2406:******:253, 2408:******:affb, 2a05:******:239, 2406:******:60, 2406:******:108, 
I/agora.io(20051): [ap-base] append predefined ip: 50.******.121, 35.******.187, 199.******.132, 118.******.38, 54.******.72, 13.******.235, 23.******.152, 112.******.46, 52.******.59, 52.******.170, 13.******.196, 106.******.130, 3.******.78, 52.******.244, 15.******.129, 13.******.137, 47.******.93, 2408:******:546a, 2406:******:78, 2406:******:190, 2406:******:196, 2406:******:235, 2406:******:59, 2600:******:121, 2a05:******:244, 2406:******:129, 2a05:******:187, 2406:******:137, 2600:******:170, 2408:******:4d0d, 
I/agora.io(20051): [ap-base] append predefined ip: 50.******.121, 35.******.187, 199.******.132, 118.******.38, 54.******.72, 13.******.235, 23.******.152, 112.******.46, 52.******.59, 52.******.170, 13.******.196, 106.******.130, 3.******.78, 52.******.244, 15.******.129, 13.******.137, 47.******.93, 2408:******:546a, 2406:******:78, 2406:******:190, 2406:******:196, 2406:******:235, 2406:******:59, 2600:******:121, 2a05:******:244, 2406:******:129, 2a05:******:187, 2406:******:137, 2600:******:170, 2408:******:4d0d, 
I/agora.io(20051): [ap-base] queryDns ap-tds-tls.agora.io
I/agora.io(20051): [ap-base] queryDns ap1-tds.agora.io
I/agora.io(20051): [ap-base] queryDns ap1-tds.agora.io
I/agora.io(20051): [CS]: initialized ap list
I/agora.io(20051): [ap-base] initialize ap list
I/agora.io(20051): [ap-base] append predefined ip: 123.******.221, 13.******.184, 3.******.239, 20.******.143, 18.******.59, 54.******.11, 18.******.64, 184.******.217, 168.******.216, 3.******.108, 15.******.208, 18.******.254, 54.******.178, 101.******.165, 52.******.111, 52.******.238, 3.******.253, 2600:******:217, 2406:******:64, 2406:******:253, 2408:******:affb, 2a05:******:239, 2406:******:60, 2406:******:108, 
I/agora.io(20051): [ap-base] append predefined ip: 50.******.121, 35.******.187, 199.******.132, 118.******.38, 54.******.72, 13.******.235, 23.******.152, 112.******.46, 52.******.59, 52.******.170, 13.******.196, 106.******.130, 3.******.78, 52.******.244, 15.******.129, 13.******.137, 47.******.93, 2408:******:546a, 2406:******:78, 2406:******:190, 2406:******:196, 2406:******:235, 2406:******:59, 2600:******:121, 2a05:******:244, 2406:******:129, 2a05:******:187, 2406:******:137, 2600:******:170, 2408:******:4d0d, 
I/agora.io(20051): [ap-base] append predefined ip: 50.******.121, 35.******.187, 199.******.132, 118.******.38, 54.******.72, 13.******.235, 23.******.152, 112.******.46, 52.******.59, 52.******.170, 13.******.196, 106.******.130, 3.******.78, 52.******.244, 15.******.129, 13.******.137, 47.******.93, 2408:******:546a, 2406:******:78, 2406:******:190, 2406:******:196, 2406:******:235, 2406:******:59, 2600:******:121, 2a05:******:244, 2406:******:129, 2a05:******:187, 2406:******:137, 2600:******:170, 2408:******:4d0d, 
I/agora.io(20051): [ap-base] queryDns ap-tds-tls.agora.io
I/agora.io(20051): [ap-base] queryDns ap1-tds.agora.io
I/agora.io(20051): [ap-base] queryDns ap1-tds.agora.io
I/agora.io(20051): [ap-6][tds] client: SendRequest
I/agora.io(20051): [ap-6][tds] client: DoProcess, now: 144218156, retry times: 0
I/agora.io(20051): create session builder 0xb400006efb6fc8f0
I/agora.io(20051): [ap-6][tds] send message to: 50.******.121:8443, with opid: 354974936, transport type = aut(5), send ts = 144218156
I/agora.io(20051): create session builder 0xb400006efb699fc0
I/agora.io(20051): [ap-6][tds] send message to: 35.******.187:8443, with opid: 354974937, transport type = aut(5), send ts = 144218156
I/agora.io(20051): create session builder 0xb400006efb74fd80
I/agora.io(20051): [ap-6][tds] send message to: 199.******.132:8443, with opid: 354974938, transport type = aut(5), send ts = 144218156
I/agora.io(20051): tcp_client connecting 123.56.235.221:8443
I/agora.io(20051): [ap-6][tds] connect to: 123.******.221:8443, with opid: 354974939, transport type = tcp(1), send ts = 144218156
I/agora.io(20051): [CS]: Send AP Request, service_id = 6
I/agora.io(20051): [CommonUtility] manufacturer = HONOR
I/agora.io(20051): [CommonUtility] suspectCount = 0, hardware = qcom, arch = aarch64, baseBandVersion = , buildFlavor = magic-user, productBoard = RMO, boardPlatform = holi, manufacturer = HONOR
V/AudioManager(20051): isSpeakerphoneOn: true
I/agora.io(20051): [RS] queryDns domain is report-edge.agora.io
I/agora.io(20051): [RS] dns parse result code: 0, servers size: 1
I/agora.io(20051): [RS] OnParseDns 104.166.161.75
I/agora.io(20051): [RS] refresh server priority addr:  104.166.161.75:8130 priority:  2
I/agora.io(20051): [ap-base] initialize ap list
I/agora.io(20051): [ap-base] append predefined ip: 123.******.221, 13.******.184, 3.******.239, 20.******.143, 18.******.59, 54.******.11, 18.******.64, 184.******.217, 168.******.216, 3.******.108, 15.******.208, 18.******.254, 54.******.178, 101.******.165, 52.******.111, 52.******.238, 3.******.253, 2600:******:217, 2406:******:64, 2406:******:253, 2408:******:affb, 2a05:******:239, 2406:******:60, 2406:******:108, 
I/agora.io(20051): [ap-base] append predefined ip: 50.******.121, 35.******.187, 199.******.132, 118.******.38, 54.******.72, 13.******.235, 23.******.152, 112.******.46, 52.******.59, 52.******.170, 13.******.196, 106.******.130, 3.******.78, 52.******.244, 15.******.129, 13.******.137, 47.******.93, 2408:******:546a, 2406:******:78, 2406:******:190, 2406:******:196, 2406:******:235, 2406:******:59, 2600:******:121, 2a05:******:244, 2406:******:129, 2a05:******:187, 2406:******:137, 2600:******:170, 2408:******:4d0d, 
I/agora.io(20051): [ap-base] append predefined ip: 50.******.121, 35.******.187, 199.******.132, 118.******.38, 54.******.72, 13.******.235, 23.******.152, 112.******.46, 52.******.59, 52.******.170, 13.******.196, 106.******.130, 3.******.78, 52.******.244, 15.******.129, 13.******.137, 47.******.93, 2408:******:546a, 2406:******:78, 2406:******:190, 2406:******:196, 2406:******:235, 2406:******:59, 2600:******:121, 2a05:******:244, 2406:******:129, 2a05:******:187, 2406:******:137, 2600:******:170, 2408:******:4d0d, 
I/agora.io(20051): [ap-base] queryDns ap2-tls.agora.io
I/agora.io(20051): [ap-base] queryDns ap2.agora.io
I/agora.io(20051): [ap-base] queryDns ap-ipv6.agora.io
I/agora.io(20051): [ap-0][unknown] client: StopRequest
I/agora.io(20051): [ap-5][report] client: SendRequest
I/agora.io(20051): [ap-5][report] client: DoProcess, now: 144218161, retry times: 0
I/agora.io(20051): create session builder 0xb400006efb74ea30
I/agora.io(20051): [ap-5][report] send message to: 50.******.121:8443, with opid: 3086117708, transport type = aut(5), send ts = 144218161
I/agora.io(20051): tcp_client connecting 123.56.235.221:8443
I/agora.io(20051): [ap-5][report] connect to: 123.******.221:8443, with opid: 3086117709, transport type = tcp(1), send ts = 144218161
I/agora.io(20051): [rlbs] Send AP Request, service_id = 5
I/agora.io(20051): [xdump]: xdump setting, enabled:1, upload enabled:1, save enabled:1, use config:1
I/agora.io(20051): [xdump]: will check last crash context from /data/user/0/com.popuplive.app/cache/crash_context_v1
I/agora.io(20051): [xdump]: no crash or hang found about last time
I/agora.io(20051): [ap-base] initialize ap list
I/agora.io(20051): [ap-base] append predefined ip: 123.******.221, 13.******.184, 3.******.239, 20.******.143, 18.******.59, 54.******.11, 18.******.64, 184.******.217, 168.******.216, 3.******.108, 15.******.208, 18.******.254, 54.******.178, 101.******.165, 52.******.111, 52.******.238, 3.******.253, 2600:******:217, 2406:******:64, 2406:******:253, 2408:******:affb, 2a05:******:239, 2406:******:60, 2406:******:108, 
I/agora.io(20051): [ap-base] append predefined ip: 50.******.121, 35.******.187, 199.******.132, 118.******.38, 54.******.72, 13.******.235, 23.******.152, 112.******.46, 52.******.59, 52.******.170, 13.******.196, 106.******.130, 3.******.78, 52.******.244, 15.******.129, 13.******.137, 47.******.93, 2408:******:546a, 2406:******:78, 2406:******:190, 2406:******:196, 2406:******:235, 2406:******:59, 2600:******:121, 2a05:******:244, 2406:******:129, 2a05:******:187, 2406:******:137, 2600:******:170, 2408:******:4d0d, 
I/agora.io(20051): [ap-base] append predefined ip: 50.******.121, 35.******.187, 199.******.132, 118.******.38, 54.******.72, 13.******.235, 23.******.152, 112.******.46, 52.******.59, 52.******.170, 13.******.196, 106.******.130, 3.******.78, 52.******.244, 15.******.129, 13.******.137, 47.******.93, 2408:******:546a, 2406:******:78, 2406:******:190, 2406:******:196, 2406:******:235, 2406:******:59, 2600:******:121, 2a05:******:244, 2406:******:129, 2a05:******:187, 2406:******:137, 2600:******:170, 2408:******:4d0d, 
I/agora.io(20051): [ap-base] queryDns ap2-tls.agora.io
I/agora.io(20051): [ap-base] queryDns ap2.agora.io
I/agora.io(20051): [ap-base] queryDns ap-ipv6.agora.io
I/agora.io(20051): [ap-base] initialize ap list
I/agora.io(20051): [ap-base] append predefined ip: 123.******.221, 13.******.184, 3.******.239, 20.******.143, 18.******.59, 54.******.11, 18.******.64, 184.******.217, 168.******.216, 3.******.108, 15.******.208, 18.******.254, 54.******.178, 101.******.165, 52.******.111, 52.******.238, 3.******.253, 2600:******:217, 2406:******:64, 2406:******:253, 2408:******:affb, 2a05:******:239, 2406:******:60, 2406:******:108, 
I/agora.io(20051): [ap-base] append predefined ip: 50.******.121, 35.******.187, 199.******.132, 118.******.38, 54.******.72, 13.******.235, 23.******.152, 112.******.46, 52.******.59, 52.******.170, 13.******.196, 106.******.130, 3.******.78, 52.******.244, 15.******.129, 13.******.137, 47.******.93, 2408:******:546a, 2406:******:78, 2406:******:190, 2406:******:196, 2406:******:235, 2406:******:59, 2600:******:121, 2a05:******:244, 2406:******:129, 2a05:******:187, 2406:******:137, 2600:******:170, 2408:******:4d0d, 
I/agora.io(20051): [ap-base] append predefined ip: 50.******.121, 35.******.187, 199.******.132, 118.******.38, 54.******.72, 13.******.235, 23.******.152, 112.******.46, 52.******.59, 52.******.170, 13.******.196, 106.******.130, 3.******.78, 52.******.244, 15.******.129, 13.******.137, 47.******.93, 2408:******:546a, 2406:******:78, 2406:******:190, 2406:******:196, 2406:******:235, 2406:******:59, 2600:******:121, 2a05:******:244, 2406:******:129, 2a05:******:187, 2406:******:137, 2600:******:170, 2408:******:4d0d, 
I/agora.io(20051): [ap-base] queryDns ap2-tls.agora.io
I/agora.io(20051): [ap-base] queryDns ap2.agora.io
I/agora.io(20051): [ap-base] queryDns ap-ipv6.agora.io
I/agora.io(20051): ExtensionControlImpl::Extension Control is initialized 0xb400006e7d78a450
W/agora.io(20051): ExtensionProviderRegistry::addProvider agora.builtin already in use
I/agora.io(20051): ExtensionControlImpl::Get Extension Control 0xb400006e7d78a450
I/agora.io(20051): ExtensionProviderRegistry::extension:agora.builtin%%noise_suppression_local_playback exist
I/agora.io(20051): ExtensionControlImpl::Get Extension Control 0xb400006e7d78a450
I/agora.io(20051): ExtensionProviderRegistry::extension:agora.builtin%%equalization_local_playback exist
I/agora.io(20051): ExtensionControlImpl::Get Extension Control 0xb400006e7d78a450
I/agora.io(20051): ExtensionProviderRegistry::extension:agora.builtin%%pitch_local_playback exist
I/agora.io(20051): ExtensionControlImpl::Get Extension Control 0xb400006e7d78a450
I/agora.io(20051): ExtensionProviderRegistry::extension:agora.builtin%%formant_local_playback exist
I/agora.io(20051): ExtensionControlImpl::Get Extension Control 0xb400006e7d78a450
I/agora.io(20051): ExtensionProviderRegistry::extension:agora.builtin%%local_voice_reverb_local_playback exist
I/agora.io(20051): ExtensionControlImpl::Get Extension Control 0xb400006e7d78a450
I/agora.io(20051): ExtensionProviderRegistry::extension:agora.builtin%%equalization_post exist
I/agora.io(20051): ExtensionControlImpl::Get Extension Control 0xb400006e7d78a450
I/agora.io(20051): ExtensionProviderRegistry::extension:agora.builtin%%pitch_post exist
I/agora.io(20051): ExtensionControlImpl::Get Extension Control 0xb400006e7d78a450
I/agora.io(20051): ExtensionProviderRegistry::extension:agora.builtin%%formant_post exist
I/agora.io(20051): ExtensionControlImpl::Get Extension Control 0xb400006e7d78a450
I/agora.io(20051): ExtensionProviderRegistry::extension:agora.builtin%%local_voice_reverb_post exist
I/agora.io(20051): ExtensionControlImpl::Get Extension Control 0xb400006e7d78a450
I/agora.io(20051): ExtensionProviderRegistry::extension:agora.builtin%%sound_position_remote_playback exist
I/agora.io(20051): ExtensionControlImpl::Get Extension Control 0xb400006e7d78a450
I/agora.io(20051): ExtensionProviderRegistry::extension:agora.builtin%%sound_position_pcm exist
I/agora.io(20051): ExtensionControlImpl::Get Extension Control 0xb400006e7d78a450
I/agora.io(20051): ExtensionProviderRegistry::extension:agora.builtin%%pitch_pcm exist
I/agora.io(20051): ExtensionControlImpl::Get Extension Control 0xb400006e7d78a450
I/agora.io(20051): ExtensionProviderRegistry::extension:agora.builtin%%formant_pcm exist
I/agora.io(20051): ExtensionControlImpl::Get Extension Control 0xb400006e7d78a450
I/agora.io(20051): ExtensionProviderRegistry::extension:agora.builtin%%headphone_equalizer_remote_mixed_playback exist
I/agora.io(20051): metering collector is working, internal = 10s.
I/agora.io(20051): (00000005):   AgoraService::setLogFilter(this:0xb400006ea7674250, filters:15)
I/agora.io(20051): [AGS]: TDS value found for adm_android_mode : -1
I/agora.io(20051): [RERA]: initialize event rule for space id:0
I/agora.io(20051): create session builder 0xb400006efb691220
I/agora.io(20051): audio options factoryname ==default: vector===6
I/agora.io(20051): audio options factoryname ==default: vector===6
I/agora.io(20051): [AuEng]: Audio layer get from audio options: 6
I/agora.io(20051): [AuEng]: Audio layer get from audio routing: 6
I/agora.io(20051): audio_device_impl.cc: (line 54): Create
I/agora.io(20051): audio_device_buffer.cc: (line 66): AudioDeviceBuffer::ctor
I/agora.io(20051): audio_device_impl.cc: (line 90): AudioDeviceModuleImpl
I/agora.io(20051): audio_device_impl.cc: (line 95): CheckPlatform
I/agora.io(20051): audio_device_impl.cc: (line 103): current platform is Android
I/agora.io(20051): audio_device_impl.cc: (line 125): CreatePlatformSpecificObjects
I/agora.io(20051): audio_device_impl.cc: (line 1539): PlatformAudioLayer
W/agora.io(20051): set_priorities not supported!!
W/agora.io(20051): audio_device_generic_worker_wrapper.cc: (line 93): audio_layer_in is: 6
I/agora.io(20051): jvm_android.cc: (line 74): AttachCurrentThreadIfNeeded::ctor
I/agora.io(20051): jvm_android.cc: (line 266): JVM::environment
I/agora.io(20051): jvm_android.cc: (line 188): JNIEnvironment::ctor
I/agora.io(20051): audio_manager.cc: (line 133): ctor
I/agora.io(20051): jvm_android.cc: (line 200): JNIEnvironment::RegisterNatives: io/agora/base/internal/voiceengine/WebRtcAudioManager
I/agora.io(20051): jvm_android.cc: (line 136): NativeRegistration::ctor
I/agora.io(20051): jvm_android.cc: (line 148): NativeRegistration::NewObject
I/agora.io(20051): WebRtcAudioManager: ctor@[name=AudioDeviceWorker, id=3690], this io.agora.base.internal.voiceengine.WebRtcAudioManager@4cacb71
W/agora.io(20051): WebRtcAudioManager: bufferPeriodMs is: 10
I/agora.io(20051): WebRtcAudioManager: Sample rate is set to 48000 Hz
I/agora.io(20051): WebRtcAudioEffects: canUseAcousticEchoCanceler: true
I/agora.io(20051): WebRtcAudioEffects: canUseNoiseSuppressor: true
W/agora.io(20051): WebRtcAudioManager: AAudio support is currently disabled on all devices!
I/agora.io(20051): audio_manager.cc: (line 416): OnCacheAudioParameters: hardware_aec: 1, hardware_agc: 0, hardware_ns: 1, low_latency_output: 1, low_latency_input: 1, pro_audio: 1, a_audio: 0, sample_rate: 48000, output_channels: 2, input_channels: 1, output_buffer_size: 480, input_buffer_size: 480, buffer_period_ms: 10
I/agora.io(20051): WebRtcAudioManager: Android SDK: 31, Release: 12, Brand: HONOR, Device: HNRMO-Q, Id: HONORRMO-N21, Hardware: qcom, Manufacturer: HONOR, Model: RMO-NX1, Product: RMO-NX1EEA
V/AudioManager(20051): getMode...
V/AudioManager(20051): isMicrophoneMute... 
V/AudioManager(20051): isMusicActive...
V/AudioManager(20051): isSpeakerphoneOn: true
V/AudioManager(20051): isBluetoothScoOn...
I/agora.io(20051): WebRtcAudioManager: Audio State: audio mode: MODE_NORMAL, has mic: true, mic muted: false, music active: false, speakerphone: true, BT SCO: false
I/agora.io(20051): WebRtcAudioManager: Audio State: 
I/agora.io(20051): WebRtcAudioManager:   fixed volume=false
V/AudioManager(20051): getStreamVolume streamType: 0 volume: 1
V/AudioManager(20051): getStreamMaxVolume  treamType: 0
V/AudioManager(20051): isStreamMute   streamType: 0
I/agora.io(20051): WebRtcAudioManager:   STREAM_VOICE_CALL: volume=1, max=10, muted=false
V/AudioManager(20051): getStreamVolume streamType: 3 volume: 14
V/AudioManager(20051): getStreamMaxVolume  treamType: 3
V/AudioManager(20051): isStreamMute   streamType: 3
I/agora.io(20051): WebRtcAudioManager:   STREAM_MUSIC: volume=14, max=15, muted=false
V/AudioManager(20051): getStreamVolume streamType: 2 volume: 15
V/AudioManager(20051): getStreamMaxVolume  treamType: 2
V/AudioManager(20051): isStreamMute   streamType: 2
I/agora.io(20051): WebRtcAudioManager:   STREAM_RING: volume=15, max=15, muted=false
V/AudioManager(20051): getStreamVolume streamType: 4 volume: 12
V/AudioManager(20051): getStreamMaxVolume  treamType: 4
V/AudioManager(20051): isStreamMute   streamType: 4
I/agora.io(20051): WebRtcAudioManager:   STREAM_ALARM: volume=12, max=15, muted=false
V/AudioManager(20051): getStreamVolume streamType: 5 volume: 15
V/AudioManager(20051): getStreamMaxVolume  treamType: 5
V/AudioManager(20051): isStreamMute   streamType: 5
I/agora.io(20051): WebRtcAudioManager:   STREAM_NOTIFICATION: volume=15, max=15, muted=false
V/AudioManager(20051): getStreamVolume streamType: 1 volume: 15
V/AudioManager(20051): getStreamMaxVolume  treamType: 1
V/AudioManager(20051): isStreamMute   streamType: 1
I/agora.io(20051): WebRtcAudioManager:   STREAM_SYSTEM: volume=15, max=15, muted=false
I/agora.io(20051): WebRtcAudioManager: Audio Devices: 
I/agora.io(20051): WebRtcAudioManager:   TYPE_BUILTIN_EARPIECE(out): channels=[1], encodings=[2], sample rates=[48000], id=2
I/agora.io(20051): WebRtcAudioManager:   TYPE_BUILTIN_SPEAKER(out): channels=[2], encodings=[2], sample rates=[48000], id=3
I/agora.io(20051): WebRtcAudioManager:   TYPE_TELEPHONY(out): channels=[1, 2], encodings=[2], sample rates=[8000, 16000], id=13
I/agora.io(20051): WebRtcAudioManager:   TYPE_BUILTIN_MIC(in): channels=[1, 2], encodings=[2, 4, 21], sample rates=[8000, 12000, 16000, 24000, 32000, 48000, 11025, 22050, 44100], id=19
I/agora.io(20051): WebRtcAudioManager:   TYPE_TELEPHONY(in): channels=[1, 2], encodings=[2, 4, 21], sample rates=[8000, 16000, 48000, 12000, 24000, 32000, 11025, 22050], id=20
I/agora.io(20051): WebRtcAudioManager:   TYPE_BUILTIN_MIC(in): channels=[1, 2], encodings=[2, 4, 21], sample rates=[8000, 12000, 16000, 24000, 32000, 48000, 11025, 22050, 44100], id=21
I/agora.io(20051): WebRtcAudioManager:   TYPE_UNKNOWN(in): channels=[2], encodings=[2], sample rates=[48000], id=30
I/agora.io(20051): WebRtcAudioManager:   TYPE_FM_TUNER(in): channels=[1, 2], encodings=[2, 4, 21], sample rates=[48000, 8000, 12000, 16000, 24000, 32000, 11025, 22050], id=22
I/agora.io(20051): jvm_android.cc: (line 99): GlobalRef::ctor
I/agora.io(20051): audio_manager.cc: (line 54): JavaAudioManager::ctor
I/agora.io(20051): fine_audio_buffer_ex.cc: (line 87): FineAudioBufferEx::ctor
W/agora.io(20051): opensles_player.cc: (line 64): [OpenslAdm] OpenSLESPlayer ctor
W/agora.io(20051): opensles_recorder.cc: (line 65): [OpenslAdm] OpenSLESRecorder ctor
I/agora.io(20051): audio_device_template.h: (line 50): AudioDeviceTemplate
I/agora.io(20051): audio_manager.cc: (line 160): SetActiveAudioLayer: 6
W/agora.io(20051): fine_audio_buffer_ex.cc: (line 175): Set max buffered recorded frames 16
I/agora.io(20051): audio_device_template.h: (line 248): AudioChatModeIsEnabled
V/AudioManager(20051): getMode...
I/agora.io(20051): WebRtcAudioManager: current audio mode: MODE_NORMAL
I/agora.io(20051): audio_device_impl.cc: (line 227): AttachAudioBuffer
W/agora.io(20051): audio_device_generic_worker_wrapper.cc: (line 1154): AttachAudioBuffer
I/agora.io(20051): audio_device_template.h: (line 224): AttachAudioBuffer
W/agora.io(20051): opensles_player.cc: (line 302): [OpenslAdm] AttachAudioBuffer 
W/agora.io(20051): opensles_player.cc: (line 310): [OpenslAdm] AttachAudioBuffer SetPlayoutSampleRate(48000)
I/agora.io(20051): audio_device_buffer.cc: (line 225): SetPlayoutSampleRate(48000)
W/agora.io(20051): opensles_player.cc: (line 315): [OpenslAdm] AttachAudioBuffer SetPlayoutChannels(2)
I/agora.io(20051): audio_device_buffer.cc: (line 267): SetPlayoutChannels(2)
W/agora.io(20051): opensles_recorder.cc: (line 224): [OpenslAdm] AttachAudioBuffer 
W/agora.io(20051): opensles_recorder.cc: (line 235): [OpenslAdm] AttachAudioBuffer SetRecordingSampleRate(48000)
I/agora.io(20051): audio_device_buffer.cc: (line 212): SetRecordingSampleRate(48000)
W/agora.io(20051): opensles_recorder.cc: (line 243): [OpenslAdm] AttachAudioBuffer SetRecordingChannels(1)
I/agora.io(20051): audio_device_buffer.cc: (line 260): SetRecordingChannels(1)
I/agora.io(20051): AudioDeviceModuleWrapper:: AudioDeviceModuleWrapper: ctor 0xb400006e29765960
I/agora.io(20051): audio_device_impl.cc: (line 1247): RegisterAudioDeviceEventObserver
I/agora.io(20051): audio_device_generic_worker_wrapper.cc: (line 1166): RegisterAudioDeviceEventObserver
I/agora.io(20051): audio_device_template.h: (line 258): RegisterAudioDeviceEventObserver observer 0xb400006e6162f8f8
W/agora.io(20051): set_priorities not supported!!
I/agora.io(20051): agora::rtc::AudioDeviceEventManager::AudioDeviceEventManager(agora_refptr<webrtc::AudioDeviceModule>): adem ctor 0xb400006e6162f8f0
I/agora.io(20051): audio_device_impl.cc: (line 455): Init
W/agora.io(20051): audio_device_generic_worker_wrapper.cc: (line 230): Init
I/agora.io(20051): audio_device_template.cc: (line 46): Init
I/agora.io(20051): audio_manager.cc: (line 209): Init
I/agora.io(20051): WebRtcAudioManager: init@[name=AudioDeviceWorker, id=3690]
V/AudioManager(20051): getMode...
I/agora.io(20051): WebRtcAudioManager: audio mode is: MODE_NORMAL
I/agora.io(20051): audio_manager.cc: (line 103): MonitorPlayoutVolumeChange(1)
I/agora.io(20051): WebRtcAudioManager: monitorPlayoutVolumeChange monitor: true
V/AudioManager(20051): getMode...
I/agora.io(20051): WebRtcAudioManager: get stream type is 3
V/AudioManager(20051): getStreamVolume streamType: 3 volume: 14
W/agora.io(20051): opensles_player.cc: (line 85): [OpenslAdm] Init 
W/agora.io(20051): opensles_player.cc: (line 88): [OpenslAdm] Init Stereo mode is enabled
W/agora.io(20051): opensles_recorder.cc: (line 82): [OpenslAdm] Init 
I/agora.io(20051): audio_device_impl.cc: (line 866): SetPlayoutDevice( device_index_: 0)
E/agora.io(20051): audio_device_generic.cc: (line 65): SetPlayoutDevice: Not supported on this platform
I/agora.io(20051): audio_device_impl.cc: (line 493): InitSpeaker
I/agora.io(20051): audio_device_template.h: (line 129): InitSpeaker
I/agora.io(20051): audio_device_impl.cc: (line 770): StereoPlayoutIsAvailable
I/agora.io(20051): audio_device_template.h: (line 176): StereoPlayoutIsAvailable
I/agora.io(20051): audio_device_impl.cc: (line 781): output: 1
I/agora.io(20051): audio_device_impl.cc: (line 786): SetStereoPlayout(1)
I/agora.io(20051): audio_device_template.h: (line 182): SetStereoPlayout
I/agora.io(20051): audio_device_buffer.cc: (line 267): SetPlayoutChannels(2)
I/agora.io(20051): audio_device_impl.cc: (line 889): SetRecordingDevice( device_index_: 0)
E/agora.io(20051): audio_device_generic.cc: (line 71): SetRecordingDevice: Not supported on this platform
I/agora.io(20051): audio_device_impl.cc: (line 501): InitMicrophone
I/agora.io(20051): audio_device_template.h: (line 139): InitMicrophone
I/agora.io(20051): audio_device_impl.cc: (line 718): StereoRecordingIsAvailable
I/agora.io(20051): audio_device_template.h: (line 197): StereoRecordingIsAvailable
I/agora.io(20051): audio_device_impl.cc: (line 729): output: 0
I/agora.io(20051): audio_device_impl.cc: (line 734): SetStereoRecording(0)
I/agora.io(20051): audio_device_template.h: (line 203): SetStereoRecording
I/agora.io(20051): audio_device_buffer.cc: (line 260): SetRecordingChannels(1)
I/agora.io(20051): [ATWT]: set enable need more play data, id: real_adm_audio_transport_wrapper_tee, enable: 1 
I/agora.io(20051): [ATWT]: set enable need more play data, id: fake_adm_audio_transport_wrapper_tee, enable: 0 
I/agora.io(20051): fixed_gain_controller.cc:59 - Gain to apply: 0 db.
I/agora.io(20051): [AFC]: AudioFilterCompositeWithExtension name:remote_mixed_playback, extensionTypeSet size:1
I/agora.io(20051): [AFC]: create extension audio filters, extensionTypeSet size:1
I/agora.io(20051): [AFC]: create extension audio filter, extension type:10006 extension_list size:1
I/agora.io(20051): [AFC]: create extension audio filter, extension type:10006 internal_id:agora.builtin%%headphone_equalizer_remote_mixed_playback filter:headphone_equalizer_remote_mixed_playback auto_enable:0
I/agora.io(20051): [AFC]: add extension audio filter:headphone_equalizer_remote_mixed_playback to filter composite:remote_mixed_playback
I/agora.io(20051): WebrtcAudioEngine: CreateTxMixer
W/agora.io(20051): set_priorities not supported!!
I/agora.io(20051): audio_processing_impl.cc:254 - [Default_APM] AudioProcessingImpl::ctor(0xB400006FBF737C60)
I/agora.io(20051): echo_cancellation_impl.cc:225 - EchoCancellationImpl::ctor(0xB400006EEE8CC8C0)
I/agora.io(20051): ains extension not enable
I/agora.io(20051): ains factory is nullptr
I/agora.io(20051): ains extension not enable
I/agora.io(20051): ains factory is nullptr
I/agora.io(20051): NSNG: route -1, delaymode 1, fftsize 512, postfiltermargin -1.000000, enhai 1.000000, enhsta 2.000000, stabound 0.050000, gainboost 2.000000, finalmask 0.030000,staStartupLong 125,staStartupShort 31,staQuantile 0.250000,staNoiseUpdateFactor 0.844900,staSpeechUpdateFactor 0.984000,staOverdrive 1.100000,ainsResetFrame 18750,ainsKillHighBand 1,vadThreshold 0.550000,mdThreshold 0.850000
I/agora.io(20051): NSNG: route -1, delaymode 1, fftsize 512, postfiltermargin -1.000000, enhai 1.000000, enhsta 2.000000, stabound 0.050000, gainboost 2.000000, finalmask 0.030000,staStartupLong 125,staStartupShort 31,staQuantile 0.250000,staNoiseUpdateFactor 0.844900,staSpeechUpdateFactor 0.984000,staOverdrive 1.100000,ainsResetFrame 18750,ainsKillHighBand 1,vadThreshold 0.550000,mdThreshold 0.850000
I/agora.io(20051): ains extension not enable
I/agora.io(20051): ains factory is nullptr
I/agora.io(20051): NSNG: route -1, delaymode 1, fftsize 512, postfiltermargin -1.000000, enhai 1.000000, enhsta 2.000000, stabound 0.050000, gainboost 2.000000, finalmask 0.030000,staStartupLong 125,staStartupShort 31,staQuantile 0.250000,staNoiseUpdateFactor 0.844900,staSpeechUpdateFactor 0.984000,staOverdrive 1.100000,ainsResetFrame 18750,ainsKillHighBand 1,vadThreshold 0.550000,mdThreshold 0.850000
I/agora.io(20051): audio_processing_impl.cc:280 - [Default_APM] Capture post processor activated: 0
I/agora.io(20051): Render pre processor activated: 0
I/agora.io(20051): ains extension not enable
I/agora.io(20051): ains factory is nullptr
I/agora.io(20051): NSNG: route -1, delaymode 1, fftsize 512, postfiltermargin -1.000000, enhai 1.000000, enhsta 2.000000, stabound 0.050000, gainboost 2.000000, finalmask 0.030000,staStartupLong 125,staStartupShort 31,staQuantile 0.250000,staNoiseUpdateFactor 0.844900,staSpeechUpdateFactor 0.984000,staOverdrive 1.100000,ainsResetFrame 18750,ainsKillHighBand 1,vadThreshold 0.550000,mdThreshold 0.850000
I/agora.io(20051): [Default_APM] [ANS CONFIG] ngkPostFilterMargin = -1
I/agora.io(20051): NSNG: route -1, delaymode 1, fftsize 512, postfiltermargin -0.010000, enhai 1.000000, enhsta 2.000000, stabound 0.050000, gainboost 2.000000, finalmask 0.030000,staStartupLong 125,staStartupShort 31,staQuantile 0.250000,staNoiseUpdateFactor 0.844900,staSpeechUpdateFactor 0.984000,staOverdrive 1.100000,ainsResetFrame 18750,ainsKillHighBand 1,vadThreshold 0.550000,mdThreshold 0.850000
I/agora.io(20051): [Default_APM] [ED CONFIG] howlingActivaty = 1
I/agora.io(20051): [Default_APM] [ED CONFIG] howlingLife = -1
I/agora.io(20051): [Default_APM] [ED CONFIG] howlingSuppression = 1
I/agora.io(20051): [Default_APM] [ED CONFIG] howlingBound = 10
I/agora.io(20051): [Default_APM] [ED CONFIG] howlingTrustfactor = 3
I/agora.io(20051): audio_processing_impl.cc:254 - [Default_Loopback_APM] AudioProcessingImpl::ctor(0xB400006FBF70F210)
I/agora.io(20051): echo_cancellation_impl.cc:225 - EchoCancellationImpl::ctor(0xB400006EEE79E670)
I/agora.io(20051): ains extension not enable
I/agora.io(20051): ains factory is nullptr
I/agora.io(20051): ains extension not enable
I/agora.io(20051): ains factory is nullptr
I/agora.io(20051): NSNG: route -1, delaymode 1, fftsize 512, postfiltermargin -1.000000, enhai 1.000000, enhsta 2.000000, stabound 0.050000, gainboost 2.000000, finalmask 0.030000,staStartupLong 125,staStartupShort 31,staQuantile 0.250000,staNoiseUpdateFactor 0.844900,staSpeechUpdateFactor 0.984000,staOverdrive 1.100000,ainsResetFrame 18750,ainsKillHighBand 1,vadThreshold 0.550000,mdThreshold 0.850000
I/agora.io(20051): NSNG: route -1, delaymode 1, fftsize 512, postfiltermargin -1.000000, enhai 1.000000, enhsta 2.000000, stabound 0.050000, gainboost 2.000000, finalmask 0.030000,staStartupLong 125,staStartupShort 31,staQuantile 0.250000,staNoiseUpdateFactor 0.844900,staSpeechUpdateFactor 0.984000,staOverdrive 1.100000,ainsResetFrame 18750,ainsKillHighBand 1,vadThreshold 0.550000,mdThreshold 0.850000
I/agora.io(20051): ains extension not enable
I/agora.io(20051): ains factory is nullptr
I/agora.io(20051): NSNG: route -1, delaymode 1, fftsize 512, postfiltermargin -1.000000, enhai 1.000000, enhsta 2.000000, stabound 0.050000, gainboost 2.000000, finalmask 0.030000,staStartupLong 125,staStartupShort 31,staQuantile 0.250000,staNoiseUpdateFactor 0.844900,staSpeechUpdateFactor 0.984000,staOverdrive 1.100000,ainsResetFrame 18750,ainsKillHighBand 1,vadThreshold 0.550000,mdThreshold 0.850000
I/agora.io(20051): audio_processing_impl.cc:280 - [Default_Loopback_APM] Capture post processor activated: 0
I/agora.io(20051): Render pre processor activated: 0
I/agora.io(20051): ains extension not enable
I/agora.io(20051): ains factory is nullptr
I/agora.io(20051): NSNG: route -1, delaymode 1, fftsize 512, postfiltermargin -1.000000, enhai 1.000000, enhsta 2.000000, stabound 0.050000, gainboost 2.000000, finalmask 0.030000,staStartupLong 125,staStartupShort 31,staQuantile 0.250000,staNoiseUpdateFactor 0.844900,staSpeechUpdateFactor 0.984000,staOverdrive 1.100000,ainsResetFrame 18750,ainsKillHighBand 1,vadThreshold 0.550000,mdThreshold 0.850000
I/agora.io(20051): [Default_Loopback_APM] [ANS CONFIG] ngkPostFilterMargin = -1
I/agora.io(20051): NSNG: route -1, delaymode 1, fftsize 512, postfiltermargin -0.010000, enhai 1.000000, enhsta 2.000000, stabound 0.050000, gainboost 2.000000, finalmask 0.030000,staStartupLong 125,staStartupShort 31,staQuantile 0.250000,staNoiseUpdateFactor 0.844900,staSpeechUpdateFactor 0.984000,staOverdrive 1.100000,ainsResetFrame 18750,ainsKillHighBand 1,vadThreshold 0.550000,mdThreshold 0.850000
I/agora.io(20051): [Default_Loopback_APM] [ED CONFIG] howlingActivaty = 1
I/agora.io(20051): [Default_Loopback_APM] [ED CONFIG] howlingLife = -1
I/agora.io(20051): [Default_Loopback_APM] [ED CONFIG] howlingSuppression = 1
I/agora.io(20051): [Default_Loopback_APM] [ED CONFIG] howlingBound = 10
I/agora.io(20051): [Default_Loopback_APM] [ED CONFIG] howlingTrustfactor = 3
I/agora.io(20051): audio_device_buffer.cc: (line 66): AudioDeviceBuffer::ctor
I/agora.io(20051): audio_device_buffer.cc: (line 212): SetRecordingSampleRate(48000)
I/agora.io(20051): audio_device_buffer.cc: (line 260): SetRecordingChannels(1)
I/flutter (20051): ROOM ID
I/flutter (20051): {"_id":"66017c76994815691d17d039","ownerId":{"_id":"645ab8923026853061c19cc6","lastName":"Cannes","mpesaNumber":"","bio":"🌈 BEST CANNES VINTAGE STORE.\n💥 MARCHANDISE DE QUALITÉ.\n🌸 POPUP FRIENDLY.\n\n🔥 IG: Centralfripe.\n","userName":"centralfripe","profilePhoto":"https://firebasestorage.googleapis.com/v0/b/popupnow-8db52.appspot.com/o/user%2Fdisplay_picture%2F645ab8923026853061c19cc6?alt=media&token=75754ee1-78e7-4111-b094-2e78a2f64f1f","tokshows":18,"stripeToken":"","followersCount":0,"followers":["64611e79174f2802edc32dbd","64621473845ac525805d75e3","64632af4845ac525805da955","6460d91d174f2802edc303b3","6460c53826d083321da05ecd","645f5ff53026853061c1eaa3","645f87294ceb86121af463e3","645f64bf3026853061c1ed4e","642300abc6324469901ac165","64659179845ac525805def33","64661c62845ac525805dfbb2","64666b4e845ac525805e0fc2","6422d18cc6324469901ab98a","6467e6f7845ac525805e3285","6460d8d8174f2802edc3039d","63c6c1b8515b42410031fbc2","648245667a279a04a54b2722","645fcd186de9ba20c1b632e0","6482ff9a5889577421
W/agora.io(20051): set_priorities not supported!!
I/agora.io(20051): audio_transport_impl.cc: (line 59): SetPlaybackDataExtraProcessing processing = 0xb400006e8b7ecf18.
I/agora.io(20051): audio_transport_impl.cc: (line 52): SetRecordedDataExtraProcessing processing = 0xb400006e8b7cdad8.
I/agora.io(20051): uplink_audio_processing_proxy.cc: (line 337): SetRecordedDataExtraProcessing processing = 0xb400006e8b7cdad8.
I/agora.io(20051): audio_transport_impl.cc: (line 65): SetRecordedDataExtraProcessingEnable enable = 1.
I/agora.io(20051): uplink_audio_processing_proxy.cc: (line 345): SetRecordedDataExtraProcessingEnable enable = 1.
I/agora.io(20051): audio_device_impl.cc: (line 1233): RegisterAudioCallback
I/agora.io(20051): audio_device_buffer.cc: (line 92): RegisterAudioCallback
I/agora.io(20051): audio options factoryname ==default: vector===6
I/agora.io(20051): [AOF]: Current chatModeIsEnabled: 0,has_remote_peers 0,adm_has_recorded 0, channel_profile -1
W/agora.io(20051): [AOF]: Restart adm for recording channels changed, 1 - > 2
W/agora.io(20051): [AOE]: update hardware ear monitor to: 1
W/agora.io(20051): [AOF]: enable preferred aec delay: 1
I/agora.io(20051): [AOF]: ADM will be restarted
I/agora.io(20051): audio_device_impl.cc: (line 354): Reconfigure
I/agora.io(20051): audio_device_impl.cc: (line 362): Reconfigure audio_layer = 6, audio_layer_ = 6, active audio layer = 6
W/agora.io(20051): audio_device_impl.cc: (line 370): Reconfigure with same audio layer.
I/agora.io(20051): audio_device_impl.cc: (line 1247): RegisterAudioDeviceEventObserver
I/agora.io(20051): audio_device_generic_worker_wrapper.cc: (line 1166): RegisterAudioDeviceEventObserver
I/agora.io(20051): audio_device_template.h: (line 258): RegisterAudioDeviceEventObserver observer 0xb400006e6162f8f8
I/agora.io(20051): [AOE]: EnableAudioChatMode: 0
I/agora.io(20051): audio_device_impl.cc: (line 1327): EnableAudioChatMode(0)
I/agora.io(20051): audio_device_impl.cc: (line 1331): output: 0
I/agora.io(20051): [AOE]: set adm input params, audioSource: 1, inputSampleRate: 48000, inputChannels: 2, enableEstimatedDeviceDelay: 1, enableBuiltin3a: 0, extraRecordLatency: 0
I/agora.io(20051): [AOE]: update input sampleRate 48000 
I/agora.io(20051): audio_device_impl.cc: (line 1286): SetRecordParameters
W/agora.io(20051): audio_device_generic_worker_wrapper.cc: (line 856): SetRecordParameters(0x6d0ee79728)
I/agora.io(20051): audio_device_impl.cc: (line 1293): output: 0
I/agora.io(20051): [AOE]: set adm output params, playoutBufSizeFactor: 100, ontputSampleRate: 48000, outputChannels: 2, enableEstimatedDeviceDelay: 1, enableLowlatencyPlayout: 0, extraPlayoutLatency: 0
I/agora.io(20051): audio_device_impl.cc: (line 1298): SetPlayoutParameters
W/agora.io(20051): audio_device_generic_worker_wrapper.cc: (line 900): SetPlayoutParameters(0x6d0ee79730)
I/agora.io(20051): audio_device_impl.cc: (line 1305): output: 0
I/agora.io(20051): [AOF]: enable_aec: 0, enable_agc: 0, enable_ns: 0, enable_md: 0
W/agora.io(20051): [AOF]: Reset apm capture state as adm restarted or route changed
I/agora.io(20051): audio_processing_impl.cc:1472 - [Default_APM] reset_apm_capture_state(0xB400006FBF737C60)
I/agora.io(20051): audio_processing_impl.cc:1472 - [Default_Loopback_APM] reset_apm_capture_state(0xB400006FBF70F210)
I/agora.io(20051): [Default_APM] [AEC CONFIG] aec_config.routing = 3
I/agora.io(20051): [Default_APM] [AEC CONFIG] aec_config.pure_aec_processing = 0
I/agora.io(20051): [Default_APM] [AEC CONFIG] aec_config.ainlp_perf_profile_method = 1
I/agora.io(20051): [Default_APM] [AEC CONFIG] aec_config.ainlp_reset_period_in_ms = 6400
I/agora.io(20051): audio_device_template.h: (line 241): EnableAudioChatMode
I/agora.io(20051): [Default_APM] [AEC CONFIG] aec_config.ainlp_reset_ratio = 90
I/agora.io(20051): [Default_APM] [AEC CONFIG] aec_config.ainlp_fallback_period_in_micro_second = 8000
I/agora.io(20051): [AOF]: mic selection: 0
V/AudioManager(20051): getMode...
I/agora.io(20051): uplink_audio_processing_proxy.cc: (line 324): EnableMicSelection enable = 0.
W/agora.io(20051): apm_ains_mode already set to -1
I/agora.io(20051): [Default_APM] [HPF CONFIG] high_pass_filter.enabled = 1
I/agora.io(20051): uplink_audio_processing_proxy.cc: (line 330): EnableAnalogAGC enable = 0.
I/agora.io(20051): WebRtcAudioManager: set audio mode to: MODE_NORMAL curr: MODE_NORMAL
I/AudioManager(20051): setMode 0
I/agora.io(20051): audio_device_template.cc: (line 287): SetRecordParameters
W/agora.io(20051): opensles_recorder.cc: (line 253): [OpenslAdm] SetRecordParameters sample_rate_hz_ 48000
W/agora.io(20051): opensles_recorder.cc: (line 257): [OpenslAdm] SetRecordParameters channels_ 2
W/agora.io(20051): opensles_recorder.cc: (line 261): [OpenslAdm] SetRecordParameters audio_source_ 1
W/agora.io(20051): opensles_recorder.cc: (line 266): [OpenslAdm] SetRecordParameters enable_lowlatency_capture_ 0
W/agora.io(20051): opensles_recorder.cc: (line 273): [OpenslAdm] SetRecordParameters opensl_input_bufs_ 2
W/agora.io(20051): opensles_recorder.cc: (line 278): [OpenslAdm] SetRecordParameters extra_record_latency_ 0
I/agora.io(20051): audio_device_template.cc: (line 301): SetPlayoutParameters
W/agora.io(20051): opensles_player.cc: (line 272): [OpenslAdm] SetPlayoutParameters sample_rate_hz_ 48000
W/agora.io(20051): opensles_player.cc: (line 276): [OpenslAdm] SetPlayoutParameters channels_ 2
W/agora.io(20051): opensles_player.cc: (line 281): [OpenslAdm] SetPlayoutParameters playout_bufsize_factor_ 1
W/agora.io(20051): opensles_player.cc: (line 289): [OpenslAdm] SetPlayoutParameters opensl_output_bufs_ 2
W/agora.io(20051): opensles_player.cc: (line 294): [OpenslAdm] SetPlayoutParameters extra_playout_latency_0
W/agora.io(20051): [BW]: (long time task) [ExternalThread ==> AgMajor] agora_service_impl.cpp:480: pickup time 0, execute time 122, overall time 122
I/agora.io(20051): [SHIM] IsCryptoEnabled() = true
I/agora.io(20051): create dangling client connection 0xb400006f097b7c70
I/agora.io(20051): [SHIM] IsCryptoEnabled() = true
I/agora.io(20051): [remote:50.******.121:8443] start 0th connect, send client hello 15459640|syn, early data: 0, tags: CPTO:4e4f4e432000...(129), CID: 15821275329726604558
I/agora.io(20051): [SHIM] IsCryptoEnabled() = true
I/agora.io(20051): create dangling client connection 0xb400006f097c2030
I/agora.io(20051): [SHIM] IsCryptoEnabled() = true
I/agora.io(20051): [remote:35.******.187:8443] start 0th connect, send client hello 7355522|syn, early data: 0, tags: CPTO:4e4f4e432000...(129), CID: 1182125391790505932
I/agora.io(20051): [SHIM] IsCryptoEnabled() = true
I/agora.io(20051): create dangling client connection 0xb400006f09776ca0
I/agora.io(20051): [SHIM] IsCryptoEnabled() = true
I/agora.io(20051): [remote:199.******.132:8443] start 0th connect, send client hello 1951105|syn, early data: 0, tags: CPTO:4e4f4e432000...(129), CID: 14747082687438987783
I/agora.io(20051): [SHIM] IsCryptoEnabled() = true
I/agora.io(20051): create dangling client connection 0xb400006f0985d100
I/agora.io(20051): [SHIM] IsCryptoEnabled() = true
I/agora.io(20051): [SHIM] IsCryptoEnabled() = true
I/agora.io(20051): [remote:50.******.121:8443] start 0th connect, send client hello 14807814|syn, early data: 0, tags: SNI :35302d31372d...(27), PDMD:, CPTO:4e4f4e432000...(129), CCRT:fa110cc04c5f...(24), CID: 12515453155964879063
I/agora.io(20051): [SHIM] IsCryptoEnabled() = true
I/agora.io(20051): create dangling client connection 0xb400006f09687d10
I/agora.io(20051): [SHIM] IsCryptoEnabled() = true
I/agora.io(20051): [SHIM] IsCryptoEnabled() = true
I/agora.io(20051): [remote:104.******.75:8130] start 0th connect, send client hello 14104016|syn, early data: 0, tags: SNI :3130342d3136...(28), NELD:, PDMD:, CPTO:4e4f4e432000...(129), CCRT:fa110cc04c5f...(24), CID: 7217430612599529593
I/agora.io(20051): RtcAndroidBridge notifyNetworkChange
W/agora.io(20051): [BW]: (long time task) [ExternalThread --> AgMajor] android_rtc_bridge.cpp:183: pickup time 87, execute time 0, overall time 87
I/agora.io(20051): [dns] parsed ip 132.226.196.226
I/agora.io(20051): [dns] parsed ip 104.166.142.155
I/agora.io(20051): [dns] parsed ip 132.145.29.243
I/agora.io(20051): [dns] parsed ip 104.166.161.67
I/agora.io(20051): [dns] parsed ip 128.14.55.182
I/agora.io(20051): [dns] parsed ip 98.98.144.123
I/agora.io(20051): [ap-base] OnParsedDns ap-tds-tls.agora.io with err 0, 132.******.226, 104.******.155, 132.******.243, 104.******.67, 128.******.182, 98.******.123, 
I/agora.io(20051): [ap-6][tds] client: OnSetDnsResult, will try to use DNS to connect
I/agora.io(20051): [dns] parsed ip 128.1.77.34
I/agora.io(20051): [dns] parsed ip 45.196.23.17
I/agora.io(20051): [dns] parsed ip 45.196.23.8
I/agora.io(20051): [ap-base] OnParsedDns ap1-tds.agora.io with err 0, 128.******.34, 45.******.17, 45.******.8, 
I/agora.io(20051): [ap-6][tds] client: OnSetDnsResult, will try to use DNS to connect
I/agora.io(20051): create session builder 0xb400006efb66c850
I/agora.io(20051): [ap-6][tds] send message to: 15.******.129:8443, with opid: 354974940, transport type = aut(5), send ts = 144218229
I/agora.io(20051): [ap-6][tds] client: OnSetDnsResult, will try to use DNS to connect
I/agora.io(20051): [dns] parsed ip 132.145.29.243
I/agora.io(20051): [dns] parsed ip 132.226.196.226
I/agora.io(20051): [dns] parsed ip 104.166.161.67
I/agora.io(20051): [dns] parsed ip 128.14.55.182
I/agora.io(20051): [dns] parsed ip 104.166.142.155
I/agora.io(20051): [dns] parsed ip 98.98.144.123
I/agora.io(20051): [ap-base] OnParsedDns ap2-tls.agora.io with err 0, 132.******.243, 132.******.226, 104.******.67, 128.******.182, 104.******.155, 98.******.123, 
I/agora.io(20051): [ap-5][report] client: OnSetDnsResult, will try to use DNS to connect
I/agora.io(20051): [dns] parsed ip 128.1.77.34
I/agora.io(20051): [dns] parsed ip 45.196.23.17
I/agora.io(20051): [dns] parsed ip 45.196.23.8
I/agora.io(20051): [ap-base] OnParsedDns ap1-tds.agora.io with err 0, 128.******.34, 45.******.17, 45.******.8, 
I/agora.io(20051): [dns] parsed ip 148.153.93.28
I/agora.io(20051): [dns] parsed ip 128.14.55.177
I/agora.io(20051): [dns] parsed ip 129.151.253.242
I/agora.io(20051): [dns] parsed ip 98.98.144.125
I/agora.io(20051): [dns] parsed ip 158.101.165.170
I/agora.io(20051): [dns] parsed ip 104.166.161.6
I/agora.io(20051): [ap-base] OnParsedDns ap2.agora.io with err 0, 148.******.28, 128.******.177, 129.******.242, 98.******.125, 158.******.170, 104.******.6, 
I/agora.io(20051): [ap-5][report] client: OnSetDnsResult, will try to use DNS to connect
I/agora.io(20051): create session builder 0xb400006efb66c1e0
I/agora.io(20051): [ap-5][report] send message to: 13.******.235:8443, with opid: 3086117710, transport type = aut(5), send ts = 144218229
I/agora.io(20051): [ap-5][report] client: OnSetDnsResult, will try to use DNS to connect
I/agora.io(20051): [ap-base] OnParsedDns ap-ipv6.agora.io with err 0, 2a05:******:178, 2a05:******:244, 
I/agora.io(20051): [ap-5][report] client: OnSetDnsResult, will try to use DNS to connect
I/agora.io(20051): create session builder 0xb400006efb752420
I/agora.io(20051): [ap-5][report] send message to: 13.******.196:8443, with opid: 3086117711, transport type = aut(5), send ts = 144218230
I/agora.io(20051): [ap-5][report] client: OnSetDnsResult, will try to use DNS to connect
I/agora.io(20051): [ap-base] OnParsedDns ap-ipv6.agora.io with err 0, 2a05:******:178, 2a05:******:244, 
I/agora.io(20051): [dns] parsed ip 132.145.29.243
I/agora.io(20051): [dns] parsed ip 132.226.196.226
I/agora.io(20051): [dns] parsed ip 104.166.161.67
I/agora.io(20051): [dns] parsed ip 128.14.55.182
I/agora.io(20051): [dns] parsed ip 104.166.142.155
I/agora.io(20051): [dns] parsed ip 98.98.144.123
I/agora.io(20051): [ap-base] OnParsedDns ap2-tls.agora.io with err 0, 132.******.243, 132.******.226, 104.******.67, 128.******.182, 104.******.155, 98.******.123, 
I/agora.io(20051): (00000006): AgoraService::createAudioDeviceManager(this:0xb400006ea7674250, void)
I/agora.io(20051): (00000007): AudioDeviceManagerImpl::setDefaultAudioRouting(this:0xb400006e5398f590, route:3)
I/agora.io(20051): [AudioRoute] User set default routing to:Speakerphone
I/agora.io(20051): (00000008):         AgoraService::setAudioSessionPreset(this:0xb400006ea7674250, scenario:0)
I/agora.io(20051): (00000009):         AgoraService::registerAgoraServiceObserver(this:0xb400006ea7674250, observer:0xb400006e6f72eab8)
I/agora.io(20051): [SHIM] IsCryptoEnabled() = true
I/agora.io(20051): create dangling client connection 0xb400006f097b01a0
I/agora.io(20051): [SHIM] IsCryptoEnabled() = true
I/agora.io(20051): [remote:15.******.129:8443] start 0th connect, send client hello 1740893|syn, early data: 0, tags: CPTO:4e4f4e432000...(129), CID: 15335171396456289018
I/agora.io(20051): [SHIM] IsCryptoEnabled() = true
I/agora.io(20051): create dangling client connection 0xb400006f0975e3a0
I/agora.io(20051): [SHIM] IsCryptoEnabled() = true
I/agora.io(20051): [SHIM] IsCryptoEnabled() = true
I/agora.io(20051): [remote:13.******.235:8443] start 0th connect, send client hello 10797697|syn, early data: 0, tags: SNI :31332d313234...(28), PDMD:, CPTO:4e4f4e432000...(129), CCRT:fa110cc04c5f...(24), CID: 1801768587248273
I/agora.io(20051): [SHIM] IsCryptoEnabled() = true
I/agora.io(20051): create dangling client connection 0xb400006f09737560
I/agora.io(20051): [SHIM] IsCryptoEnabled() = true
I/agora.io(20051): [SHIM] IsCryptoEnabled() = true
I/agora.io(20051): [remote:13.******.196:8443] start 0th connect, send client hello 15702351|syn, early data: 0, tags: SNI :31332d313237...(28), PDMD:, CPTO:4e4f4e432000...(129), CCRT:fa110cc04c5f...(24), CID: 5152955661114978863
I/agora.io(20051): [RTC]: No TDS value found for video.set_remote_video_stream_type
I/agora.io(20051): (00000010):         AgoraService::createMediaNodeFactory(this:0xb400006ea7674250, void)
I/agora.io(20051): [dns] parsed ip 104.166.161.75
I/agora.io(20051): [MPI]: AgoraMediaPlayer SDK ver 4.2.3 build 279679
I/agora.io(20051): (00000011): MediaPlayerImpl::initialize(this:0xb400006ec36f06d0, {"agora_service":"0xb400006ea7674250"})
I/agora.io(20051): (00000012):   AgoraService::createMediaNodeFactory(this:0xb400006ea7674250, void)
I/agora.io(20051): (00000013):   MediaNodeFactoryImpl::createMediaPlayerSource(this:0xb400006e61682690, void)
I/agora.io(20051): media_player_impl.cpp:502@MediaPlayerImpl|0xb400006ed1850168|mpk#0>> MediaPlayerImpl
I/agora.io(20051): media_reader_impl.cc:143@MediaReaderImpl|0xb400006ed180a6b0|mpk#0>> MediaReaderImpl
I/agora.io(20051): media_player_source_ffmpeg.cc:110@MediaPlayerSourceFfmpeg|0xb400006eee292d08|mpk#0>> MediaPlayerSourceFfmpeg
I/agora.io(20051): (00000014): MediaPlayerImpl::registerPlayerSourceObserver(this:0xb400006ed1850168, observer:0xb400006e8b74a3d0)
I/agora.io(20051): (00000015): MediaPlayerImpl::registerVideoFrameObserver(this:0xb400006ed1850168, observer:0xb400006e8b74a3d8)
I/agora.io(20051): (00000016): MediaPlayerImpl::registerAudioFrameObserver(this:0xb400006ed1850168, observer:0xb400006e8b74a3e0)
I/agora.io(20051): (00000017): MediaPlayerImpl::SetReportSender(this:0xb400006ed1850168, sender:0xb400006e8b81d810)
I/agora.io(20051): (00000018): AgoraService::createMediaNodeFactory(this:0xb400006ea7674250, void)
I/agora.io(20051): (00000019): MediaNodeFactoryImpl::createAudioPcmDataSender(this:0xb400006e61682690, void)
I/agora.io(20051): (00000020): MediaNodeFactoryImpl::createVideoFrameSender(this:0xb400006e61682690, void)
I/agora.io(20051): (00000021):   MediaPlayerSourceFFMpeg::registerPlayerSourceObserver(this:0xb400006e8b74a3d0, observer: 0xb400006ec36f06d8)
I/agora.io(20051): (00000022):   AgoraService::createMediaPlayerVideoTrack(this:0xb400006ea7674250, playerVideoSource:0xb400006e8b74a3e8)
I/agora.io(20051): (00000023):     MediaPlayerSourceFFMpeg::getVideoFrameSender(this:0xb400006e8b74a3d0, void)
I/agora.io(20051): ResourceManager:registerLocalVideoTrack, track_id 10
I/agora.io(20051): LocalVideoTrackYuvImpl: id 10 is created 
W/agora.io(20051): set_priorities not supported!!
W/agora.io(20051): set_priorities not supported!!
I/agora.io(20051): ExtensionControlImpl::Get Extension Control 0xb400006e7d78a450
I/agora.io(20051): ExtensionControlImpl::registerProvider agora_video_codecs_encoder_h265, 0xb400006e297bc180
I/agora.io(20051): VideoCodecProviderRegistry::addProvider agora_video_codecs_encoder_h265
I/agora.io(20051): ExtensionControlImpl::Get Extension Control 0xb400006e7d78a450
I/agora.io(20051): [Extension]: AgoraH265EncoderProvider set logctr 
I/agora.io(20051): [VW]: Construct watermark object, this: 0xb400006e7d79f950.
I/agora.io(20051): [VW]: Construct watermark object, this: 0xb400006e7d79b280.
W/agora.io(20051): get extension registry success
I/agora.io(20051): ExtensionControlImpl::Get Extension Control 0xb400006e7d78a450
I/agora.io(20051): [Extension]: facedetect: sdk setExtensionControl for provider
I/agora.io(20051): ExtensionControlImpl::Get Extension Control 0xb400006e7d78a450
I/agora.io(20051): ExtensionControlImpl::Get Extension Control 0xb400006e7d78a450
I/agora.io(20051): (00000024):     VideoFrameRotator::setOutputFormat(this:0xb400006e29764700, format:(width:960, height:540, fps:15, fixed:1))
I/agora.io(20051): [Extension]: segmentation: FDVideoFilter start
I/agora.io(20051): [LVT]: Load extension filters, size: 0
I/agora.io(20051): [LVT]: Set Default encoder configuration
I/agora.io(20051): [VNE]: no TDS value found for enable_hw_encoder
I/agora.io(20051): [VNE]: no TDS value found for che.hardware_encoding
I/agora.io(20051): [VNE]: no TDS value found for che.video.h264.hwenc
I/agora.io(20051): [VNE]: no TDS value found for low_stream_enable_hw_encoder
I/agora.io(20051): [VNE]: no TDS value found for enable_minor_stream_intra_request
I/agora.io(20051): [VNE]: no TDS value found for av_enc_video_enable_roi
I/agora.io(20051): [VNE]: not get TDS value found for rtc.video.force_hw_encoder 
I/agora.io(20051): [VNE]: TDS value found for fec_method : 0
I/agora.io(20051): [VNE]: no TDS value found for video_skip_enable
I/agora.io(20051): (00000025):     VideoFrameAdapter::setOutputFormat(this:0xb400006eb56a1e70, format:(width:960, height:540, fps:15))
I/agora.io(20051): (00000026):   LocalVideoTrackImpl::addRenderer(this:0xb400006efb6f8f00, videoRenderer:0xb400006e376f0250)
I/agora.io(20051): (00000027):     VideoFrameRotator::setOutputFormat(this:0xb400006e297c6020, format:(width:960, height:540, fps:15, fixed:1))
I/agora.io(20051): [video] VideoNodeRenderer Start
I/agora.io(20051): (00000028):   AgoraService::createMediaPlayerAudioTrack(this:0xb400006ea7674250, playerSource:0xb400006e8b74a3e8)
I/agora.io(20051): (00000029):     MediaPlayerSourceFFMpeg::getAudioPcmDataSender(this:0xb400006e8b74a3d0, void)
I/agora.io(20051): [AFC]: AudioFilterCompositeWithExtension name:pcm_source_composites, extensionTypeSet size:1
I/agora.io(20051): [AFC]: create extension audio filters, extensionTypeSet size:1
I/agora.io(20051): [AFC]: create extension audio filter, extension type:10003 extension_list size:3
I/agora.io(20051): [AFC]: create extension audio filter, extension type:10003 internal_id:agora.builtin%%sound_position_pcm filter:sound_position_pcm auto_enable:0
I/agora.io(20051): [AFC]: add extension audio filter:sound_position_pcm to filter composite:pcm_source_composites
I/agora.io(20051): [AFC]: create extension audio filter, extension type:10003 internal_id:agora.builtin%%pitch_pcm filter:pitch_pcm auto_enable:0
I/agora.io(20051): [AFC]: add extension audio filter:pitch_pcm to filter composite:pcm_source_composites
I/agora.io(20051): [AFC]: create extension audio filter, extension type:10003 internal_id:agora.builtin%%formant_pcm filter:formant_pcm auto_enable:0
I/agora.io(20051): [AFC]: add extension audio filter:formant_pcm to filter composite:pcm_source_composites
I/agora.io(20051): [AFC]: AudioFilterCompositeWithExtension name:pcm_source_sending_composites, extensionTypeSet size:1
I/agora.io(20051): [AFC]: create extension audio filters, extensionTypeSet size:1
I/agora.io(20051): [AFC]: create extension audio filter, extension type:10004 extension_list size:0
I/agora.io(20051): [AFC]: AudioFilterCompositeWithExtension name:pcm_source_local_playback_composites, extensionTypeSet size:1
I/agora.io(20051): [AFC]: create extension audio filters, extensionTypeSet size:1
I/agora.io(20051): [AFC]: create extension audio filter, extension type:10005 extension_list size:0
I/agora.io(20051): (00000030): MediaPlayerImpl::getMediaPlayerId(this:0xb400006ec36f06d0, {})
I/agora.io(20051): (00000031):   MediaPlayerSourceFFMpeg::getSourceId(this:0xb400006e8b74a3d0, void)
I/agora.io(20051): (00000032):         MediaPlayerImpl::getMediaPlayerId(this:0xb400006ec36f06d0, {})
I/agora.io(20051): [dns] parsed ip 148.153.93.28
I/agora.io(20051): [dns] parsed ip 128.14.55.177
I/agora.io(20051): [dns] parsed ip 129.151.253.242
I/agora.io(20051): [dns] parsed ip 98.98.144.125
I/agora.io(20051): [dns] parsed ip 158.101.165.170
I/agora.io(20051): [dns] parsed ip 104.166.161.6
I/agora.io(20051): [ap-base] OnParsedDns ap2.agora.io with err 0, 148.******.28, 128.******.177, 129.******.242, 98.******.125, 158.******.170, 104.******.6, 
I/agora.io(20051): (00000033): MediaPlayerSourceFFMpeg::getSourceId(this:0xb400006e8b74a3d0, void)
I/agora.io(20051): (00000034):         MediaPlayerImpl::registerPlayerSourceObserver(this:0xb400006ec36f06d0, {"observer":"0xb400006eb569e770"})
I/agora.io(20051): (00000035):         RhythmPlayerImpl::RhythmPlayerImpl(this:0xb400006ea76c69f0, void)
I/agora.io(20051): (00000036): AgoraService::createRtcConnectionEx(this:0xb400006ea7674250, cfg:(autoSubscribeAudio:1, autoSubscribeVideo:1, enableAudioRecordingOrPlayout:1maxSendBitrate:-1, minPort:0, maxPort:0,  clientRoleType:2, clientType:0, vosList.size:0), connId:0)
I/agora.io(20051): (00000037):   RtcConnectionImpl::initializeEx(this:0xb400006edf6ec050, serviceCfg:(enableAudioProcessor:1, enableAudioDevice:1, enableVideo:1, context:0x29c6), cfg:(autoSubscribeAudio:1, autoSubscribeVideo:1, enableAudioRecordingOrPlayout:1, maxSendBitrate:-1, minPort:0, maxPort:0, clientRoleType:2, clientType:0, channelProfile:1, vosList.size:0, recvType:(audio: 0, video: 0)))
I/agora.io(20051): update mtu, current mtu: 1200
I/agora.io(20051): [SHIM] CreateAp()
I/agora.io(20051): [ap-base] initialize ap list
I/agora.io(20051): [ap-base] append predefined ip: 123.******.221, 13.******.184, 3.******.239, 20.******.143, 18.******.59, 54.******.11, 18.******.64, 184.******.217, 168.******.216, 3.******.108, 15.******.208, 18.******.254, 54.******.178, 101.******.165, 52.******.111, 52.******.238, 3.******.253, 2600:******:217, 2406:******:64, 2406:******:253, 2408:******:affb, 2a05:******:239, 2406:******:60, 2406:******:108, 
I/agora.io(20051): [ap-base] append predefined ip: 50.******.121, 35.******.187, 199.******.132, 118.******.38, 54.******.72, 13.******.235, 23.******.152, 112.******.46, 52.******.59, 52.******.170, 13.******.196, 106.******.130, 3.******.78, 52.******.244, 15.******.129, 13.******.137, 47.******.93, 2408:******:546a, 2406:******:78, 2406:******:190, 2406:******:196, 2406:******:235, 2406:******:59, 2600:******:121, 2a05:******:244, 2406:******:129, 2a05:******:187, 2406:******:137, 2600:******:170, 2408:******:4d0d, 
I/agora.io(20051): [ap-base] append predefined ip: 50.******.121, 35.******.187, 199.******.132, 118.******.38, 54.******.72, 13.******.235, 23.******.152, 112.******.46, 52.******.59, 52.******.170, 13.******.196, 106.******.130, 3.******.78, 52.******.244, 15.******.129, 13.******.137, 47.******.93, 2408:******:546a, 2406:******:78, 2406:******:190, 2406:******:196, 2406:******:235, 2406:******:59, 2600:******:121, 2a05:******:244, 2406:******:129, 2a05:******:187, 2406:******:137, 2600:******:170, 2408:******:4d0d, 
I/agora.io(20051): [ap-base] queryDns ap2-tls.agora.io
I/agora.io(20051): [ap-base] queryDns ap2.agora.io
I/agora.io(20051): [ap-base] queryDns ap-ipv6.agora.io
I/agora.io(20051): [ap-6][tds] client: StopRequest

A full log is helpful for this case, but I would suggest you submit a new ticket to Agora Support, they may look into this issue more easily.

commented

Having the same issue. Broadcaster see his local preview and audience see his video if connected for the first time. But if audience try to disconnect and connect again, they join channel successfully, audio is working, but video don't.
I can't see specific logs except of too many this ones:
Access denied finding property "net.dns1"
Access denied finding property "net.dns2"
Access denied finding property "net.dns3"
Access denied finding property "net.dns4"
Encountered this after updating from 6.2.4 to 6.3.0. Downgrading did not help.

commented

Update: I removed agoraEngine.release() method after leaving channel and now everything is working fine. I believe it was problem of my implementation.

I also encountered the same problem, I have now downgraded back to 6.2.2

Have Fixed the problem

Each new user is assigned a 6-digit number for agoraUid, except that when we join the live the 6-digit number was generated again, so I created a condition that blocks the change of agoraUid so that it is unique , so I switched to version 6.2.3 and work now

Most of the time, the blank view is caused by the incorrect uid set, if you still face an error, please share the logs in the path

Here are the default log paths for different platforms:

Or feel free to submit a new ticket to Agora Support for further investigation.

Without additional information, we are unfortunately not sure how to resolve this issue. We are therefore reluctantly going to close this bug for now. If you find this problem please file a new issue with the same description, what happens, logs and the output. All system setups can be slightly different so it's always better to open new issues and reference the related ones. Thanks for your contribution.

This thread has been automatically locked since there has not been any recent activity after it was closed. If you are still experiencing a similar issue, please raise a new issue.