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

allprojects {
repositories {
google()
mavenCentral()
maven {
url '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.
android {
ndkVersion "27.0.12077973"
// Other configurations...
}
Set the Minimum SDK Version in android/app/build.gradle file.
android {
defaultConfig {
minSdk 24
// Other configurations...
}
}
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?