Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

Programmable Chat Android Quickstart


(error)

Danger

Programmable Chat has been deprecated and is no longer supported. Instead, we'll be focusing on the next generation of chat: Twilio Conversations. Find out more about the EOL process here(link takes you to an external page).

If you're starting a new project, please visit the Conversations Docs to begin. If you've already built on Programmable Chat, please visit our Migration Guide to learn about how to switch.

In this guide, we will get you up and running quickly with a sample application you can build on as you learn more about Chat. Sound like a plan? Then let's get cracking!

Table Of Contents


Gather Account Information

information page anchor

The first thing we need to do is grab all the necessary configuration values from our Twilio account. To set up our back-end for Chat, we will need five pieces of information:

Config ValueDescription
Service Instance SIDLike a database for your Chat data - generate one in the console here(link takes you to an external page)
Account SIDYour primary Twilio account identifier - find this in the console here(link takes you to an external page).
API KeyUsed to authenticate - generate one here(link takes you to an external page).
API SecretUsed to authenticate - just like the above, you'll get one here(link takes you to an external page).
Mobile Push Credential SIDUsed to send notifications from Chat to your app - create one in the console here(link takes you to an external page) or learn more about Chat Push Notifications in Android.

Create a Twilio Function

create-a-twilio-function page anchor

When you build your application with Twilio Chat, you will need two pieces - the client (this Android app) and a server that returns access tokens. If you don't want to set up your own server, you can use Twilio Functions to easily create this part of your solution.

If you haven't used Twilio Functions before, it's pretty easy - Functions are a way to run your Node.js code in Twilio's environment. You can create new functions on the Twilio Console's Manage Functions Page(link takes you to an external page).

You will need to choose the "Programmable Chat Access Token" template, and then fill in the account information you gathered above. After you do that, the Function will appear, and you can read through it. Save it, and it will immediately be published at the URL provided - go ahead and put that URL into a web browser, and you should see a token being returned from your Function. If you are getting an error, check to make sure that all of your account information is properly defined.

Want to learn more about the code in the Function template, or want to write your own server code? Checkout the Twilio Chat Identity Guide for the underlying concepts.

Now that the Twilio Function is set up, let's get the starter Android app up and running.

(error)

Danger

NOTE: You should not use Twilio Functions to generate access tokens for your app in production. Each function has a publicly accessible URL which a malicious actor could use to obtain tokens for your app and abuse them.

Read more about access tokens here to learn how to generate access tokens in your own C#, Java, Node.js, PHP, Python, or Ruby application.


Download and explore the mobile app

app page anchor

To get going quickly, there is a starter Android app written in Kotlin.

Just open this project with Android Studio, and let it sync with Gradle to install all the dependencies.


Configure and Run the Mobile App

configure-and-run-the-mobile-app page anchor
  • Generate google-services.json(link takes you to an external page) file and place it under chat-demo-android/ .
  • Set the value of ACCESS_TOKEN_SERVICE_URL in gradle.properties file to match your Twilio Functions URL.

_10
ACCESS_TOKEN_SERVICE_URL=http://example.com/get-token/

Once the app loads, you should see a UI like this one:

quick start app screenshot.

Start sending yourself a few messages - they should start appearing both in a RecyclerView in the starter app, and in your browser as well if you kept that window open.

You're all set! Now you can start building your own application. Please follow this guide to integrate the Android SDK into your existing project, head over to our install guide. If you'd like to learn more about how Chat works, you might want to dive into our user identity guide, which talks about the relationship between the mobile app and the server.


Rate this page: