salesiq_mobilisten_calls 0.0.5
salesiq_mobilisten_calls: ^0.0.5 copied to clipboard
Mobilisten calls enables you to give your users the best in-app live chat experience. Mobilisten provides drop-in in-app chat and knowledge base.
Zoho SalesIQ Mobilisten Calls Flutter Plugin #
Installation: #
Please follow the steps mentioned below to install the Mobilisten Calls plugin in your Flutter mobile application.
Requirements #
Android: Ensure that your project meets the following requirements:
- Minimum Android Version: Android 6.0 (Marshmallow) (API Level 23)
- Compile SDK Version: 35 (Android 15)
- Required Permissions:
- android.permission.INTERNET (Required for network operations)
- android.permission.POST_NOTIFICATIONS
- android.permission.FOREGROUND_SERVICE_SPECIAL_USE
- android.permission.FOREGROUND_SERVICE_PHONE_CALL
- android.permission.FOREGROUND_SERVICE_MICROPHONE
- android.permission.MANAGE_OWN_CALLS
- android.hardware.sensor.proximity
- android.permission.BLUETOOTH_CONNECT
- android.permission.USE_FULL_SCREEN_INTENT
- android.permission.MODIFY_AUDIO_SETTINGS
- android.permission.SYSTEM_ALERT_WINDOW
- android.permission.RECORD_AUDIO
- android.permission.VIBRATE
iOS: iOS 13 or above is required.
Installation steps: #
- Add Mobilisten Calls as a dependency within the
pubspec.yamlfile as shown below.
dependencies:
flutter:
sdk: flutter
+ salesiq_mobilisten: ^6.6.0
+ salesiq_mobilisten_calls: ^0.0.5
-
Run
flutter pub getto fetch dependencies for the project. -
Navigate to the
iosdirectory and run thepod installcommand. -
Add the following permissions in the Info.plist file for the iOS Runner project.

-
Open the
androiddirectory in Android Studio or any IDE used for Android development. Open the projectbuild.gradleorsettings.gradlefile and add the following maven repository.
For Gradle version 6.7 and below
// Add the following to your project's root build.gradle file.
allprojects {
repositories {
google()
mavenCentral()
// ...
maven { url 'https://maven.zohodl.com' }
}
}
For Gradle version 6.8 and above
// Add the following to your settings.gradle file.
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
// Add the Zoho Maven URL here
maven { url 'https://maven.zohodl.com' }
}
}
Now, click on Sync Now or use the Sync Project with Gradle Files option under the File menu.
- Build and run the flutter application on Android and iOS.
API Documentation #
You can find the list of all APIs and their documentation here under the API Reference section.