$ npm install ashutosh910-react-native-salesforce-chat --save
$ react-native link ashutosh910-react-native-salesforce-chat
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-salesforce-chat
and addRNSalesforceChat.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNSalesforceChat.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
- 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 thegetPackages()
method
- 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')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-salesforce-chat')
import RNSalesforceChat from 'ashutosh910-react-native-salesforce-chat';
RNSalesforceChat has 3 methods we can use
RNSalesforceChat.configLaunch(preChatSettings , userSettings)
RNSalesforceChat.configChat(ORG_ID, DEPLOYMENT_ID, BUTTON_ID, LIVE_AGENT_POD, VISITOR_NAME)
RNSalesforceChat.launch(successCallback function, errorCallback function)