Sample app written in Kotlin that demonstrates video playback using the vdocipher android sdk.
For the java version, see here.
repositories {
// other repo, e.g. jcenter()
maven {
url "https://github.com/VdoCipher/maven-repo/raw/master/repo"
}
}
// use the latest available version
implementation 'com.vdocipher.aegis:vdocipher-android:1.26.2'
If you also need Google Cast integration for your app, add a dependency to the cast plugin as well.
Add the dependency in your cast app module's build.gradle
file.
def vdocipher_sdk_version = '1.23.1'
implementation 'com.vdocipher.aegis:vdocipher-android:' + vdocipher_sdk_version
implementation 'com.google.android.gms:play-services-cast-framework:16.2.0'
You also need to ensure Java 8 support is enabled by adding the following block to each of your app module's build.gradle
file inside the android
block:
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
Please send all issues and feedback to support@vdocipher.com