React Native SDK upgrade guide
To upgrade to the latest version of the Swrve React Native SDK plugin, replace the react-native-swrve-plugin
folder in your project with the one found in latest release on GitHub. Or use the following command:
npm update react-native-swrve-plugin
Updating native SDK dependencies
When you add the updated folder to your project, we recommend clearing your node_modules
folder and perform an npm install
to ensure you have the latest SDK dependency changes. Also, if you’re using iOS, ensure you run pod update
in the ios
folder.
Version 5.1.0
There are no code changes required to upgrade to Swrve React Native SDK Plugin v5.1.0.
Version 5.0.1
There are no code changes required to upgrade to Swrve React Native SDK Plugin v5.0.1.
Version 5.0.0
This section provides information for upgrading to Swrve React Native SDK Plugin v5.0.0. The following table lists the methods and fields that have been added.
Removed | Summary |
---|---|
Removed SwrveMessageListeners param (which includes customButtonPressedListener , dismissButtonPressedListener and clipboardButtonPressedListener ) from SwrveSDK.setListeners . |
Use SwrveSDK.setInAppMessageListener instead. |
Removed SwrveEmbeddedMessageCampaignListener param from SwrveSDK.setListeners . |
Use SwrveSDK.setEmbeddedCampaignListener instead. |
Removed campaign subject field from Message Center. |
Use messageCenterDetails.subject instead. |
Version 4.1.3
There are no code changes required to upgrade to Swrve React Native SDK Plugin v4.1.3.
Version 4.1.2
There are no code changes required to upgrade to Swrve React Native SDK Plugin v4.1.2.
Version 4.1.1
There are no code changes required to upgrade to Swrve React Native SDK Plugin v4.1.1.
Version 4.1.0
This section provides information for upgrading to Swrve React Native SDK Plugin v4.1.0.
The following table lists the methods and fields that have been changed or added.
Changed | To |
---|---|
MessageCustomButtonPressedListener |
The MessageCustomButtonPressedListener API is now deprecated. Please use InAppMessageListener instead to get campaign and button metadata. |
MessageDismissButtonPressedListener |
The MessageDismissButtonPressedListener API is now deprecated. Please use InAppMessageListener instead to get campaign and button metadata. |
MessageClipboardButtonPressedListener |
The MessageClipboardButtonPressedListener API is now deprecated. Please use InAppMessageListener instead to get campaign and button metadata. |
EmbeddedMessageCampaignListener |
The EmbeddedMessageCampaignListener API is now deprecated. Please use EmbeddedCampaignListener which adds a boolean: isControl for campaign holdouts. |
Added | Summary |
DeeplinkListener |
Implement this listener to handle deeplinks in the JS layer. |
embeddedControlMessageImpressionEvent |
Use this method to send an impression event for control embedded campaigns. |
Version 4.0.1
There are no code changes required to upgrade to Swrve React Native SDK Plugin v4.0.1.
Version 4.0.0
This section provides information for upgrading to Swrve React Native SDK Plugin v4.0.0. The following table lists the methods and fields that have been added.
Added | Summary |
---|---|
New string argument to the MessageCustomButtonPressedListener function containing the campaign name. |
If your integration uses the MessageCustomButtonPressedListener , add the campaign name argument as the last item in the signature. |
New string argument to the MessageDismissButtonPressedListener function containing the campaign name. |
If your integration uses the MessageDismissButtonPressedListener , add the campaign name argument as the last item in the signature. |
Previous versions
If you are upgrading from a version older than 4.0.0, please refer to the React Native integration guide.