{"id":22934473,"url":"https://github.com/zoho/salesiq-mobilisten-android-sample","last_synced_at":"2026-05-13T14:02:54.105Z","repository":{"id":50902269,"uuid":"135388492","full_name":"zoho/salesiq-mobilisten-android-sample","owner":"zoho","description":"Sample App to integrate SalesIQ Android SDK (Mobilisten)","archived":false,"fork":false,"pushed_at":"2025-09-29T06:01:57.000Z","size":1704,"stargazers_count":15,"open_issues_count":2,"forks_count":4,"subscribers_count":16,"default_branch":"master","last_synced_at":"2025-09-29T07:23:15.129Z","etag":null,"topics":["chat-sdk","chatbot","customer-support","livechat","mobilisten","mobilisten-android-sdk","salesiq-android-sdk","salesiq-mobilisten-android","sdk","sdk-android","support-library","supportsdk"],"latest_commit_sha":null,"homepage":"https://mobilisten.io/","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zoho.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-05-30T04:34:53.000Z","updated_at":"2025-09-29T05:56:42.000Z","dependencies_parsed_at":"2023-02-08T18:46:07.611Z","dependency_job_id":"34e81405-56eb-45dc-83fb-d8cab1ef6537","html_url":"https://github.com/zoho/salesiq-mobilisten-android-sample","commit_stats":null,"previous_names":[],"tags_count":50,"template":false,"template_full_name":null,"purl":"pkg:github/zoho/salesiq-mobilisten-android-sample","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoho%2Fsalesiq-mobilisten-android-sample","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoho%2Fsalesiq-mobilisten-android-sample/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoho%2Fsalesiq-mobilisten-android-sample/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoho%2Fsalesiq-mobilisten-android-sample/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zoho","download_url":"https://codeload.github.com/zoho/salesiq-mobilisten-android-sample/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoho%2Fsalesiq-mobilisten-android-sample/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279090098,"owners_count":26101129,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-15T02:00:07.814Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chat-sdk","chatbot","customer-support","livechat","mobilisten","mobilisten-android-sdk","salesiq-android-sdk","salesiq-mobilisten-android","sdk","sdk-android","support-library","supportsdk"],"created_at":"2024-12-14T11:40:09.944Z","updated_at":"2026-05-13T14:02:54.093Z","avatar_url":"https://github.com/zoho.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Installing Mobilisten (ZohoSalesIQ Android SDK)\n\n### Requirements\nEnsure that your project meets the following requirements:\n\n- Minimum Android Version: Android 6.0 (Lollipop) (API Level 23)\n   - Compile SDK Version: 35 (Android 15)\n   - Required Permissions:\n      - android.permission.INTERNET (Required for network operations)\n\n###### Step 1:\nAdd the following maven repository in the `settings.gradle` file or root build.gradle file `build.gradle`.\n\nFor Gradle version 6.7 and below\n```Gradle\n// Add the following to your project's root build.gradle file.\n\nallprojects {\n   repositories {\n      google()\n      mavenCentral()\n      // ...\n      maven { url 'https://maven.zohodl.com' }\n   }\n}\n```\n\nFor Gradle version 6.8 and above\n```Gradle\n// Add the following to your settings.gradle file.\n\ndependencyResolutionManagement {\n    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)\n    repositories {\n        google()\n        mavenCentral()\n        // Add the Zoho Maven URL here\n        maven { url 'https://maven.zohodl.com' }\n    }\n}\n```\n     \n![enter image description here](https://www.zohowebstatic.com/sites/zweb/images/salesiq/step-4---settings.gradle-android-sdk.png)\n###### Step 2:\nAdd the following dependency in the app's build.gradle file (**app/build.gradle**).\n\n    dependencies {\n       implementation 'com.zoho.salesiq:mobilisten:8.3.6'\n    }\n\n![enter image description here](https://www.zohowebstatic.com/sites/zweb/images/salesiq/step-5---dependency-android-sdk.png)\n###### Step 3:\n\nThen, press **Sync Now** in the bar that appears in the IDE.\n\n![enter image description here](https://www.zohowebstatic.com/sites/zweb/images/salesiq/sync-now---android-sdk.png)\n###### Step 4:\n\nNow, 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:\n\n    public class MyApplication extends Application {\n        @Override\n        public void onCreate() {\n            super.onCreate();\n            \n            InitConfig initConfig = new InitConfig();\n            initConfig.setFont(Fonts.REGULAR, \u003cfontpath\u003e);\n            \n            ZohoSalesIQ.init(this, \"your app key\", \"your access key\", initConfig, new InitListener() {\n                @Override\n                public void onInitSuccess() {\n                     ZohoSalesIQ.Launcher.show(ZohoSalesIQ.Launcher.VisibilityMode.ALWAYS); //by default launcher will be hidden and it can be enabled with this line.\n                }\n\n                @Override\n                public void onInitError(int errorCode, String errorMessage) {\n                    //your code\n                }\n            });\n        }\n    }\n\n###### Step 5:\nAlso, in the **AndroidManifest.xml** file, add the application class name in the **application** tag.\n\n    \u003capplication  android:name=\".MyApplication\"\u003e\n      ...\n    \u003c/application\u003e​\n###### Step 6:\n### Proguard rules:\nIf you have enabled ProGuard(minifyEnabled) R8, then please add the following rules in your `proguard-rules.pro` file in your `project/android` folder.\n```\n-dontwarn kotlinx.parcelize.Parcelize\n```\n\nHelp Doc - [Mobilisten (ZohoSalesIQ Android SDK)](https://www.zoho.com/salesiq/help/developer-section/android-mobile-sdk-installation.html)\n\n###### Demo Application:\nDownload our demo app from the [Play Store](https://play.google.com/store/apps/details?id=com.zoho.salesiq.zylkerhomes) today!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzoho%2Fsalesiq-mobilisten-android-sample","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzoho%2Fsalesiq-mobilisten-android-sample","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzoho%2Fsalesiq-mobilisten-android-sample/lists"}