Create your first ticket
Sendbird Desk SDK for Android lets you easily initialize, configure, and build the customer-support related functionalities to a client app. When a customer asks for help through live, in-app support built with the Desk SDK, agents receive those messages as tickets and can start a conversation on the Sendbird Dashboard. This page walks you through the quick steps to create your first ticket by installing and initializing the Desk SDK.
Note: As Sendbird Desk works based on Sendbird Chat, the interaction between users is built and provided by Sendbird Chat.
Requirements
The requirements of the Desk SDK for Android are as below:
- Android 5.0 (API level 21) or later
- Java 8 or later
- Support androidx only
- Android Gradle plugin 4.0.1 or later
- Sendbird Chat SDK for Android 4.0.3 and later
Prerequisite
Before installing Sendbird Desk SDK, you will need an account on Sendbird Dashboard. Sign up to create a Sendbird application first.
Note: A Sendbird application gets paired up with one client app. Agents can support customers across all platforms, but customers from different Sendbird applications are excluded because all data is limited to the scope of a single application.
Get started
Step 1 Create a project
To get started, open Android Studio
and create a new project for Desk in the Project window as follows.
- Click Start a new Android Studio project in the Welcome to Android Studio window.
- Select Empty Activity in the Select a Project Template window and click Next.
- Enter your project name in the Name field in the Configure your project window.
- Select your language as either Java or Kotlin from the Language drop-down menu.
- Make sure Use legacy android.support.libraries is unchecked.
- Select minimum API level as 21 or higher.
Step 2 Install using Gradle
You can install the Desk SDK for Android using Gradle. First, you need to add the Sendbird repository to your project. In this step, use different approaches as instructed below depending on the Gradle version. Then, add dependency to your module build.gradle
file, regardless of the version.
- Add a repository.
If you are using Gradle 6.7 or lower, add the following code to your root build.gradle
file. Make sure the above code block isn't added to your module build.gradle
file.
For Gradle 6.8 or higher, add the following to your settings.gradle
file:
Note: To learn more about updates to Gradle, see this release note.
- Add dependency.
Once the repository is set, for all Gradle versions, add the dependency to your module build.gradle
file:
Step 3 Initialize the Desk SDK
Initialization of Sendbird Desk SDK requires your Sendbird application's Application ID, which can be found on Sendbird Dashboard. As Sendbird Desk SDK uses the features provided by Sendbird Chat SDK, you need to initialize a SendbirdChat
instance as well.
- Initialize a
SendBirdDesk
instance when launching a client app. - Copy Application ID of your Sendbird application from the dashboard, which should be passed to
APP_ID
ofInitParams
. The same Application ID must be used for both Chat and Desk SDKs. - Call the
SendbirdChat.init(InitParams)
method using the copiedAPP_ID
withinApplication.onCreate()
. - Call the
SendBirdDesk.init()
method withinApplication.onCreate()
.
Note: If you call
SendBirdDesk.init()
again after callingSendbirdChat.init(InitParams)
with a differentAPP_ID
, all existing Desk-related data in the client app will be deleted.
Step 4 Add BaseApplication
Add INTERNET
permission and BaseApplication
you created in the earlier step to AndroidManifest.xml
.
Step 5 Authenticate a customer from Sendbird Chat
As explained earlier, Sendbird Desk SDK handles converstaion between customers and agents within a ticket using the features provided by Sendbird Chat. Because of its dependency on Sendbird Chat, every ticket in Sendbird Desk is mapped to a group channel in Sendbird Chat and every message sent by customers comes and goes through Sendbird Chat. To receive their messages, you need to authenticate the user using the SendbirdChat.connect()
and the SendBirdDesk.authenticate()
methods with their USER_ID
used in Sendbird Chat.
Step 6 Create your first ticket
Implement the Ticket.create()
method to create a ticket either before or after the customer’s initial message. Once a ticket is successfully created on the Desk server, use ticket.getChannel()
to retrieve the information of the ticket and its channel as a callback from the server.
Until a customer sends the first message, agents can’t see the ticket on the dashboard. When the customer initiates conversation by sending a message, the ticket is assigned to an available agent by the Desk server while messages are sent and received through the Chat SDK.
Note: Because the
SendbirdChat
instance in a client app is connected to the Sendbird server, Desk-related events are delivered to the Chat SDK's event handlers. The event handlers receive callbacks from the server through event callback methods such asonMessageReceived()
,onUserJoined()
, and more.