Core
A robust user authentication system is implemented to ensure our platform's security and privacy. User credentials are securely stored and encrypted using industry-standard methods. Access control is enforced through carefully managed permissions, granting users access only to features and functionalities based on the entitlements. This approach adheres to stringent security and data protection standards. Personalized services are provided by leveraging stored credentials, allowing for tailored user experiences. It is important to note that authentication is mandatory for utilizing any functionality within the TruvideoSDK.
Note
Please note that authentication is a prerequisite for utilizing any functionality within the TruvideoSDK.
Adding Module
Include the following dependency in your gradle file get latest version
implementation 'com.github.Truvideo:truvideo-sdk-android-core:x.x.x'
Ensure the inclusion of the jitpack repository in the setting.gradle file
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
maven {
url 'https://jitpack.io'
}
}
}
Required permissions
To access internet service you need to add the below code to AndroidManifest.xml
<uses-permission android:name="android.permission.INTERNET"/>
Last updated
Was this helpful?