All Projects → zoho → salesiq-mobilisten-android-sample

zoho / salesiq-mobilisten-android-sample

Licence: other
Sample App to integrate SalesIQ Android SDK (Mobilisten)

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to salesiq-mobilisten-android-sample

Chatwoot
Open-source customer engagement suite, an alternative to Intercom, Zendesk, Salesforce Service Cloud etc. 🔥💬
Stars: ✭ 11,554 (+88776.92%)
Mutual labels:  customer-support, livechat
Papercups
Open-source live customer chat
Stars: ✭ 4,554 (+34930.77%)
Mutual labels:  customer-support, livechat
chat21-web-widget
Live Chat Widget built with Firebase and Angular4 for customer support .
Stars: ✭ 69 (+430.77%)
Mutual labels:  customer-support, livechat
support-center-bundle
Provide your customers with convenience by introducing the Support Center Portal to your UVDesk Community Helpdesk System.
Stars: ✭ 24 (+84.62%)
Mutual labels:  customer-support
Erxes
Free and open fair-code licensed all-in-one growth marketing & management software
Stars: ✭ 1,988 (+15192.31%)
Mutual labels:  customer-support
android-chat-tutorial
Sample apps for the Stream Chat Android SDK's official tutorial
Stars: ✭ 44 (+238.46%)
Mutual labels:  chat-sdk
src
闪客服
Stars: ✭ 60 (+361.54%)
Mutual labels:  livechat
larafeed
Laravel package for providing visual feedback via screenshots.
Stars: ✭ 42 (+223.08%)
Mutual labels:  customer-support
WaiterBell
WaiterBell - The ticketing system in real world!
Stars: ✭ 16 (+23.08%)
Mutual labels:  customer-support
WeDPR-Lab-Android-SDK
Android SDK of WeDPR-Lab-Core; WeDPR即时可用场景式隐私保护高效解决方案核心算法组件Android SDK
Stars: ✭ 14 (+7.69%)
Mutual labels:  sdk-android
Indoor-Navigation-Android-Mobile-SDK-2.0
SDK for Android to develop own indoor navigation apps, and Navigine demo application for Android to test indoor navigation. Now you get one code for all types of devices with less resource use.
Stars: ✭ 21 (+61.54%)
Mutual labels:  sdk-android
Rocket.Chat.Java.SDK
[DEPRECATED, NOT MAINTAINED] Java/Android SDK for Rocket.Chat
Stars: ✭ 27 (+107.69%)
Mutual labels:  livechat
stream-chat-angular
💬 Angular Chat SDK ➜ Stream Chat. Build a chat app with ease.
Stars: ✭ 23 (+76.92%)
Mutual labels:  chat-sdk
recyclerview-selection-demo
A simple Android project that demonstrates the usage of the androidx.recyclerview.selection support library
Stars: ✭ 27 (+107.69%)
Mutual labels:  support-library
support
Collection of agnostic PHP Functions and helpers with zero dependencies to use as foundation in packages and other project
Stars: ✭ 54 (+315.38%)
Mutual labels:  support-library
Zammad
Zammad is a web based open source helpdesk/customer support system
Stars: ✭ 2,814 (+21546.15%)
Mutual labels:  customer-support
it-dgc-verificac19-sdk-android
Digital Covid Certificate SDK
Stars: ✭ 59 (+353.85%)
Mutual labels:  sdk-android
AndroidSliderViewsLibrary
AndroidSliderViewsLibrary is an Android SDK library supports vertical & horizontal carousel and slideshow Views which developers simply integrate on Android project. - by @sung2063
Stars: ✭ 33 (+153.85%)
Mutual labels:  sdk-android
Chatovatko
A chatting C# application with end-to-end encryption.
Stars: ✭ 19 (+46.15%)
Mutual labels:  livechat
material-chef
Exemplo implementado Material Design com a Design Library
Stars: ✭ 15 (+15.38%)
Mutual labels:  support-library

Installing Mobilisten (ZohoSalesIQ Android SDK)

Step 1:

Add the following maven repository in the root build.gradle file (/build.gradle).

 allprojects {
    repositories {
       maven { url 'https://maven.zohodl.com' }
    }
 }
Step 2:

Add the following dependency in the app's build.gradle file (app/build.gradle).

dependencies {
   implementation 'com.zoho.salesiq:mobilisten:9'
}
Step 3:

Then, press Sync Now in the bar that appears in the IDE.

Step 4:

Now, initialize the SDK by adding the following line in the onCreate() method of your Application class. You will have to insert the app key and access key as mentioned below:

public class MyApplication extends Application {
    @Override
    public void onCreate() {
         super.onCreate();
         ZohoSalesIQ.init(this, "your app key", "your access key");
         
         //by default launcher will be hidden can be enabled with following line.
         ZohoSalesIQ.showLauncher(true);
    }
}

Help Doc - Mobilisten (ZohoSalesIQ Android SDK)

Demo Application:

Download our demo app from the Play Store today!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].