Getting Started

Requirement#

Application has been integrated with Terra. If not, please follow this Terra integration instruction.

Installation#

Firstly please refer to Teko repository access guide for instruction to setup the environment.

When the environment is ready, add the below code to import:

Using Gradle

In build.gradle app level (usually app/build.gradle).

android {
....
defaultConfig {
multiDexEnabled true
}
dataBinding {
enabled true
}
....
}
dependencies {
implementation("vn.teko.android.payment:payment-manager-v2:$version")
implementation("vn.teko.android.payment:payment-ui:$version")
//Terra
implementation("vn.teko.terra:terra-core-android:$version")
implementation("vn.teko.apollo:terra-apollo:$version")
}

Dependency#