Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
react-native-zohosalesiq-mobilisten
Advanced tools
A React Native module for the ZohoSalesIQ Mobilisten SDK
Connect with customers at every step of their journey. Give them the best in-app live chat experience with Mobilisten. Mobilisten enables customers to reach you from any screen on your app, get their questions answered, and make better purchase decisions.
Mobilisten is a support chat SDK that comes with a set of highly configurable APIs to suit your needs. Get started by generating an App
and Access
keys for your bundle ID from the SalesIQ console.
iOS: Minimum deployment target should be set to iOS 12.
Android: Android API level 21 or above is required.
Follow the below steps given below to complete installation of Mobilisten in your React-Native app.
npm install react-native-zohosalesiq-mobilisten --save
react-native link react-native-zohosalesiq-mobilisten
ios
folder in the project directory and open Podfile.
Add the "/ios" to the path for the RNZohoSalesIQ
pod as shown below. (for RNZohoSalesIQ version older than 10.0.0)
- pod 'RNZohoSalesIQ', :path => '../node_modules/react-native-zohosalesiq-mobilisten'
+ pod 'RNZohoSalesIQ', :path => '../node_modules/react-native-zohosalesiq-mobilisten/ios'
Note: Above path need to be removed from podfile
after upgrading to version 10.0.0
pod repo update && pod install
command from the ios
directory.$ react-native link react-native-zohosalesiq-mobilisten
android/settings.gradle
include ':react-native-zohosalesiq-mobilisten'
project(':react-native-zohosalesiq-mobilisten').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-zohosalesiq-mobilisten/android')
android/app/build.gradle
file inside dependencies
implementation project(':react-native-zohosalesiq-mobilisten')
android/app/src/main/java/com/module_name/MainApplication.java
if the
packages were not auto-generated.private final ReactNativeHost mReactNativeHost=new ReactNativeHost(this){
// ...
@Override
protected List<ReactPackage> getPackages(){
// Add new RNZohoSalesIQPackage() into the React packages list like below
return new ArrayList<>(Arrays.<ReactPackage>asList(new RNZohoSalesIQPackage()));
}
// ...
};
@Override
public ReactNativeHost getReactNativeHost(){
return mReactNativeHost;
}
android
folder within the project directory using Android Studio or any other
platform of choice for Android development.
Add the following maven repository to the build.gradle
file.allprojects {
repositories {
// ...
maven { url 'https://maven.zohodl.com' }
}
}
Sync Now
from the toolbar on the IDE.App
and Access
keys for iOS and Android platforms by providing your bundle id.ZohoSalesIQ.initWithCallback
API with keys for each platform as shown below.import { ZohoSalesIQ } from 'react-native-zohosalesiq-mobilisten';
let appKey;
let accessKey;
if (Platform.OS === 'ios') {
appKey = "ios_app_key";
accessKey = "ios_access_key";
} else {
appKey = "android_app_key";
accessKey = "android_access_key";
}
ZohoSalesIQ.initWithCallback(appKey, accessKey, success => {
// Your code
});
You can find the list of all APIs and their documentation here under the API Reference section.
FAQs
A React Native module for the ZohoSalesIQ Mobilisten SDK
The npm package react-native-zohosalesiq-mobilisten receives a total of 835 weekly downloads. As such, react-native-zohosalesiq-mobilisten popularity was classified as not popular.
We found that react-native-zohosalesiq-mobilisten demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.