Integrate in Android

  • Step 1

Add Jitpack dependency in settings.gradle

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        maven {
            url 'https://jitpack.io'
        }
    }
}
  • Step 2

In App build.gradle add dependency

implementation 'com.github.Truvideo:truvideo-sdk-android-core:x.x.x'
implementation 'com.github.Truvideo:truvideo-sdk-android-camera:x.x.x'
implementation 'com.github.Truvideo:truvideo-sdk-android-media:x.x.x'
implementation 'com.github.Truvideo:truvideo-sdk-android-image:x.x.x'
implementation 'com.github.Truvideo:truvideo-sdk-android-video:x.x.x'
  • Step 3

Check latest version release version on this link

  • Step 4

Replace x.x.x with the release version and click on sync

After sync process complete SDK will be imported.


You're now ready to start using the Truvideo SDK in your Android app! Don’t forget to configure authentication next.

Last updated

Was this helpful?