Closed kumarmanishc closed 3 months ago
I'm also experiencing the same issue @calvinckho Any of guidance or update would be highly appreciated as according to change in google play policy we have to updated targetsdk as 34 before 31st August
Thanks for reporting this issue. I will try to take a look this week.
@kumarmanishc and @kcss-ashvini, are you two still using Capacitor 5? If yes, can you try to install the latest branch #capacitor-5 using the following command and report if the error message goes away?
npm i git+ssh://git@github.com:calvinckho/capacitor-jitsi-meet#capacitor-5
@kumarmanishc @kcss-ashvini, any update?
@calvinckho Yes I will update you by today evening. Also is this change only available via GitHub or May I also install via npm registry?
@calvinckho Yes it seems to be working. Thank you
@calvinckho Thank you. It's working for me as well.
Sounds great. capacitor-jitsi-meet@5.1.0 is released and I will close this issue.
Hello Team,
Thank you for this Awesome plugin.
This is working fine for target sdk 33 but when we update target sdk 34 for Android 14 It's giving error
We tried following as suggestions:
The error message suggests that your broadcast receiver declaration in the
AndroidManifest.xml
file needs to explicitly state whether the receiver is exported or not, a requirement starting from Android 12 (API level 31). To resolve this, you need to update yourAndroidManifest.xml
by adding eitherandroid:exported="true"
orandroid:exported="false"
to your broadcast receiver definition. Here’s an example of how you can do this:Example 1: Exported Receiver
If your broadcast receiver is intended to be accessible by other applications, you should set
android:exported
totrue
.But no luck