8000 Update version to 0.2.4. · sinkync/flutter-webrtc@2b301a7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2b301a7

Browse files
committed
Update version to 0.2.4.
1 parent 3f42853 commit 2b301a7

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
## Changelog
22

33
--------------------------------------------
4+
[0.2.4] - 2020.02.03
5+
6+
* Fixed bug.
7+
48
[0.2.3] - 2020.02.03
59

610
* Fixed bug for enableSpeakerphone (Android/iOS).

android/src/main/java/com/cloudwebrtc/webrtc/FlutterWebRTCPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ public void onMethodCall(MethodCall call, Result notSafeResult) {
362362
result.success(null);
363363
} else if (call.method.equals("enableSpeakerphone")) {
364364
boolean enable = call.argument("enable");
365-
rtcAudioManager.setSpeakerphoneOn(enabled);
365+
rtcAudioManager.setSpeakerphoneOn(enable);
366366
result.success(null);
367367
} else if(call.method.equals("getDisplayMedia")) {
368368
Map<String, Object> constraints = call.argument("constraints");

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_webrtc
22
description: Flutter WebRTC plugin for iOS/Android.
3-
version: 0.2.3
3+
version: 0.2.4
44
homepage: https://github.com/cloudwebrtc/flutter-webrtc
55

66
dependencies:

0 commit comments

Comments
 (0)
0