saibotma / jitsi_meet_wrapper

Jitsi Meet Plugin for Flutter. Wrapping JitsiMeetSDK for Android and iOS.
BSD 3-Clause "New" or "Revised" License
26 stars 61 forks source link

app crashing on clicking join meeting button #80

Closed realjatinpandey closed 1 year ago

realjatinpandey commented 1 year ago

The app always crashes when I click on Join Meeting button. The surprising thing it crashes only on the first run (when i do flutter clean and run the app). After the first run it works fine. But, it crashes every time on the release apk, as soon as I click the Join Meeting button. Below is the log files on the first run after flutter clean `F/libc (20680): Fatal signal 4 (SIGILL), code 1 (ILL_ILLOPC), fault addr 0x7c4913d320 in tid 20780 (mqt_js), pid 20680 (ik.coachingtime)


Build fingerprint: 'google/sdk_gphone64_arm64/emulator64_arm64:10/QSR1.210702.001/9803624:user/release-keys' Revision: '0' ABI: 'arm64' Timestamp: 2023-02-18 20:23:52+0530 pid: 20680, tid: 20780, name: mqt_js >>> in.novik.coachingtime <<< uid: 10150 signal 4 (SIGILL), code 1 (ILL_ILLOPC), fault addr 0x7c4913d320 (*pc=0xd3407c21) x0 0000007c485426dc x1 0000000000000000 x2 0000000000000020 x3 0000000000000000 x4 0000000000000000 x5 0000000000000000 x6 17fffff454fff4a9 x7 5280000192800000 x8 0000007c4913d320 x9 0000000000002000 x10 000000000000000c x11 000000000007c486 x12 0000000000000005 x13 0000007c48500000 x14 000000006e731ebf x15 0000000000000001 x16 0000007c5b6213d8 x17 0000007d85f438c0 x18 0000007c542ba000 x19 0000007c457218c0 x20 0000000000000000 x21 0000007c54558368 x22 0000007c48f00000 x23 0000007c457218e0 x24 0000000000000000 x25 0000007c45237790 x26 0000007c457218c0 x27 0000007c48f0ccc8 x28 ffff000000000002 x29 0000007c54558400 sp 0000007c54558290 lr 0000007c5b2eb844 pc 0000007c4913d320 backtrace: NOTE: Function names and BuildId information is missing for some frames due NOTE: to unreadable libraries. For unwinds of apps, only shared libraries NOTE: found under the lib/ directory are readable.

00 pc 000000000003e320

  #01 pc 0000000000557840  /data/data/in.novik.coachingtime/lib-main/libjsc.so
  #02 pc 0000000000563414  /data/data/in.novik.coachingtime/lib-main/libjsc.so
  #03 pc 0000000000566788  /data/data/in.novik.coachingtime/lib-main/libjsc.so
  #04 pc 00000000000001ec  <anonymous:7c490ff000>

Lost connection to device.`

chetu-ko commented 1 year ago

Have you added the ProGuard rules to your app?

realjatinpandey commented 1 year ago

Have you added the ProGuard rules to your app?

yes it stopped crashing after i added a notification icon. closing issue

ndizihiwesimon commented 1 year ago

Hello @realjatinpandey, Please! How did you add notification icon?

realjatinpandey commented 1 year ago

Hello @realjatinpandey, Please! How did you add notification icon?

you can through this link https://github.com/jitsi/jitsi-meet/issues/11847 Basically I created a new image asset with name ic_notification and icon type Notification Icons

ndizihiwesimon commented 1 year ago

Thank you it worked! Any idea how to limit others to join as guests not modulator and to overpass the join meeting screen? to automatically join meeting without getting on that join meeting screen?

realjatinpandey commented 1 year ago

Any idea how to limit others to join as guests not modulator and to overpass the join meeting screen? to automatically join meeting without getting on that join meeting screen?

nope, I am looking for the same thing; if you find something on this, please inform me as well.

ndizihiwesimon commented 1 year ago

Sure, I will let you know!

On Tue, Mar 28, 2023 at 4:09 PM realjatinpandey @.***> wrote:

Any idea how to limit others to join as guests not modulator and to overpass the join meeting screen? to automatically join meeting without getting on that join meeting screen?

nope, I am looking for the same thing; if you find something on this, please inform me as well.

— Reply to this email directly, view it on GitHub https://github.com/saibotma/jitsi_meet_wrapper/issues/80#issuecomment-1486966967, or unsubscribe https://github.com/notifications/unsubscribe-auth/AQYYB2DOETDP6U2LRJE6XZLW6LWI5ANCNFSM6AAAAAAVAMWUYE . You are receiving this because you commented.Message ID: @.***>

Zidoun-Abdou commented 1 year ago

Thank you it worked! Any idea how to limit others to join as guests not modulator and to overpass the join meeting screen? to automatically join meeting without getting on that join meeting screen?

I'm using flutter also and I have the same error can you please provide more details where to add it ?

ndizihiwesimon commented 1 year ago
  1. Open your project>android using android studio (Select android folder underneath the project name) wait for build to finish.
  2. Under android>res right click on res folder in android project and choose image asset from new section
  3. Create icon with following config Name: ic_notification Icon Type: Notification Icons
Zidoun-Abdou commented 1 year ago
  1. Open your project>android using android studio (Select android folder underneath the project name) wait for build to finish.

    1. Under android>res right click on res folder in android project and choose image asset from new section

    2. Create icon with following config Name: ic_notification Icon Type: Notification Icons

I found a simple solution for this, https://github.com/saibotma/jitsi_meet_wrapper/issues/101