Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add platforms in pubspec.yaml for pub.dev #1975

Merged
merged 5 commits into from
Apr 15, 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
8 changes: 8 additions & 0 deletions dart/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ documentation: https://docs.sentry.io/platforms/dart/
environment:
sdk: '>=2.17.0 <4.0.0'

platforms:
android:
ios:
macos:
linux:
windows:
web:

dependencies:
http: '>=0.13.0 <2.0.0'
meta: ^1.3.0
Expand Down
8 changes: 8 additions & 0 deletions dio/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ documentation: https://docs.sentry.io/platforms/dart/integrations/dio/
environment:
sdk: '>=2.17.0 <4.0.0'

platforms:
android:
ios:
macos:
linux:
windows:
web:

dependencies:
dio: ^5.0.0
sentry: 7.19.0
Expand Down
8 changes: 8 additions & 0 deletions drift/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ issue_tracker: https://github.com/getsentry/sentry-dart/issues
environment:
sdk: '>=2.17.0 <4.0.0'

platforms:
android:
ios:
macos:
linux:
windows:
web:

dependencies:
sentry: 7.19.0
meta: ^1.3.0
Expand Down
7 changes: 7 additions & 0 deletions file/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ documentation: https://docs.sentry.io/platforms/dart/configuration/integrations/
environment:
sdk: '>=2.19.0 <4.0.0'

platforms:
android:
ios:
macos:
linux:
windows:

dependencies:
sentry: 7.19.0
meta: ^1.3.0
Expand Down
8 changes: 8 additions & 0 deletions flutter/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ environment:
sdk: '>=2.17.0 <4.0.0'
flutter: '>=3.0.0'

platforms:
android:
ios:
macos:
linux:
windows:
web:

dependencies:
flutter:
sdk: flutter
Expand Down
8 changes: 8 additions & 0 deletions hive/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ issue_tracker: https://github.com/getsentry/sentry-dart/issues
environment:
sdk: '>=2.17.0 <4.0.0'

platforms:
android:
ios:
macos:
linux:
windows:
web:

dependencies:
sentry: 7.19.0
hive: ^2.2.3
Expand Down
8 changes: 8 additions & 0 deletions isar/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ environment:
sdk: '>=2.17.0 <4.0.0'
flutter: '>=3.3.0'

platforms:
android:
ios:
macos:
linux:
windows:
web:

dependencies:
isar: ^3.1.0
isar_flutter_libs: ^3.1.0 # contains Isar Core
Expand Down
8 changes: 8 additions & 0 deletions logging/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ documentation: https://docs.sentry.io/platforms/dart/integrations/logging/
environment:
sdk: '>=2.17.0 <4.0.0'

platforms:
android:
ios:
macos:
linux:
windows:
web:

dependencies:
logging: ^1.0.0
sentry: 7.19.0
Expand Down
5 changes: 5 additions & 0 deletions sqflite/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ environment:
sdk: '>=2.17.0 <4.0.0'
flutter: '>=3.3.0' # matching sqflite

platforms:
android:
ios:
macos:

dependencies:
sentry: 7.19.0
sqflite: ^2.0.0
Expand Down
Loading