gunschu / jitsi_meet

Initial commit
208 stars 281 forks source link

Manifest merger failed : android:exported needs to be explicitly specified for element <service#org.jitsi.meet.sdk.ConnectionService>. Apps targeting Android 12 and higher are required to specify an explicit value for `android:exported` when the corresponding component has an intent filter defined. #409

Closed DangHung301 closed 1 year ago

DangHung301 commented 1 year ago

Platform: Android

Steps to reproduce the behavior:

I have installed the lib then config into the app but can't run it due to this problem

image

osamasaeed commented 1 year ago

I tried this package first but I am facing same issue above.

denes16 commented 1 year ago

same here, any workaround?

ialyzaafan commented 1 year ago

same issue but it does work on the ios its only not working for android

isnaenimus commented 1 year ago

Have you added in manifest android:exported="true"?

and try this

<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>
stale[bot] commented 1 year ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.