Updated webrtc sdk using an alternative repository https://github.com/webrtc-sdk/android instead of the deprecated and official Google library openvidu-android: Downgraded appcompat-resources to 1.4.2 Downgraded appcompat-resources to 1.4.2 for avoiding the targetSdk and compileSdk update openvidu-android: Removed enableDtlsSrtp from PeerConnection config enableDtlsSrtp is not longer exported as public configuration parameter (https://webrtc-review.googlesource.com/c/src/+/234864/10/sdk/android/api/org/webrtc/PeerConnection.java)
30 lines
594 B
Groovy
30 lines
594 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:7.2.2'
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|