Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

chore: update dependency #181

Merged
merged 3 commits into from
Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.3.10
- Upper bounds for lints

## 1.3.9
- Update to support newer lints

Expand Down
3 changes: 1 addition & 2 deletions lib/controllers/rtc_event_handlers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,7 @@ Future<RtcEngineEventHandler> rtcEngineEventHandler(
(connection, remoteUid, streamId, code, missed, cached) {
agoraEventHandlers.onStreamMessageError
?.call(connection, remoteUid, streamId, code, missed, cached);
},
onChannelMediaRelayStateChanged: (state, code) {
}, onChannelMediaRelayStateChanged: (state, code) {
agoraEventHandlers.onChannelMediaRelayStateChanged?.call(state, code);
}, onAudioPublishStateChanged:
(channel, oldState, newState, elapseSinceLastState) {
Expand Down
2 changes: 1 addition & 1 deletion lib/models/agora_rtm_mute_request.dart
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class AgoraUIKit {
String platform = platformStr();

String framework = "flutter";
String version = "1.3.9";
String version = "1.3.10";

AgoraUIKit.fromJson(Map<String, dynamic> json)
: platform = json['platform'],
Expand Down
4 changes: 2 additions & 2 deletions lib/src/layout/floating_layout.dart
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ class _FloatingLayoutState extends State<FloatingLayout> {
),
padding:
const EdgeInsets
.all(
.all(
3.0),
child: Icon(
Icons
Expand Down Expand Up @@ -381,7 +381,7 @@ class _FloatingLayoutState extends State<FloatingLayout> {
),
padding:
const EdgeInsets
.all(
.all(
3.0),
child: Icon(
Icons
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: agora_uikit
description: Flutter plugin to simply integrate Agora Video Calling or Live
Video Streaming to your app with just a few lines of code.
version: 1.3.9
version: 1.3.10
homepage: https://www.agora.io/en/
repository: https://github.com/AgoraIO-Community/VideoUIKit-Flutter

Expand All @@ -15,7 +15,7 @@ dependencies:
flutter:
sdk: flutter
http: ">=0.13.1 <2.0.0"
lints: ">=1.0.1"
lints: ">=1.0.1 <3.0.1"
permission_handler: ^11.0.0

dev_dependencies:
Expand Down
Loading