Skip to content

equinox-contech/react-native-salesforce-chat

 
 

Repository files navigation

react-native-salesforce-chat

Salesforce SDK Documentation

This RN native module uses Salesforce Embedded Service SDK:

Getting started

$ npm install react-native-salesforce-chat --save

// or using yarn:

$ yarn add react-native-salesforce-chat

For React Native version > 0.60, use autolinking:

$ cd ios && pod install

Mostly automatic installation (for React Native version < 0.60)

$ react-native link react-native-salesforce-chat

Manual installation

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-salesforce-chat and add RNSalesforceChat.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNSalesforceChat.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)<

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.reactlibrary.RNSalesforceChatPackage; to the imports at the top of the file
  • Add new RNSalesforceChatPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-salesforce-chat'
    project(':react-native-salesforce-chat').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-salesforce-chat/android')
    
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-salesforce-chat')
    

Usage

import RNSalesforceChat from 'react-native-salesforce-chat';

About

Salesforce Chat RN Bridge - iOS and Android

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Objective-C 94.4%
  • Java 3.4%
  • Perl 1.8%
  • Other 0.4%