To export aar file from the SDK run this command from root folder of project
./gradlew sdk:assembleRelease
Aar file can be found in this folder: sdk\build\outputs\aar Rename file to tamara-sdk.aar
Copy aar file to your app libs folder: app-> libs->aars->tamara-sdk.aar
In app level build.gradle, add tamara-sdk.aar as libary:
implementation fileTree(dir: 'libs/aars', include: ['*.aar'])
In project level build.gradle:
allprojects {
repositories {
flatDir {
dirs 'libs'
}
}
}
Sync project with gradle and start the intergration