Skip to content

Releases: tinycreative/react-native-intercom

v20.0.0

08 May 15:25
Compare
Choose a tag to compare

v13.1.0

28 Mar 22:12
Compare
Choose a tag to compare
13.1.0

v13.0.0

28 Mar 22:13
Compare
Choose a tag to compare

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>