Skip to content

Commit 63577b4

Browse files
authored
pubspec and code fixes for initial release (#440)
1 parent 2d6f7c8 commit 63577b4

File tree

8 files changed

+70
-101
lines changed

8 files changed

+70
-101
lines changed

dogfooding/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies:
2121
google_sign_in: ^6.1.1
2222
http: ^0.13.5
2323
path_provider: ^2.0.14
24-
share_plus: ^6.3.1
24+
share_plus: ^7.0.2
2525
shared_preferences: ^2.0.17
2626
stream_chat_flutter:
2727
git:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import 'package:stream_video/stream_video.dart';

packages/stream_video/pubspec.yaml

Lines changed: 28 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,47 @@
11
name: stream_video
2-
description: A simple command-line application.
3-
version: 1.0.0
4-
# homepage: https://www.example.com
2+
description: The Official Low-level Client for Stream Video, a service for building video calls, audio rooms, and live-streaming applications.
3+
version: 0.0.1
4+
homepage: https://getstream.io/video/
5+
repository: https://github.com/GetStream/stream-video-flutter
6+
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues
57

68
environment:
7-
sdk: '>=2.17.0 <3.0.0'
9+
sdk: ">=2.18.0 <4.0.0"
10+
flutter: ">=3.3.0"
811

912
dependencies:
1013
flutter:
1114
sdk: flutter
12-
async: ^2.10.0
13-
equatable: ^2.0.3
15+
async: ^2.11.0
16+
equatable: ^2.0.5
1417
http: ^0.13.4
1518
jose: ^0.3.3
16-
protobuf: ^2.1.0
19+
protobuf: ^3.0.0
1720
tart: ^0.3.0
18-
uuid: ^3.0.6
19-
rxdart: ^0.27.5
20-
web_socket_channel: ^2.2.0
21-
connectivity_plus: ^4.0.0
22-
collection: ^1.16.0
23-
flutter_webrtc: ^0.9.25
24-
intl: ^0.17.0
25-
meta: ^1.8.0
21+
uuid: ^3.0.7
22+
rxdart: ^0.27.7
23+
web_socket_channel: ^2.4.0
24+
connectivity_plus: ^4.0.1
25+
collection: ^1.17.1
26+
flutter_webrtc: ^0.9.35
27+
intl: ^0.18.1
28+
meta: ^1.9.1
2629
sdp_transform: ^0.3.2
27-
synchronized: ^3.0.0+3
30+
synchronized: ^3.1.0
2831
state_notifier: ^0.7.2+1
2932
shared_preferences: ^2.2.0
33+
fixnum: ^1.1.0
34+
dart_webrtc: ^1.1.1
3035

3136
dev_dependencies:
3237
flutter_test:
3338
sdk: flutter
3439
mockito: ^5.2.0
3540
mocktail: ^0.3.0
41+
42+
topics:
43+
- video
44+
- audio
45+
- audioroom
46+
- webrtc
47+
- livestream

packages/stream_video_flutter/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ dependencies:
3838
path_provider: ^2.0.14
3939
share_plus: ^6.3.1
4040
device_info_plus: ^8.1.0
41-
intl: ^0.17.0
41+
intl: ^0.18.1
4242
stream_video:
4343
path: ../../stream_video
4444
stream_video_flutter:

packages/stream_video_flutter/pubspec.yaml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
name: stream_video_flutter
2-
description: A new Flutter package project.
2+
description: The Official UI package for Stream Video, a service for building video calls, audio rooms, and live-streaming applications.
33
version: 0.0.1
4-
homepage:
4+
homepage: https://getstream.io/video/
5+
repository: https://github.com/GetStream/stream-video-flutter
6+
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues
57

68
environment:
79
sdk: ">=2.17.0 <3.0.0"
@@ -13,8 +15,8 @@ dependencies:
1315
eva_icons_flutter: ^3.1.0
1416
flutter:
1517
sdk: flutter
16-
flutter_background: ^1.1.0
17-
flutter_webrtc: ^0.9.25
18+
flutter_background: ^1.2.0
19+
flutter_webrtc: ^0.9.35
1820
google_fonts: ^4.0.4
1921
rate_limiter: ^1.0.0
2022
stream_video:
@@ -32,3 +34,10 @@ flutter:
3234
assets:
3335
- images/
3436
uses-material-design: true
37+
38+
topics:
39+
- video
40+
- audio
41+
- audioroom
42+
- webrtc
43+
- livestream

packages/stream_video_flutter_background/lib/stream_video_flutter_background.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import 'dart:io';
22

33
import 'package:flutter/foundation.dart';
4-
import 'package:stream_video_flutter_background/model/notification_options.dart';
54

65
import 'model/notification_payload.dart';
76
import 'stream_video_flutter_background_platform_interface.dart';
Lines changed: 15 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,25 @@
11
name: stream_video_flutter_background
2-
description: A new Flutter project.
2+
description: Adds background support for Stream Video SDK, a service for building video calls, audio rooms, and live-streaming applications.
33
version: 0.0.1
4-
homepage:
4+
homepage: https://getstream.io/video/
5+
repository: https://github.com/GetStream/stream-video-flutter
6+
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues
57

68
environment:
7-
sdk: '>=2.18.5 <3.0.0'
8-
flutter: ">=2.5.0"
9+
sdk: ">=2.18.0 <4.0.0"
10+
flutter: ">=3.3.0"
911

1012
dependencies:
1113
flutter:
1214
sdk: flutter
13-
equatable: ^2.0.3
14-
plugin_platform_interface: ^2.0.2
15+
equatable: ^2.0.5
16+
plugin_platform_interface: ^2.1.4
1517

1618
dev_dependencies:
1719
flutter_test:
1820
sdk: flutter
19-
flutter_lints: ^2.0.0
21+
flutter_lints: ^2.0.2
2022

21-
# For information on the generic Dart part of this file, see the
22-
# following page: https://dart.dev/tools/pub/pubspec
23-
24-
# The following section is specific to Flutter packages.
2523
flutter:
2624
# This section identifies this Flutter project as a plugin project.
2725
# The 'pluginClass' specifies the class (in Java, Kotlin, Swift, Objective-C, etc.)
@@ -41,33 +39,9 @@ flutter:
4139
# ios:
4240
# pluginClass: StreamVideoFlutterBackgroundPlugin
4341

44-
# To add assets to your plugin package, add an assets section, like this:
45-
# assets:
46-
# - images/a_dot_burr.jpeg
47-
# - images/a_dot_ham.jpeg
48-
#
49-
# For details regarding assets in packages, see
50-
# https://flutter.dev/assets-and-images/#from-packages
51-
#
52-
# An image asset can refer to one or more resolution-specific "variants", see
53-
# https://flutter.dev/assets-and-images/#resolution-aware
54-
55-
# To add custom fonts to your plugin package, add a fonts section here,
56-
# in this "flutter" section. Each entry in this list should have a
57-
# "family" key with the font family name, and a "fonts" key with a
58-
# list giving the asset and other descriptors for the font. For
59-
# example:
60-
# fonts:
61-
# - family: Schyler
62-
# fonts:
63-
# - asset: fonts/Schyler-Regular.ttf
64-
# - asset: fonts/Schyler-Italic.ttf
65-
# style: italic
66-
# - family: Trajan Pro
67-
# fonts:
68-
# - asset: fonts/TrajanPro.ttf
69-
# - asset: fonts/TrajanPro_Bold.ttf
70-
# weight: 700
71-
#
72-
# For details regarding fonts in packages, see
73-
# https://flutter.dev/custom-fonts/#from-packages
42+
topics:
43+
- video
44+
- audio
45+
- audioroom
46+
- webrtc
47+
- livestream
Lines changed: 11 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
name: stream_video_push_notification
2-
description: A new Flutter package project.
2+
description: Adds push notification support for Stream Video, a service for building video calls, audio rooms, and live-streaming applications.
33
version: 0.0.1
4-
homepage:
4+
homepage: https://getstream.io/video/
5+
repository: https://github.com/GetStream/stream-video-flutter
6+
issue_tracker: https://github.com/GetStream/stream-video-flutter/issues
57

68
environment:
79
sdk: '>=2.18.5 <3.0.0'
@@ -20,13 +22,9 @@ dependencies:
2022
dev_dependencies:
2123
flutter_test:
2224
sdk: flutter
23-
flutter_lints: ^2.0.0
25+
flutter_lints: ^2.0.2
2426
mocktail: ^0.3.0
2527

26-
# For information on the generic Dart part of this file, see the
27-
# following page: https://dart.dev/tools/pub/pubspec
28-
29-
# The following section is specific to Flutter packages.
3028
flutter:
3129
# This section identifies this Flutter project as a plugin project.
3230
# The 'pluginClass' specifies the class (in Java, Kotlin, Swift, Objective-C, etc.)
@@ -46,33 +44,9 @@ flutter:
4644
ios:
4745
pluginClass: StreamVideoPushNotificationPlugin
4846

49-
# To add assets to your plugin package, add an assets section, like this:
50-
# assets:
51-
# - images/a_dot_burr.jpeg
52-
# - images/a_dot_ham.jpeg
53-
#
54-
# For details regarding assets in packages, see
55-
# https://flutter.dev/assets-and-images/#from-packages
56-
#
57-
# An image asset can refer to one or more resolution-specific "variants", see
58-
# https://flutter.dev/assets-and-images/#resolution-aware
59-
60-
# To add custom fonts to your plugin package, add a fonts section here,
61-
# in this "flutter" section. Each entry in this list should have a
62-
# "family" key with the font family name, and a "fonts" key with a
63-
# list giving the asset and other descriptors for the font. For
64-
# example:
65-
# fonts:
66-
# - family: Schyler
67-
# fonts:
68-
# - asset: fonts/Schyler-Regular.ttf
69-
# - asset: fonts/Schyler-Italic.ttf
70-
# style: italic
71-
# - family: Trajan Pro
72-
# fonts:
73-
# - asset: fonts/TrajanPro.ttf
74-
# - asset: fonts/TrajanPro_Bold.ttf
75-
# weight: 700
76-
#
77-
# For details regarding fonts in packages, see
78-
# https://flutter.dev/custom-fonts/#from-packages
47+
topics:
48+
- video
49+
- audio
50+
- audioroom
51+
- webrtc
52+
- livestream

0 commit comments

Comments
 (0)