Releases: tinycreative/react-native-intercom
Releases · tinycreative/react-native-intercom
v20.0.0
v13.1.0
13.1.0
v13.0.0
BREAKING CHANGE
- AndroidManifest.xml : Remove IntercomIntentService reference if you're using it in your manifest file
- Location:
android/app/src/main/AndroidManifest.xml
Before:
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.myapp"
...other configuration here...
>
<application
...other configuration here...
xmlns:tools="http://schemas.android.com/tools"
>
<!-- ...other configuration here... -->
<service
android:name="com.robinpowered.react.Intercom.IntercomIntentService"
android:exported="false">
<intent-filter
android:priority="999">
<action android:name="com.google.android.c2dm.intent.RECEIVE"/>
</intent-filter>
</service>
<receiver
android:name="io.intercom.android.sdk.push.IntercomPushBroadcastReceiver"
tools:replace="android:exported"
android:exported="true" />
</application>
</manifest>
After:
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.myapp"
...other configuration here...
>
<application
...other configuration here...
xmlns:tools="http://schemas.android.com/tools"
>
<!-- ...other configuration here... -->
<receiver
android:name="io.intercom.android.sdk.push.IntercomPushBroadcastReceiver"
tools:replace="android:exported"
android:exported="true" />
</application>
</manifest>