Skip to content

Latest commit

 

History

History
29 lines (25 loc) · 661 Bytes

File metadata and controls

29 lines (25 loc) · 661 Bytes

Tamara Android SDK

Export aar file

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

Use aar file as library

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