Get Started - Android
This section will cover a step-by-step approach to bridge your Flutter project to OneTalk Live Chat Android SDK. We will be using Android Studio to configure native code in Flutter project.
Configure and Initialize TapTalk.io Omnichannel Android SDK for Flutter project
Step 1: Open Flutter project's android folder in Android Studio
Step 2: Install TapTalk.io Omnichannel SDK
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
maven { url "https://s3.amazonaws.com/repo.commonsware.com" }
}
}dependencies {
implementation 'com.github.taptalk-io:taptalk.io-omnichannel-android:2.6.2'
}Step 3: Create Flutter Platform Client
Step 4: Add an Android platform-specific implementation
Step 5: Enable Chat Features
Last updated