Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

invocation:_InvocationMirror called on createsession() #55

Closed
Bharavi26 opened this issue Dec 23, 2020 · 49 comments
Closed

invocation:_InvocationMirror called on createsession() #55

Bharavi26 opened this issue Dec 23, 2020 · 49 comments

Comments

@Bharavi26
Copy link

Bharavi26 commented Dec 23, 2020

conn
Specify the sample to which the issue belongs (use [x]):
[ ] P2P Call sample

Platform (use [x])
[ ] Flutter

Describe the bug:
await createSession(loginUser); generating error in background
because of this not able to get currentuser from CubeChatConnection.instance.currentUser its returning null

@TatankaConCube
Copy link
Contributor

can you reproduce the same issue on our sample? if 'yes', please specify steps to reproduce, it will help us to localize the problem

@Bharavi26
Copy link
Author

conn1
conn

@TatankaConCube sir thank you for response...
i tried manually to get user which is in concube database, suddenly not able to get that user...
createsession also working fine before 2-3 days...suddenly its generating err , when i debug then err goes to _InvocationMirror

@TatankaConCube
Copy link
Contributor

hello @Bharavi26, little request - please share code and logs in a text format instead of pictures.
About your issue - from your logs, I not completely understand which request do you do, please, share full logs with requests and responses, it will help us to understand which API you call and why you get errors.
Error 'Unauthorized' means that you try to create a session or do sign in with the wrong user data (e-mail or login and password) please, recheck this part of your code.

@Bharavi26
Copy link
Author

Bharavi26 commented Dec 25, 2020

` static LoginToCC(BuildContext context) async {
CubeSession ccsession;
print("==loginprocess");
if (CubeSessionManager.instance.isActiveSessionValid()) {
print("==loginprocess->1");
var user = CubeSessionManager.instance.activeSession.user;
print("==loginprocess->1.1 -> ${user.id}");
await LoginToCubeChat(context, user);
} else {
print("==loginprocess->2");
ccsession = await createSession();
print("==loginprocess->2***");
CubeUser checkUserExist = await GetCubeUserByLogin();
print("==loginprocess->2.3 ->${checkUserExist == null}");
if (checkUserExist == null) {
checkUserExist = await RegisterToCC();
print("==loginprocess->2.7");
}
print("==loginprocess->2.8");

  if(ccsession == null) {
    await createSession(checkUserExist).then((cubeSession) async {
      print("==loginprocess->2.9");
      await LoginToCubeChat(context, checkUserExist);
    }).catchError((error) {
      print("==loginprocess->2.10==${error.toString()}");
    });
  }else {
    print("==loginprocess->2.11==${checkUserExist.password}");
    if(checkUserExist.password == null || checkUserExist.password.trim().isEmpty)
      checkUserExist.password = Constant.ConnectyCube_DEFAULT_PASS;

    await signIn(checkUserExist);
    print("==loginprocess->2.12==");
    await LoginToCubeChat(context, checkUserExist);
  }
}

}`

I/flutter (27680): ==loginprocess
I/flutter (27680): ==loginprocess->1
E/flutter (27680): [ERROR:flutter/lib/ui/ui_dart_state.cc(177)] Unhandled Exception: NoSuchMethodError: The getter 'id' was called on null.
E/flutter (27680): Receiver: null
E/flutter (27680): Tried calling: id

var user = CubeSessionManager.instance.activeSession.user;
activesession returning null user

if (CubeSessionManager.instance.isActiveSessionValid()) {
print("==loginprocess->1");
var user = CubeSessionManager.instance.activeSession.user;
print("==loginprocess->1.1 -> ${user.id}");
await LoginToCubeChat(context, user);
}

@Bharavi26
Copy link
Author

Bharavi26 commented Dec 25, 2020

sometimes this type of err also gen

