From 0830985fa8950f46f405890876f4c6cb6ecabeca Mon Sep 17 00:00:00 2001 From: vjrj <vjrj@comunes.org> Date: Sun, 2 Apr 2023 13:42:53 +0200 Subject: [PATCH] Added sentry source-maps config. Added share plugin --- pubspec.lock | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++ pubspec.yaml | 18 ++++++++++++- 2 files changed, 89 insertions(+), 1 deletion(-) diff --git a/pubspec.lock b/pubspec.lock index 45722873..69547726 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -25,6 +25,14 @@ packages: url: "https://pub.dev" source: hosted version: "1.12.29" + ansicolor: + dependency: transitive + description: + name: ansicolor + sha256: "607f8fa9786f392043f169898923e6c59b4518242b68b8862eb8a8b7d9c30b4a" + url: "https://pub.dev" + source: hosted + version: "2.0.1" args: dependency: transitive description: @@ -257,6 +265,14 @@ packages: url: "https://pub.dev" source: hosted version: "5.0.2" + cross_file: + dependency: transitive + description: + name: cross_file + sha256: "0b0036e8cccbfbe0555fd83c1d31a6f30b77a96b598b35a5d36dd41f718695e9" + url: "https://pub.dev" + source: hosted + version: "0.3.3+4" crypto: dependency: transitive description: @@ -368,6 +384,14 @@ packages: url: "https://pub.dev" source: hosted version: "6.1.4" + file_utils: + dependency: transitive + description: + name: file_utils + sha256: d1e64389a22649095c8405c9e177272caf05139255931c9ff30d53b5c9bcaa34 + url: "https://pub.dev" + source: hosted + version: "1.0.1" fixnum: dependency: transitive description: @@ -540,6 +564,14 @@ packages: url: "https://pub.dev" source: hosted version: "2.1.1" + globbing: + dependency: transitive + description: + name: globbing + sha256: "4f89cfaf6fa74c9c1740a96259da06bd45411ede56744e28017cc534a12b6e2d" + url: "https://pub.dev" + source: hosted + version: "1.0.0" gql: dependency: transitive description: @@ -676,6 +708,14 @@ packages: url: "https://pub.dev" source: hosted version: "9.1.0" + injector: + dependency: transitive + description: + name: injector + sha256: "2a683124c716e93b45521794f55bfe770e069cb3d871fc4fbc65b5acef78e832" + url: "https://pub.dev" + source: hosted + version: "2.0.0" intl: dependency: transitive description: @@ -1068,6 +1108,14 @@ packages: url: "https://pub.dev" source: hosted version: "7.2.0" + sentry_dart_plugin: + dependency: "direct main" + description: + name: sentry_dart_plugin + sha256: e41a6a7cf94ce58a715de20f4bc0d65b7999f00ad78fe4793b74151df0cbdaf6 + url: "https://pub.dev" + source: hosted + version: "1.1.0" sentry_flutter: dependency: "direct main" description: @@ -1076,6 +1124,22 @@ packages: url: "https://pub.dev" source: hosted version: "7.2.0" + share_plus: + dependency: "direct main" + description: + name: share_plus + sha256: "8c6892037b1824e2d7e8f59d54b3105932899008642e6372e5079c6939b4b625" + url: "https://pub.dev" + source: hosted + version: "6.3.1" + share_plus_platform_interface: + dependency: transitive + description: + name: share_plus_platform_interface + sha256: "82ddd4ab9260c295e6e39612d4ff00390b9a7a21f1bb1da771e2f232d80ab8a1" + url: "https://pub.dev" + source: hosted + version: "3.2.0" shared_preferences: dependency: "direct main" description: @@ -1225,6 +1289,14 @@ packages: url: "https://pub.dev" source: hosted version: "3.0.1" + system_info2: + dependency: transitive + description: + name: system_info2 + sha256: af2f948e3f31a3367a049932a8ad59faf0063ecf836a020d975b9f41566d8bc9 + url: "https://pub.dev" + source: hosted + version: "3.0.2" term_glyph: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index 9bd7d786..e35cfcf0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 0.0.12 +version: 0.0.12-SNAPSHOT environment: sdk: ">=2.17.1 <3.0.0" @@ -64,6 +64,8 @@ dependencies: pattern_lock: ^2.0.0 backdrop: ^0.8.1 package_info_plus: ^3.0.3 + share_plus: ^6.3.1 + sentry_dart_plugin: ^1.1.0 dev_dependencies: flutter_test: @@ -154,3 +156,17 @@ flutter: # # For details regarding fonts from package dependencies, # see https://flutter.dev/custom-fonts/#from-packages + +sentry: + upload_debug_symbols: true + upload_source_maps: true + upload_sources: true + project: ginkgo + org: comunes + url: https://sentry.comunes.org + #wait_for_processing: false + #log_level: error # possible values: trace, debug, info, warn, error + #release: ... + #web_build_path: ... + #commits: auto + #ignore_missing: true -- GitLab