1.0.1 • Published 5 years ago

react-native-chatbot-sdk v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

react-native-chatbot-sdk

Install

$ npm install react-native-chatbot-sdk --save

Setup iOS

Copy RNChatbotSDK.m and RNChatbotSDK.swift from node_modules/react-native-chatbot-sdk/ios into your project. You will be prompted to create a bridging header. Accept and place the below into the header:

#import <React/RCTBridgeModule.h>
#import <React/RCTEventEmitter.h>

Add ChatbotSDK to your podfile, then run pod update.

source 'https://github.com/CocoaPods/Specs.git'

platform :ios, "10.0"
use_frameworks!

target "ChatbotExample-swift" do
  pod "ChatbotSDK"
end