[log] <stream:features><sm xmlns="urn:xmpp:sm:3"/><mechanisms xmlns="urn:ietf:params:xml:ns:xmpp-sasl"><mechanism>PLAIN</mechanism><mechanism>ANONYMOUS</mechanism><mechanism>PLAIN_FAST</mechanism></mechanisms><ver xmlns="urn:xmpp:features:rosterver"/><compression xmlns="http://jabber.org/features/compress"><method>zlib</method></compression></stream:features> [log] D/[ConnectionNegotiatorManager]: Negotiating features E/flutter (32713): [ERROR:flutter/lib/ui/ui_dart_state.cc(177)] Unhandled Exception: Invalid argument(s) [log] D/[ConnectionNegotiatorManager]: Found matching negotiator true E/flutter (32713): #0 _StringBase.+ (dart:core-patch/string_patch.dart:267:57) E/flutter (32713): #1 PlainSaslHandler.sendPlainAuthMessage (package:xmpp_stone/src/features/sasl/PlainSaslHandler.dart:42:57) E/flutter (32713): #2 PlainSaslHandler.start (package:xmpp_stone/src/features/sasl/PlainSaslHandler.dart:25:5) E/flutter (32713): #3 SaslAuthenticationFeature._process (package:xmpp_stone/src/features/sasl/SaslAuthenticationFeature.dart:64:19) E/flutter (32713): #4 SaslAuthenticationFeature.negotiate (package:xmpp_stone/src/features/sasl/SaslAuthenticationFeature.dart:38:7) E/flutter (32713): #5 ConnectionNegotiatorManager.negotiateNextFeature (package:xmpp_stone/src/features/ConnectionNegotatiorManager.dart:83:24) E/flutter (32713): #6 ConnectionNegotiatorManager.negotiateFeatureList (package:xmpp_stone/src/features/ConnectionNegotatiorManager.dart:65:5) E/flutter (32713): #7 Connection.handleResponse.<anonymous closure> (package:xmpp_stone/src/Connection.dart:311:43) E/flutter (32713): #8 Iterable.forEach (dart:core/iterable.dart:283:30) E/flutter (32713): #9 Connection.handleResponse (package:xmpp_stone/src/Connection.dart:310:12) E/flutter (32713): #10 _rootRunUnary (dart:async/zone.dart:1198:47) E/flutter (32713): #11 _CustomZone.runUnary (dart:async/zone.dart:1100:19) E/flutter (32713): #12 _CustomZone.runUnaryGuarded (dart:async/zone.dart:1005:7) E/flutter (32713): #13 _BufferingStreamSubscription._sendData (dart:async/stream_impl.dart:357:11) E/flutter (32713): #14 _BufferingStreamSubscription._add (dart:async/stream_impl.dart:285:7) E/flutter (32713): #15 _ForwardingStreamSubscription._add (dart:async/stream_pipe.dart:127:11) E/flutter (32713): #16 _MapStream._handleData (dart:async/stream_pipe.dart:224:10) E/flutter (32713): #17 _ForwardingStreamSubscription._handleData (dart:async/stream_pipe.dart:157:13) E/flutter (32713): #18 _rootRunUnary (dart:async/zone.dart:1198:47) E/flutter (32713): #19 _CustomZone.runUnary (dart:async/zone.dart:1100:19) E/flutter (32713): #20 _CustomZone.runUnaryGuarded (dart:async/zone.dart:1005:7) E/flutter (32713): #21 _BufferingStreamSubscription._sendData (dart:async/stream_impl.dart:357:11) E/flutter (32713): #22 _BufferingStreamSubscription._add (dart:async/stream_impl.dart:285:7) E/flutter (32713): #23 _SinkTransformerStreamSubscription._add (dart:async/stream_transformers.dart:69:11) E/flutter (32713): #24 _EventSinkWrapper.add (dart:async/stream_transformers.dart:15:11) E/flutter (32713): #25 _StringAdapterSink.add (dart:convert/string_conversion.dart:238:11) E/flutter (32713): #26 _StringAdapterSink.addSlice (dart:convert/string_conversion.dart:243:7) E/flutter (32713): #27 _Utf8ConversionSink.addSlice (dart:convert/string_conversion.dart:317:20) E/flutter (32713): #28 _Utf8ConversionSink.add (dart:convert/string_conversion.dart:310:5) E/flutter (32713): #29 _ConverterStreamEventSink.add (dart:convert/chunked_conversion.dart:72:18) E/flutter (32713): #30 _SinkTransformerStreamSubscription._handleData (dart:async/stream_transformers.dart:121:24) E/flutter (32713): #31 _rootRunUnary (dart:async/zone.dart:1198:47) E/flutter (32713): #32 _CustomZone.runUnary (dart:async/zone.dart:1100:19) E/flutter (32713): #33 _CustomZone.runUnaryGuarded (dart:async/zone.dart:1005:7) E/flutter (32713): #34 CastStreamSubscription._onData (dart:_internal/async_cast.dart:85:11) E/flutter (32713): #35 _rootRunUnary (dart:async/zone.dart:1198:47) E/flutter (32713): #36 _CustomZone.runUnary (dart:async/zone.dart:1100:19) E/flutter (32713): #37 _CustomZone.runUnaryGuarded (dart:async/zone.dart:1005:7) E/flutter (32713): #38 _BufferingStreamSubscription._sendData (dart:async/stream_impl.dart:357:11) E/flutter (32713): #39 _BufferingStreamSubscription._add (dart:async/stream_impl.dart:285:7) E/flutter (32713): #40 _SyncStreamControllerDispatch._sendData (dart:async/stream_controller.dart:808:19) E/flutter (32713): #41 _StreamController._add (dart:async/stream_controller.dart:682:7) E/flutter (32713): #42 _StreamController.add (dart:async/stream_controller.dart:624:5) E/flutter (32713): #43 _Socket._onData (dart:io-patch/socket_patch.dart:2044:41) E/flutter (32713): #44 _rootRunUnary (dart:async/zone.dart:1198:47) E/flutter (32713): #45 _CustomZone.runUnary (dart:async/zone.dart:1100:19) E/flutter (32713): #46 _CustomZone.runUnaryGuarded (dart:async/zone.dart:1005:7) E/flutter (32713): #47 _BufferingStreamSubscription._sendData (dart:async/stream_impl.dart:357:11) E/flutter (32713): #48 _BufferingStreamSubscription._add (dart:async/stream_impl.dart:285:7) E/flutter (32713): #49 _SyncStreamControllerDispatch._sendData (dart:async/stream_controller.dart:808:19) E/flutter (32713): #50 _StreamController._add (dart:async/str I/flutter (32713): CacheManager: Failed to download file from test.jpg with error: I/flutter (32713): Connection closed before full header was received W/pool-14-thread-(32713): type=1400 audit(0.0:808179): avc: denied { search } for name="bbkcore" dev="sda17" ino=674 scontext=u:r:untrusted_app:s0:c234,c257,c512,c768 tcontext=u:object_r:vivo_data_file:s0 tclass=dir permissive=0 [log] ---Xmpp Receiving:--- [log] </stream:stream> [log] D/[Connection]: State: XmppConnectionState.Closing I/flutter (32713): CB-SDK: CubeChatConnection: Chat connection Closing [log] D/[Connection]: Handle secured connection done [log] D/[Connection]: State: XmppConnectionState.Closed I/flutter (32713): CB-SDK: CubeChatConnection: Chat connection Closed E/flutter (32713): [ERROR:flutter/lib/ui/ui_dart_state.cc(177)] Unhandled Exception: SocketException: OS Error: Broken pipe, errno = 32, address = chat.connectycube.com, port = 38810 E/flutter (32713):

