@selligent-marketing-cloud/selligent-react-native
v4.3.0
Published
React Native wrapper for the Marigold Engage Android and iOS SDKs
Keywords
Readme
Marigold Engage-ReactNative (selligent-react-native)
This module provides an API for the usage of the Marigold Engage Mobile SDKs in React Native.
Marigold Engage-ReactNative Integration
This module supports the following SDK and tools:
IMPORTANT This module isn't built using ReactNative's new architecture! It is however compatible with apps that do adopt the new architecture, as far as they are using latest ReactNative's versions.
| SDK | Version | | ------------------------------------------------------------------------------ |---------| | Android SDK | 4.7.1 | | iOS SDK | 3.8.7 | | ReactNative | 0.81.4 | | Expo SDK | 54 |
Installation
Please refer to our SDK full documentation for a step-by-step guide on how to use the SDK, after installation.
Install the module
npm install @selligent-marketing-cloud/selligent-react-native --saveCreate a
selligent.jsonfile (name is case sensitive) in the root of the React Native project (you can alternatively place it inside another folder or inside aselligentfolder which will automatically be checked by the wrapper) with the following content:{ "url": "someMobilePushUrl", "clientId": "someClientId", "privateKey": "somePrivateKey", "fullyQualifiedNotificationActivityClassName": "com.some.project.MainActivity", "delayedPushAction": true }
Check all the options that can be used in our SDK full documentation
Android Specific Installation
IMPORTANT: Since version 2.6.0 of this module we require your app to use the Android Gradle Plugin version 7.0.0 or higher in order to build on Android.
Create a Google application following the section native documentation, and place the
google-services.jsonfile in the./android/appfolder.Add the following lines at the end of the
android/settings.gradlefile:include ':selligent-react-native' project(':selligent-react-native').projectDir = new File(rootProject.projectDir, '../node_modules/@selligent-marketing-cloud/selligent-react-native/android')Add the following in the
android/build.gradlefile, and make sure that the Gradle version inandroid/gradle/wrapper/gradle-wrapper.propertiesis >= 6.7.1:// android/build.gradle buildscript { dependencies { // Make sure your Gradle plugin version is >= 7.0.0 classpath("com.android.tools.build:gradle:7.0.0") // Add the following: classpath 'com.google.gms:google-services:4.3.15' } }// android/gradle/wrapper/gradle-wrapper.properties distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zipAdd the following in the
android/app/build.gradlefile:dependencies { // Add the following: compile project(path: ':selligent-react-native') } // Add the following: apply plugin: 'com.google.gms.google-services'Add the following in the
android/app/src/../MainApplication.javafile:// Add the following import statements: import com.selligent.RNSelligent; import com.selligent.RNSelligentPackage; public class MainApplication extends Application implements ReactApplication { private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { @Override protected List<ReactPackage> getPackages() { List<ReactPackage> packages = new PackageList(this).getPackages(); // Add the following: packages.add(new RNSelligentPackage()); return packages; } }; @Override public void onCreate() { super.onCreate(); // Add the following: RNSelligent.configure(this); } }
Create a Google application following the section Creating a Google application of the Android - Using the SDK pdf, and place the
google-services.jsonfile in the./android/appfolder.Add the following in the
android/build.gradlefile, and make sure that the Gradle version inandroid/gradle/wrapper/gradle-wrapper.propertiesis >= 6.7.1:// android/build.gradle buildscript { dependencies { // Add the following: classpath 'com.google.gms:google-services:4.3.15' } }Add the following in the
android/app/build.gradlefile (at the bottom):// Add the following: apply plugin: 'com.google.gms.google-services'Add the following in the
android/app/src/../MainApplication.javafile:// Add the following import statements: import com.selligent.RNSelligent; import com.selligent.RNSelligentPackage; public class MainApplication extends Application implements ReactApplication { @Override public void onCreate() { super.onCreate(); // Add the following: RNSelligent.configure(this); } }
iOS Specific installation
Copy the
node_modules/@selligent-marketing-cloud/selligent-react-native/iosfolder to the Xcode project. Drop it under theLibrariesFolder. This will link the module to the iOS project.Drag and drop the
selligent.jsonyou created (or the full folder(s) containing it) to the Xcode project inside theCopy Bundle ResourcesinBuild phasesof your target:Do not check the "copy if needed" option to make sure you only have to manage one selligent.json file
Add the native iOS SDK dependency in your Podfile:
s.dependency "SelligentMobileSDK/Framework", "3.8.7"or download it manually from here and drag and drop it into you Xcode project.Add the RNSelligentMapper pod in your Podfile:
pod 'RNSelligentMapper', :path => '../node_modules/@selligent-marketing-cloud/selligent-react-native/RNSelligentMapper.podspec'.Execute
pod installin the/iosfolderFrom now on, open the
.xcworkspacefile to make changes in XcodeBootstrap the SDK in the
application:didFinishLaunchingWithOptions:of theAppDelegate.mm@import RNSelligentMobileSDK; // OR // #import <RNSelligentMobileSDK/RNSelligentMobileSDK-Swift.h> // You can alternatively specify a different file name (without the extension) from where to load the Marigold Engage configs (defaults to 'selligent') // if (!launchOptions) { // launchOptions = [NSMutableDictionary new]; // } // [launchOptions setValue:@"alternativeFileName" forKey:@"RN_SELLIGENT_JSON"]; // [launchOptions setValue:@"selligent/alternativeFileName" forKey:@"RN_SELLIGENT_JSON"]; // At the end of application:didFinishLaunchingWithOptions: [RNSelligent configureWithLaunchOptions:launchOptions];
Drag and drop the
selligent.jsonyou created (or the full folder(s) containing it) to the Xcode project inside theCopy Bundle ResourcesinBuild phasesof your target:Do not check the "copy if needed" option to make sure you only have to manage one selligent.json file
Execute
pod installin the/iosfolderImport & bootstrap the SDK in the
application:didFinishLaunchingWithOptions:of theAppDelegate.m(put it at the end of the method)@import RNSelligentMobileSDK; // OR // #import <RNSelligentMobileSDK/RNSelligentMobileSDK-Swift.h> // You can alternatively specify a different file name (without the extension) from where to load the Marigold Engage configs (defaults to 'selligent') // if (!launchOptions) { // launchOptions = [NSMutableDictionary new]; // } // [launchOptions setValue:@"alternativeFileName" forKey:@"RN_SELLIGENT_JSON"]; // [launchOptions setValue:@"selligent/alternativeFileName" forKey:@"RN_SELLIGENT_JSON"]; // [launchOptions setValue:@"alternativeFolder/alternativeFileName" forKey:@"RN_SELLIGENT_JSON"]; // At the end of application:didFinishLaunchingWithOptions: [RNSelligent configureWithLaunchOptions:launchOptions];
