I have built a Flutter app which lets a user create or join a meeting. I have used Jitsi Meet plugin: https://pub.dev/packages/jitsi_meet
I have added a proguard-rules.pro file in android/app folder of my project and added the following code to that file: https://raw.githubusercontent.com/gunschu/jitsi_meet/master/jitsi_meet/example/android/app/proguard-rules.pro
Here's the buildTypes section of my app/build.gradle:
buildTypes {
release {
signingConfig signingConfigs.release
minifyEnabled true
useProguard true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
However, when a user tries to create a new meeting, the app simply crashes.
Does anyone know how to solve this issue?