Integrate in Android
Add Jitpack dependency in android/build.gradle file

allprojects {
repositories {
google()
mavenCentral()
maven {
url 'https://jitpack.io'
}
}
}allprojects {
repositories {
google()
mavenCentral()
maven {
url = uri("https://jitpack.io")
}
}
}NDK and SDK Version Requirements
NDK Version: The Truvideo SDK requires a minimum NDK version of 27.0.12077973 or above.
SDK Version Error: The minimum Android SDK version required is 24.
Update the NDK Version in android/app/build.gradle file.
Set the Minimum SDK Version in android/app/build.gradle file.
You're now ready to start using the Truvideo SDK in your Flutter App! Don’t forget to configure authentication next.
Last updated
Was this helpful?