Kotlin

Create an Android project

New Android Project

Create new a app-to-phone folder inside the vonage-tutorial folder:

mkdir app-to-phone

Open Android Studio and, from the menu, select File > New > New Project.... Select a Empty Activity template type and click Next.

Create project

Enter messaging as project name, point location to previously created vonage-tutorial/messaging folder, select as Kotlin language and press Finish button.

You now have a brand new Android Project.

Add Client SDK dependency

To add the Client SDK to the project, add the following dependency in the module-level build.gradle file.:

Build gradle
dependencies {
    // ...
    implementation 'com.vonage:client-sdk-chat:1.3.0'
}