@TatankaConCube
Copy link
Contributor

The checking CubeSessionManager.instance.isActiveSessionValid() returns true if you have valid session, but it not guarantees that you have session with user. See our documentation about types of sessions.

About the last log - it has the unreadable format((( please, share logs via https://gist.github.com/ (just copy from flutter console and past there)

@Bharavi26
Copy link
Author

Bharavi26 commented Dec 29, 2020

@TatankaConCube sir thank you for response.
i have solved that issue.

But facing this issue sometimes , opponent render not displaying.
can you please help me for that ?

when opponent screen not rendering receiving this log

I/org.webrtc.Logging(28658): EglRenderer: Releasing. I/org.webrtc.Logging(28658): GlShader: Deleting shader. I/org.webrtc.Logging(28658): EglRenderer: eglBase detach and release. D/Surface (28658): Surface::disconnect(this=0x7f5fb5c000,api=1) I/BufferQueueProducer(28658): [SurfaceTexture-0-28658-19](this:0x7f4c5fa400,id:19,api:1,p:-1,c:28658) disconnect(P): api 1 I/BufferQueueConsumer(28658): [SurfaceTexture-0-28658-19](this:0x7f4c5fa400,id:19,api:1,p:-1,c:28658) getReleasedBuffers: returning mask 0xffffffffffffffff D/GraphicBuffer(28658): unregister, handle(0x7f491693c0) (w:540 h:960 s:544 f:0x2 u:0x000300) I/[MALI][Gralloc](28658): [-]r_hnd(0x7f491693c0), client(109), share_fd(261) D/GraphicBuffer(28658): unregister, handle(0x7f49169320) (w:540 h:960 s:544 f:0x2 u:0x000300) I/[MALI][Gralloc](28658): [-]r_hnd(0x7f49169320), client(109), share_fd(239) D/GraphicBuffer(28658): unregister, handle(0x7f461907c0) (w:360 h:640 s:368 f:0x2 u:0x000300) I/[MALI][Gralloc](28658): [-]r_hnd(0x7f461907c0), client(109), share_fd(259) D/GraphicBuffer(28658): unregister, handle(0x7f49169500) (w:360 h:640 s:368 f:0x2 u:0x000300) I/[MALI][Gralloc](28658): [-]r_hnd(0x7f49169500), client(109), share_fd(241) D/Surface (28658): Surface::disconnect(this=0x7f5fb5c000,api=1) I/BufferQueueProducer(28658): [SurfaceTexture-0-28658-19](this:0x7f4c5fa400,id:19,api:1,p:-1,c:28658) disconnect(P): api 1 I/org.webrtc.Logging(28658): EglRenderer: Quitting render thread. I/org.webrtc.Logging(28658): EglRenderer: Releasing done. I/BufferQueueConsumer(28658): [SurfaceTexture-0-28658-19](this:0x7f4c5fa400,id:19,api:1,p:-1,c:-1) disconnect(C) D/GraphicBuffer(28658): unregister, handle(0x7f49169460) (w:360 h:640 s:368 f:0x2 u:0x000300) I/[MALI][Gralloc](28658): [-]r_hnd(0x7f49169460), client(109), share_fd(264) I/org.webrtc.Logging(28658): EglRenderer: Releasing. I/org.webrtc.Logging(28658): EglRenderer: eglBase detach and release. D/Surface (28658): Surface::disconnect(this=0x7f5fb5ea00,api=1) I/BufferQueueProducer(28658): [SurfaceTexture-0-28658-20](this:0x7f4d569400,id:20,api:1,p:-1,c:28658) disconnect(P): api 1 I/BufferQueueConsumer(28658): [SurfaceTexture-0-28658-20](this:0x7f4d569400,id:20,api:1,p:-1,c:28658) getReleasedBuffers: returning mask 0xffffffffffffffff D/Surface (28658): Surface::disconnect(this=0x7f5fb5ea00,api=1) I/BufferQueueProducer(28658): [SurfaceTexture-0-28658-20](this:0x7f4d569400,id:20,api:1,p:-1,c:28658) disconnect(P): api 1 I/org.webrtc.Logging(28658): EglRenderer: Quitting render thread. I/org.webrtc.Logging(28658): EglRenderer: Releasing done. I/BufferQueueConsumer(28658): [SurfaceTexture-0-28658-20](this:0x7f4d569400,id:20,api:1,p:-1,c:-1) disconnect(C)

===================

I/BufferQueueProducer(28658): SurfaceTexture-13-28658-31 queueBuffer: slot 0 is dropped, handle=0x7f49169000
I/BufferQueueProducer(28658): SurfaceTexture-13-28658-31 queueBuffer: slot 1 is dropped, handle=0x7f4618fc80
I/CameraFramework(28658): handleMessage: 16
I/BufferQueueProducer(28658): SurfaceTexture-13-28658-31 queueBuffer: slot 2 is dropped, handle=0x7f491696e0
D/AudioTrack(28658): write: userSize = 960, blocking = 1
D/AudioTrack(28658): write: userSize = 960, blocking = 1
D/AudioTrack(28658): write: userSize = 960, blocking = 1
D/AudioTrack(28658): write: userSize = 960, blocking = 1
D/AudioTrack(28658): write: userSize = 960, blocking = 1
D/AudioTrack(28658): write: userSize = 960, blocking = 1
I/CameraFramework(28658): handleMessage: 16
I/BufferQueueProducer(28658): SurfaceTexture-13-28658-31 queueBuffer: slot 3 is dropped, handle=0x7f49a8da40
I/CameraFramework(28658): handleMessage: 16
D/AudioTrack(28658): write: userSize = 960, blocking = 1
D/AudioTrack(28658): write: userSize = 960, blocking = 1
D/AudioTrack(28658): write: userSize = 960, blocking = 1
D/AudioTrack(28658): write: userSize = 960, blocking = 1
D/AudioTrack(28658): write: userSize = 960, blocking = 1
D/AudioTrack(28658): write: userSize = 960, blocking = 1

@Bharavi26
Copy link
Author

Bharavi26 commented Dec 29, 2020

this thing is happening in demo also, i checked,
video link
https://drive.google.com/file/d/18psEd6QUfLYma9T3VmsLuqpAqsV4xTjZ/view?usp=sharing

steps for this flow in demo

  1. login in one device. (like with user1)

  2. call to user2

  3. open app in other device and login with user2

  4. after login as soon as incoming screen apper because we are already calling from user1 from another device

  5. after accepting call from user2

getting blank screen of opponent user in both device (call screen)

@TatankaConCube
Copy link
Contributor

@Bharavi26 thank you for reporting this issue, we will investigate it

@Bharavi26
Copy link
Author

Bharavi26 commented Dec 29, 2020

@TatankaConCube thank you for your response,
please check video which i attached here by link

i am waiting for your response related to this flow, please inform me whenever your investigation done on this,
because i am stuck on this and i have to complete that ASAP.

thank you

@TatankaConCube
Copy link
Contributor

@Bharavi26 can you please provide the full log from the flutter console from the caller side? Please collect the full log from starting a call to ending a call without any filters. Please use https://gist.github.com/ for log sharing.

@TatankaConCube
Copy link
Contributor

@Bharavi26 one more question - did you provide all required permissions (camera, mic) on the receiver side?

@Bharavi26
Copy link
Author

Bharavi26 commented Dec 29, 2020

yes sir i added all permission
and demo i run was downloaded which provided in doc of connectycube,

sir it is working perfactly, when caller call after login done on other user,
this situation occur whenever caller call while other user is not logedin and as soon as other user login and receive incoming call

@Bharavi26
Copy link
Author

@TatankaConCube sir,
caller and receiver log files

callerlog.txt
receiverlog.txt

@TatankaConCube
Copy link
Contributor

@Bharavi26 please, use the latest version of our SDK (^1.1.0)
And, please, recollect logs from the receiver side, because in the provided logs I can't find signaling messages, which we send via XMPP connection.
Do I correctly understand, you provided logs during getting the error?

@Bharavi26
Copy link
Author

Bharavi26 commented Dec 29, 2020 via email

@Bharavi26
Copy link
Author

Bharavi26 commented Dec 30, 2020

sir i tried with 1.1.0 insted of 1.0.0, but same situation occur as like video i shared
need to share log of 1.1.0 ?

@Bharavi26
Copy link
Author

@Bharavi26
Copy link
Author

@TatankaConCube sir,

i think my issue is same as #49 (comment) this, in log which i shared there is PeerConnection: onIceConnectionState changed to RTCIceConnectionState.RTCIceConnectionStateFailed for opponent 123....

@TatankaConCube
Copy link
Contributor

I'm studying your logs, sorry, but at this moment I don't have a solution. The main problem - I can not reproduce it on my side, yesterday I tried to do it the same as on your video, but on my side, it works as expected

@Bharavi26
Copy link
Author

Bharavi26 commented Dec 30, 2020

demo code-> https://drive.google.com/file/d/1K5tRk3-qSOt-fJtAYMimwq6-DQkHbzH9/view?usp=sharing

demo apk -> https://drive.google.com/file/d/1UP-72xlVpDcUagG2YNWxlgMA0whkUAfj/view?usp=sharing

@TatankaConCube sir, this code i downloaded from demo code i just changed sdk version as per your suggestion 1.1.0

@TatankaConCube
Copy link
Contributor

@Bharavi26 It sounds strange, but I can't reproduce it with your apk, I tried about ten times with steps from your video but can't reproduce. I have some ideas for possible issues, I will try to make some improvements for SDK and share with you a test version with fixes in a few days. Will you help us to test fixes on your side?

@Bharavi26
Copy link
Author

@TatankaConCube sir, thank you for your response and support.
sure sir, i'll test that.

@Bharavi26
Copy link
Author

any update @TatankaConCube sir ?

@TatankaConCube
Copy link
Contributor

@Bharavi26, sorry, we had New Year holidays, I will continue today

@TatankaConCube
Copy link
Contributor

@Bharavi26 can you please test your issue in the new dev version 1.1.1-dev.1? Just set connectycube_sdk: 1.1.1-dev.1, do flutter pub get, and rebuild your project.

@Bharavi26
Copy link
Author

Bharavi26 commented Jan 7, 2021

=======================
sir one more help needed...can you please update library xmpp_stone,xml,websafe svg on that...
because i am getting version issue in that

Because connectycube_sdk >=1.1.0 depends on xmpp_stone 0.2.7 which depends on xml ^3.2.5, connectycube_sdk >=1.1.0 requires xml ^3.2.5.
And because flutter_svg 0.18.1 depends on xml ^4.2.0, connectycube_sdk >=1.1.0 is incompatible with flutter_svg 0.18.1.
Because websafe_svg 1.1.4 depends on flutter_svg ^0.18.1 and no versions of flutter_svg match >0.18.1 <0.19.0, websafe_svg 1.1.4 requires flutter_svg 0.18.1.
Thus, connectycube_sdk >=1.1.0 is incompatible with websafe_svg 1.1.4.
So, because project depends on both websafe_svg 1.1.4 and connectycube_sdk 1.1.1-dev.1, version solving failed.
pub get failed (1; So, because project depends on both websafe_svg 1.1.4 and connectycube_sdk 1.1.1-dev.1, version solving failed.)

@Bharavi26
Copy link
Author

yes sir, its working now with 1.1.1-dev.1

@Bharavi26
Copy link
Author

can you please update libraries version on 1.1.1-dev.1 so i can also test on my real project on which i was facing same issue

@TatankaConCube
Copy link
Contributor

you can use the dev version in your project, then after publishing these changes to a stable release, you just will change the version to stable.

@Bharavi26
Copy link
Author

Bharavi26 commented Jan 8, 2021

means you will update connectycube_sdk version in main library,
then i have to use that right?

may i know about the exact time from 1.1.1-dev.1 to main stable sdk ?
also please it'll help if you update other libraries version also in that, which i mention in
#55 (comment)

@TatankaConCube
Copy link
Contributor

no, I meant a stable version of our SDK)))

now I'm working on upgrading dependencies to the latest versions

@TatankaConCube
Copy link
Contributor

xmpp_dart lib has an issue with chat reconnection and I have to fix it first, then the author of 'xmpp_dart' should merge my PR

@TatankaConCube
Copy link
Contributor

@Bharavi26 try today's version 1.1.1-dev.2 in your project. Note, don't forget to do flutter pub get before build.

@Bharavi26
Copy link
Author

Bharavi26 commented Jan 9, 2021

Thank you @TatankaConCube sir,
1.1.1-dev.2 working with update libraries in my project..perfact...thank u for that..

can i use 1.1.1-dev.2 in my project's release build or need to wait for main conncube lib without dev test libarary ?

@TatankaConCube
Copy link
Contributor

@Bharavi26 yes, you can use the dev version in your project, we will release it as stable after internal checks and tests.

@TatankaConCube
Copy link
Contributor

Today we released the stable version 1.1.1. You can use it in your project.

@Bharavi26
Copy link
Author

Bharavi26 commented Jan 15, 2021

@TatankaConCube sir,
again same issue in ** connectycube_sdk: 1.1.1**
connectycube_sdk: 1.1.1-dev.1 working fine but not connectycube_sdk: 1.1.1

white screen appearing in connectycube_sdk: 1.1.1,
even in this update white screen appearing in regular call flow also

