Merry
Merry

Reputation: 460

Jitsi meet in flutter not working on android 12

I have integrated jitsi_flutter for group calls. But, the app is not installed in the latest android supported version 12.

Here is the link for jitsi_flutter, which I have used. https://github.com/gunschu/jitsi_meet

I am getting this issue when trying to run the app on android 12 supported devices.

adb: failed to install E:\Flutter\flutter_jitsi\build\app\outputs\flutter-apk\app.apk: Failure [INSTALL_PARSE_FAILED_MANIFEST_MALFORMED: Failed parse during installPackageLI: /data/app/vmdl502165721.tmp/base.apk (at Binary XML file line #110): org.jitsi.meet.sdk.ConnectionService: Targeting S+ (version 31 and above) requires that an explicit value for android:exported be defined when intent filters are present]
Error launching application on sdk gphone64 x86 64.

Upvotes: 1

Views: 3343

Answers (3)

Baqar Naqvi
Baqar Naqvi

Reputation: 29

**This works for targetSdkVersion 31**
**Paste below code in AndroidManifest.xml**
<service
   android:name="org.jitsi.meet.sdk.ConnectionService"
   android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE"
   android:exported="true">
   <intent-filter>
       <action android:name="android.telecom.ConnectionService" />
   </intent-filter>
</service>

Upvotes: 0

Supriyanto
Supriyanto

Reputation: 149

If you still have issue with that, add this service to your manifest:

<service
       android:name="org.jitsi.meet.sdk.ConnectionService"
       android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE"
       android:exported="true">
       <intent-filter>
           <action android:name="android.telecom.ConnectionService" />
       </intent-filter>
   </service>

If this working let me know, thanks.

Upvotes: 5

Harish
Harish

Reputation: 748

https://github.com/gunschu/jitsi_meet/issues/356

Looks like the devs are working on it.

Upvotes: 0

Related Questions