react-native-marketingcloudsdk
Version:
A React Native component to access the native Salesforce Marketing Cloud MobilePush SDKs
335 lines (233 loc) • 14.9 kB
Markdown
# Salesforce Marketing Cloud React Native
Use this module to implement the Marketing Cloud MobilePush SDK for your [iOS](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-iOS/) and [Android](http://salesforce-marketingcloud.github.io/MarketingCloudSDK-Android/) applications.
## Release Notes
Release notes for the plugin can be found [here](CHANGELOG.md)
## Installation
* Plugin has a version dependency on React Native v0.60+
#### 1. Add plugin to your application via [npm](https://www.npmjs.com/package/react-native-marketingcloudsdk)
```shell
npm install react-native-marketingcloudsdk --save
```
### Android Setup
#### 1. Add Marketing Cloud SDK repository
`android/build.gradle`
```groovy
allprojects {
repositories {
maven { url "https://salesforce-marketingcloud.github.io/MarketingCloudSDK-Android/repository" }
//... Other repos
}
}
```
#### 2. Provide FCM credentials
1. To enable push support for the Android platform you will need to include the google-services.json file. Download the file from your Firebase console and place it into the `android/app` directory
2. Include the Google Services plugin in your build
`android/build.gradle`
```groovy
buildscript {
repositories {
google() // Google's Maven repository
}
dependencies {
// ...
// Add the following line:
classpath 'com.google.gms:google-services:4.2.0'
}
}
```
3. Apply the plugin
`android/app/build.gradle`
```groovy
// Add the following line to the bottom of the file:
apply plugin: 'com.google.gms.google-services
```
#### 3. Configure the SDK in your MainApplication.java class
```java
@Override
public void onCreate() {
super.onCreate();
MarketingCloudSdk.init(this,
MarketingCloudConfig.builder()
.setApplicationId("{MC_APP_ID}")
.setAccessToken("{MC_ACCESS_TOKEN}")
.setSenderId("{FCM_SENDER_ID_FOR_MC_APP}")
.setMarketingCloudServerUrl("{MC_APP_SERVER_URL}")
.setNotificationCustomizationOptions(NotificationCustomizationOptions.create(R.drawable.ic_notification))
.setAnalyticsEnabled(true)
.build(this),
initializationStatus -> Log.e("INIT", initializationStatus.toString()));
// ... The rest of the onCreate method
}
```
### iOS Setup
#### 1. Install pod for Marketing Cloud SDK
```shell
cd ios
pod install
```
#### 2. Configure the SDK in your AppDelegate.m class
```objc
- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
MarketingCloudSDKConfigBuilder *mcsdkBuilder = [MarketingCloudSDKConfigBuilder new];
[mcsdkBuilder sfmc_setApplicationId:@"{MC_APP_ID}"];
[mcsdkBuilder sfmc_setAccessToken:@"{MC_ACCESS_TOKEN}"];
[mcsdkBuilder sfmc_setAnalyticsEnabled:@(YES)];
[mcsdkBuilder sfmc_setMarketingCloudServerUrl:@"{MC_APP_SERVER_URL}"];
NSError *error = nil;
BOOL success =
[[MarketingCloudSDK sharedInstance] sfmc_configureWithDictionary:[mcsdkBuilder sfmc_build]
error:&error];
// ... The rest of the didFinishLaunchingWithOptions method
}
```
#### 3. Enable Push
Follow [these instructions](./ios_push.md) to enable push for iOS.
## API Reference <a name="reference"></a>
**Kind**: global class
* [MCReactModule](#MCReactModule)
* [.isPushEnabled()](#MCReactModule.isPushEnabled) ⇒ <code>Promise.<boolean></code>
* [.enablePush()](#MCReactModule.enablePush)
* [.disablePush()](#MCReactModule.disablePush)
* [.getSystemToken()](#MCReactModule.getSystemToken) ⇒ <code>Promise.<?string></code>
* [.getAttributes()](#MCReactModule.getAttributes) ⇒ <code>Promise.<Object.<string, string>></code>
* [.setAttribute(key, value)](#MCReactModule.setAttribute)
* [.clearAttribute(key)](#MCReactModule.clearAttribute)
* [.addTag(tag)](#MCReactModule.addTag)
* [.removeTag(tag)](#MCReactModule.removeTag)
* [.getTags()](#MCReactModule.getTags) ⇒ <code>Promise.<Array.<string>></code>
* [.setContactKey(contactKey)](#MCReactModule.setContactKey)
* [.getContactKey()](#MCReactModule.getContactKey) ⇒ <code>Promise.<?string></code>
* [.enableVerboseLogging()](#MCReactModule.enableVerboseLogging)
* [.disableVerboseLogging()](#MCReactModule.disableVerboseLogging)
* [.logSdkState()](#MCReactModule.logSdkState)
<a name="MCReactModule.isPushEnabled"></a>
### MCReactModule.isPushEnabled() ⇒ <code>Promise.<boolean></code>
The current state of the pushEnabled flag in the native Marketing Cloud
SDK.
**Kind**: static method of [<code>MCReactModule</code>](#MCReactModule)
**Returns**: <code>Promise.<boolean></code> - A promise to the boolean representation of whether push is
enabled.
**See**
- [Android Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-Android/javadocs/6.0/reference/com/salesforce/marketingcloud/messages/push/PushMessageManager.html#isPushEnabled())
- [iOS Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-iOS/appledoc/Classes/MarketingCloudSDK.html#//api/name/sfmc_pushEnabled)
<a name="MCReactModule.enablePush"></a>
### MCReactModule.enablePush()
Enables push messaging in the native Marketing Cloud SDK.
**Kind**: static method of [<code>MCReactModule</code>](#MCReactModule)
**See**
- [Android Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-Android/javadocs/6.0/reference/com/salesforce/marketingcloud/messages/push/PushMessageManager.html#enablePush())
- [iOS Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-iOS/appledoc/Classes/MarketingCloudSDK.html#//api/name/sfmc_setPushEnabled:)
<a name="MCReactModule.disablePush"></a>
### MCReactModule.disablePush()
Disables push messaging in the native Marketing Cloud SDK.
**Kind**: static method of [<code>MCReactModule</code>](#MCReactModule)
**See**
- [Android Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-Android/javadocs/6.0/reference/com/salesforce/marketingcloud/messages/push/PushMessageManager.html#disablePush())
- [iOS Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-iOS/appledoc/Classes/MarketingCloudSDK.html#//api/name/sfmc_setPushEnabled:)
<a name="MCReactModule.getSystemToken"></a>
### MCReactModule.getSystemToken() ⇒ <code>Promise.<?string></code>
Returns the token used by the Marketing Cloud to send push messages to
the device.
**Kind**: static method of [<code>MCReactModule</code>](#MCReactModule)
**Returns**: <code>Promise.<?string></code> - A promise to the system token string.
**See**
- [Android Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-Android/javadocs/6.0/reference/com/salesforce/marketingcloud/messages/push/PushMessageManager.html#getPushToken())
- [iOS Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-iOS/appledoc/Classes/MarketingCloudSDK.html#//api/name/sfmc_deviceToken)
<a name="MCReactModule.getAttributes"></a>
### MCReactModule.getAttributes() ⇒ <code>Promise.<Object.<string, string>></code>
Returns the maps of attributes set in the registration.
**Kind**: static method of [<code>MCReactModule</code>](#MCReactModule)
**Returns**: <code>Promise.<Object.<string, string>></code> - A promise to the key/value map of attributes set
in the registration.
**See**
- [Android Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-Android/javadocs/6.0/reference/com/salesforce/marketingcloud/registration/RegistrationManager.html#getAttributes())
- [iOS Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-iOS/appledoc/Classes/MarketingCloudSDK.html#//api/name/sfmc_attributes)
<a name="MCReactModule.setAttribute"></a>
### MCReactModule.setAttribute(key, value)
Sets the value of an attribute in the registration.
**Kind**: static method of [<code>MCReactModule</code>](#MCReactModule)
**See**
- [Android Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-Android/javadocs/6.0/reference/com/salesforce/marketingcloud/registration/RegistrationManager.Editor.html#setAttribute(java.lang.String,%20java.lang.String))
- [iOS Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-iOS/appledoc/Classes/MarketingCloudSDK.html#//api/name/sfmc_setAttributeNamed:value:)
| Param | Type | Description |
| --- | --- | --- |
| key | <code>string</code> | The name of the attribute to be set in the registration. |
| value | <code>string</code> | The value of the `key` attribute to be set in the registration. |
<a name="MCReactModule.clearAttribute"></a>
### MCReactModule.clearAttribute(key)
Clears the value of an attribute in the registration.
**Kind**: static method of [<code>MCReactModule</code>](#MCReactModule)
**See**
- [Android Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-Android/javadocs/6.0/reference/com/salesforce/marketingcloud/registration/RegistrationManager.Editor.html#clearAttribute(java.lang.String))
- [iOS Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-iOS/appledoc/Classes/MarketingCloudSDK.html#//api/name/sfmc_clearAttributeNamed:)
| Param | Type | Description |
| --- | --- | --- |
| key | <code>string</code> | The name of the attribute whose value should be cleared from the registration. |
<a name="MCReactModule.addTag"></a>
### MCReactModule.addTag(tag)
**Kind**: static method of [<code>MCReactModule</code>](#MCReactModule)
**See**
- [Android Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-Android/javadocs/6.0/reference/com/salesforce/marketingcloud/registration/RegistrationManager.Editor.html#addTag(java.lang.String))
- [iOS Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-iOS/appledoc/Classes/MarketingCloudSDK.html#//api/name/sfmc_addTag:)
| Param | Type | Description |
| --- | --- | --- |
| tag | <code>string</code> | The tag to be added to the list of tags in the registration. |
<a name="MCReactModule.removeTag"></a>
### MCReactModule.removeTag(tag)
**Kind**: static method of [<code>MCReactModule</code>](#MCReactModule)
**See**
- [Android Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-Android/javadocs/6.0/reference/com/salesforce/marketingcloud/registration/RegistrationManager.Editor.html#removeTag(java.lang.String))
- [iOS Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-iOS/appledoc/Classes/MarketingCloudSDK.html#//api/name/sfmc_removeTag:)
| Param | Type | Description |
| --- | --- | --- |
| tag | <code>string</code> | The tag to be removed from the list of tags in the registration. |
<a name="MCReactModule.getTags"></a>
### MCReactModule.getTags() ⇒ <code>Promise.<Array.<string>></code>
Returns the tags currently set on the device.
**Kind**: static method of [<code>MCReactModule</code>](#MCReactModule)
**Returns**: <code>Promise.<Array.<string>></code> - A promise to the array of tags currently set in the native SDK.
**See**
- [Android Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-Android/javadocs/6.0/reference/com/salesforce/marketingcloud/registration/RegistrationManager.html#getTags())
- [iOS Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-iOS/appledoc/Classes/MarketingCloudSDK.html#//api/name/sfmc_tags)
<a name="MCReactModule.setContactKey"></a>
### MCReactModule.setContactKey(contactKey)
Sets the contact key for the device's user.
**Kind**: static method of [<code>MCReactModule</code>](#MCReactModule)
**See**
- [Android Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-Android/javadocs/6.0/reference/com/salesforce/marketingcloud/registration/RegistrationManager.Editor.html#setContactKey(java.lang.String))
- [iOS Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-iOS/appledoc/Classes/MarketingCloudSDK.html#//api/name/sfmc_setContactKey:)
| Param | Type | Description |
| --- | --- | --- |
| contactKey | <code>string</code> | The value to be set as the contact key of the device's user. |
<a name="MCReactModule.getContactKey"></a>
### MCReactModule.getContactKey() ⇒ <code>Promise.<?string></code>
Returns the contact key currently set on the device.
**Kind**: static method of [<code>MCReactModule</code>](#MCReactModule)
**Returns**: <code>Promise.<?string></code> - A promise to the current contact key.
**See**
- [Android Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-Android/javadocs/6.0/reference/com/salesforce/marketingcloud/registration/RegistrationManager.html#getContactKey())
- [iOS Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-iOS/appledoc/Classes/MarketingCloudSDK.html#//api/name/sfmc_contactKey)
<a name="MCReactModule.enableVerboseLogging"></a>
### MCReactModule.enableVerboseLogging()
Enables verbose logging within the native Marketing Cloud SDK.
**Kind**: static method of [<code>MCReactModule</code>](#MCReactModule)
**See**
- [Android Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-Android/javadocs/6.0/reference/com/salesforce/marketingcloud/MarketingCloudSdk.html#setLogLevel(int))
- [iOS Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-iOS/appledoc/Classes/MarketingCloudSDK.html#//api/name/sfmc_setDebugLoggingEnabled:)
<a name="MCReactModule.disableVerboseLogging"></a>
### MCReactModule.disableVerboseLogging()
Disables verbose logging within the native Marketing Cloud SDK.
**Kind**: static method of [<code>MCReactModule</code>](#MCReactModule)
**See**
- [Android Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-Android/javadocs/6.0/reference/com/salesforce/marketingcloud/MarketingCloudSdk.html#setLogLevel(int))
- [iOS Docs](https://salesforce-marketingcloud.github.io/MarketingCloudSDK-iOS/appledoc/Classes/MarketingCloudSDK.html#//api/name/sfmc_setDebugLoggingEnabled:)
<a name="MCReactModule.logSdkState"></a>
### MCReactModule.logSdkState()
Instructs the native SDK to log the SDK state to the native logging system (Logcat for
Android and Xcode/Console.app for iOS). This content can help diagnose most issues within
the SDK and will be requested by the Marketing Cloud support team.
**Kind**: static method of [<code>MCReactModule</code>](#MCReactModule)
---
### 3rd Party Product Language Disclaimers
Where possible, we changed noninclusive terms to align with our company value of Equality. We retained noninclusive terms to document a third-party system, but we encourage the developer community to embrace more inclusive language. We can update the term when it’s no longer required for technical accuracy.