@TatankaConCube
Copy link
Contributor

@Bharavi26 hmmm... it is strange... the version 1.1.1 contains all changes from 1.1.1-dev.1. Try to do flutter clean then flutter pub get then rebuild project.

@TatankaConCube
Copy link
Contributor

@Bharavi26 I'm so sorry, looks there were problems with publishing version 1.1.1 to pub.dev, right now I pushed version 1.1.2, please, try it.

@Bharavi26
Copy link
Author

@TatankaConCube sir, thank you for quick response

but that not working don't know, please look in this video which i record with version 1.1.2
https://drive.google.com/file/d/1bjtBDAIGszsA3JtkoyWg3jjxlI0b6tJE/view?usp=sharing

@TatankaConCube
Copy link
Contributor

TatankaConCube commented Jan 15, 2021

Have you do flutter clean and flutter pub get before building the app? Do you use the same version of the app on both devices?

@TatankaConCube
Copy link
Contributor

@Bharavi26 I need your logs from both sides (caller and receiver), can you provide them?

@Bharavi26
Copy link
Author

yes sir i did clean and get...
using same version in both device

@Bharavi26
Copy link
Author

sir...i cleared all catch sdk,project etc...
now i that type of situation not occuring...
but around 10 to 11 second white screen appearing then after video displaying

@TatankaConCube
Copy link
Contributor

@Bharavi26 I need your logs from both sides (caller and receiver), can you provide them? And for me will be helpful if you provide the same log from the app which uses version 1.1.1-dev.1. Please, collect it in txt files and share them with me, as you did before.

@Bharavi26
Copy link
Author

ok sir...i'll share that

@Bharavi26
Copy link
Author

@TatankaConCube
Copy link
Contributor

No activity for a long time. Please use the latest version of our SDK for the next test. If the issue still reproduces, create a new ticket with a description. Closing...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants