API Overview
Message Callbacks
Status Codes
- Android
- iOS
- JavaScript
- Flutter
- Add the Juggle Maven repository. Open
settings.gradlein the project root (Project view).
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven {
url "https://repo.juggle.im/repository/maven-releases/"
}
}
}
- Add the Juggle dependency to the application's
build.gradlefile.
dependencies {
...
api 'com.juggle.im:juggle:1.8.13.2'
}
- Add the following to the
Podfile:
pod 'JuggleIM', '1.8.13.2'
- Run the following command in a terminal:
pod install
npm install jugglechat-websdk --save
import JIM from 'jugglechat-websdk';
For a complete example, see Quick Start.
- Add the following under
dependenciesinpubspec.yaml:
# pubspec.yaml
dependencies:
juggle_im: 0.0.63
- For a complete example, see Quick Start.