Skip to content

Commit

Permalink
commit meeting
Browse files Browse the repository at this point in the history
  • Loading branch information
ddspwr committed Apr 8, 2019
1 parent 10c7e8b commit 6ea5082
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 7 deletions.
10 changes: 3 additions & 7 deletions libwebrtc/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 28
compileSdkVersion 27



defaultConfig {
minSdkVersion 19
targetSdkVersion 28
targetSdkVersion 27
versionCode 1
versionName "1.0"

Expand Down Expand Up @@ -47,9 +47,5 @@ android {

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

implementation 'com.android.support:appcompat-v7:28.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.android.support:appcompat-v7:27.0.0'
}
Binary file not shown.
2 changes: 2 additions & 0 deletions skywebrtc3/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ android {
}
}



buildTypes {
release {
minifyEnabled false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,19 @@ private void exit() {
localRender.release();
localRender = null;
}

for (SurfaceViewRenderer renderer : _remoteVideoViews.values()) {
renderer.release();
}


for (ProxyVideoSink sink : _remoteSinks.values()) {
sink.setTarget(null);
}
_remoteVideoTracks.clear();
_remoteVideoViews.clear();
_remoteSinks.clear();

}


Expand Down

0 comments on commit 6ea5082

Please sign in to comment.