Installation
This SDK integrates a fully serviced chat experience on BotStacks.
Android Installation
If you are only targeting Android the dependency is:
Compose Multiplatform Installation
Add ai.botstacks:chat-sdk:{version}
to your dependencies
To setup Compose Multiplatform click here
Initialization Compose Multiplatform
In order to display any of the UI components and access chat data, you must first initialize the SDK and log in as a chat user.
Step 1. Initialization
In your Application class, call BotStacksChat.shared.setup
with your API key. You can obtain your API key from
the Botstacks Dashboard. If you don’t yet have one, you can create one for FREE!
If you don’t have an Application class, create one.
Note, you can optionally delay load and later call BotStacksChat.shared.load
to load BotStacks in whatever load sequence you wish.
If you’d like Giphy support in your chats, send your Giphy API key during setup
.
Step 2. Logging in
Nearly all functionality is within the context of a chat user. That said, you must first be logged in as a chat user in order to appropriately display the UI components.
To log in, call the login
function prior to displaying any UI components. Below is an example of how to accomplish this.
Step 3. Render the UI
The BotStacks UI Kit uses Jetpack Compose. You can add it to any NavHost
by rendering inside an BotStacksThemeEngine
and adding the BotStacksChatController
. Customization controls for the Theme Engine are described below.
Step 4. Push Notifications (Firebase Cloud Messaging)
For push notifications via FCM, just pass your push token to BotStacks.
Compose Multiplatform Environment Setup
Our Chat SDK uses Moko Resources to include the internal assets in the SDK for iOS.
Since iOS doesn’t bundle resources for static frameworks, we have to add the Moko resource plugin and setup the environment properly for inclusion.
Step 1: Update Gradle
Step 2: Add Build Phase to XCode
Per the documentation from Moko here, we need to add a Run Script Build Phase with the following script:
Be sure to update shared
with the name of your shared module. The Multiplatform Wizard usually uses shared
or composeApp
.
Step 3: Setup Cocoapods
Add a podfile with GoogleMaps and Giphy:
Setup cocoapods in gradle:
Android Initialization
Step 1: Initialize the SDK
In each platform (Android/iOS), call BotStacksChat.shared.setup with your API key. You can obtain your API key from the Botstacks Dashboard. If you don’t yet have one, you can create one for FREE!
Android
iOS
Note, you can optionally delay load and later call BotStacksChat.shared.load
to load BotStacks in whatever load sequence you wish.
If you’d like Giphy support in your chats, send your Giphy API key during setup
.
Step 2: Logging in
Nearly all functionality is within the context of a chat user. That said, you must first be logged in as a chat user in order to appropriately display the UI components.
To log in, call the login function prior to displaying any UI components. Below is an example of How to accomplish this.
Step 3: Render the UI
The BotStacks UI Kit uses Jetpack Compose (Multiplatform). There is a plethora of navigation protocols for Compose Multiplatform, so pick whatever one works best for your app.
Our Sample uses Voyager. To implement the controller screen, we create a common approach that provides platform-specific bottom sheet implementations for both iOS and Android. This ensures that our apps remain consistent with the respective platforms they run on.
Step 4: Theming
You can theme your BotStacks UI kit by modifying the defaults of the BotStacksThemeEngine
. The theme supports fonts, colors, assets, and dimensions. Configure it like this:
Was this page helpful?