Reputation: 460
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
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
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
Reputation: 748
https://github.com/gunschu/jitsi_meet/issues/356
Looks like the devs are working on it.
Upvotes: 0