@kustomer/chat-react-native v2.7.1
Kustomer Chat React Native SDK
Embed Kustomer in your own products with our chat SDK for React Native.
Installation
yarn add @kustomer/chat-react-nativeiOS support
cd ios
pod update
pod installAndroid Support
Due to potential late init issues, we recommend initialization through your MainApplication.java/kt
edit android/app/src/main/java/com/push_notifications/MainApplication.kt
public void onCreate() {
// ...
KustomerChat.configure(apiKey, options);
}HOWTO INSTALL
The default way to configure the SDK is through in your app's js bundle. Here is an example app with README explaining how to configure the app to securely import your API key.
import KustomerChat from '@kustomer/chat-react-native';
if(platform.ios) {
// Ensure configure runs only once. Tested with `useEffect`. see example above.
KustomerChat.configure(apiKey, options);
}Permissions iOS
Add the following to your Info.plist for file upload support:
Privacy - Camera Usage Description
Privacy - Media Library Usage Description
Privacy - Microphone Usage Description
Privacy - Photo Library Usage DescriptionAuthentication
For auth setup, see the iOS docs
Open a conversation dialog
import KustomerChat from '@kustomer/chat-react-native';
KustomerChat.show(KustomerDisplayMode); // KustomerDisplayMode is an optional enum paramCustom colors
For Android, see the Android docs For iOS, see the iOS docs
We are working on a way to customize colors in JS/TS sources, once, but it is currently not possible with the native SDKs.
License
You can view the license here
Notes
WIP: Most of the APIs are stable, and no major changes are expected in the way the SDK works.
Push notifications
iOS
- should request permission using another lib, like
react-native-permissionsorreact-native-push-notificationorreact-native-firebase - check the iOS docs for Push Keys and Certificates and Push Notifications and modify your
AppDelegate.maccordingly.
ℹ️ Note: this will likely match android's behavior in the future
Android
- use a PN library (like
react-native-firebase), and callsetPushTokenonce a token is received. - call
KustomerChat.onRemoteMessagein youronRemoteMessagecallback. You can useisKustomerNotificationto check if the message is from Kustomer, and should be forwarded.
1 year ago
1 year ago
8 months ago
12 months ago
7 months ago
1 year ago
1 year ago
1 year ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago