Skip to content

Commit

Permalink
Merge pull request #181 from ebsangam/chore/update-dependency
Browse files Browse the repository at this point in the history
Fix upper bounds for lints
  • Loading branch information
tadaspetra committed Apr 29, 2024
2 parents 238e1dd + 1ab928a commit f1e935c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
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

0 comments on commit f1e935c

Please sign in to comment.