Release framework of WebRTC Android Project
To add OIWebRTC to your project first add the jitpack URL to your root level settings.gradle
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Note: If you are using an older gradle or Android studio version you might need to add the jitpack URL to your application root-level build.gradle file
Add the OIWebRTC Dependency to your app level build.gradle.
dependencies {
implementation 'com.github.OrionInnovationTRTech:OIWebRTC-Android:Tag'
}Alternatively OIWebRTC can be manually integrated to your project.
Compatible Android versions :
- Android 5.x+
