You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
Here's the following code that should be added in Android 14 in order to make the library comply with the required permissions.
Inside the AndroidManifest.xml file add the following: <uses-permission android:name="android.permission.FOREGROUND_SERVICE_REMOTE_MESSAGING" />
as well as the following: <service android:name="com.salesforce.android.chat.core.internal.service.ChatService" android:foregroundServiceType="remoteMessaging"> </service>
The text was updated successfully, but these errors were encountered:
@andvalsol that worked like a charm thanks for that! we should merge that into the main repo since it's required for android version to work on the latest android releases. Anyways thanks for the tip
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Here's the following code that should be added in Android 14 in order to make the library comply with the required permissions.
Inside the
AndroidManifest.xml
file add the following:<uses-permission android:name="android.permission.FOREGROUND_SERVICE_REMOTE_MESSAGING" />
as well as the following:
<service android:name="com.salesforce.android.chat.core.internal.service.ChatService" android:foregroundServiceType="remoteMessaging"> </service>
The text was updated successfully, but these errors were encountered: