Skip to content

Commit

Permalink
DEV-41381
Browse files Browse the repository at this point in the history
  • Loading branch information
DCrow committed Sep 29, 2022
1 parent 61c9440 commit 6c36645
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 39 deletions.
2 changes: 1 addition & 1 deletion ios/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Uncomment this line to define a global platform for your project
# platform :ios, '9.0'
platform :ios, '11.0'

# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
Expand Down
38 changes: 22 additions & 16 deletions ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -19,29 +19,31 @@ PODS:
- Flutter
- path_provider_ios (0.0.1):
- Flutter
- "permission_handler (5.1.0+2)":
- Flutter
- Protobuf (3.11.4)
- qr_code_scanner (0.2.0):
- Flutter
- MTBBarcodeScanner
- Sentry (7.10.2):
- Sentry/Core (= 7.10.2)
- Sentry/Core (7.10.2)
- Sentry (7.26.0):
- Sentry/Core (= 7.26.0)
- Sentry/Core (7.26.0)
- sentry_flutter (0.0.1):
- Flutter
- FlutterMacOS
- Sentry (~> 7.10.1)
- Sentry (~> 7.26.0)
- soundpool (0.0.1):
- Flutter
- sqlite3 (3.38.1):
- sqlite3/common (= 3.38.1)
- sqlite3/common (3.38.1)
- sqlite3/fts5 (3.38.1):
- sqlite3 (3.38.5):
- sqlite3/common (= 3.38.5)
- sqlite3/common (3.38.5)
- sqlite3/fts5 (3.38.5):
- sqlite3/common
- sqlite3/json1 (3.38.1):
- sqlite3/json1 (3.38.5):
- sqlite3/common
- sqlite3/perf-threadsafe (3.38.1):
- sqlite3/perf-threadsafe (3.38.5):
- sqlite3/common
- sqlite3/rtree (3.38.1):
- sqlite3/rtree (3.38.5):
- sqlite3/common
- sqlite3_flutter_libs (0.0.1):
- Flutter
Expand All @@ -62,6 +64,7 @@ DEPENDENCIES:
- iboxpro_flutter (from `.symlinks/plugins/iboxpro_flutter/ios`)
- package_info_plus (from `.symlinks/plugins/package_info_plus/ios`)
- path_provider_ios (from `.symlinks/plugins/path_provider_ios/ios`)
- permission_handler (from `.symlinks/plugins/permission_handler/ios`)
- qr_code_scanner (from `.symlinks/plugins/qr_code_scanner/ios`)
- sentry_flutter (from `.symlinks/plugins/sentry_flutter/ios`)
- soundpool (from `.symlinks/plugins/soundpool/ios`)
Expand Down Expand Up @@ -92,6 +95,8 @@ EXTERNAL SOURCES:
:path: ".symlinks/plugins/package_info_plus/ios"
path_provider_ios:
:path: ".symlinks/plugins/path_provider_ios/ios"
permission_handler:
:path: ".symlinks/plugins/permission_handler/ios"
qr_code_scanner:
:path: ".symlinks/plugins/qr_code_scanner/ios"
sentry_flutter:
Expand All @@ -107,21 +112,22 @@ SPEC CHECKSUMS:
camera: 9993f92f2c793e87b65e35f3a23c70582afb05b1
device_info_plus: e5c5da33f982a436e103237c0c85f9031142abed
fk_user_agent: 1f47ec39291e8372b1d692b50084b0d54103c545
Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
flutter_blue: eeb381dc4727a0954dede73515f683865494b370
iboxpro_flutter: fe944bd0a3f50fa4f18a7c633ead63603611016d
MTBBarcodeScanner: f453b33c4b7dfe545d8c6484ed744d55671788cb
package_info_plus: 6c92f08e1f853dc01228d6f553146438dafcd14e
path_provider_ios: 14f3d2fd28c4fdb42f44e0f751d12861c43cee02
permission_handler: ccb20a9fad0ee9b1314a52b70b76b473c5f8dab0
Protobuf: 176220c526ad8bd09ab1fb40a978eac3fef665f7
qr_code_scanner: bb67d64904c3b9658ada8c402e8b4d406d5d796e
Sentry: 7bf9bfe713692cf87812e55f0999260494ba7982
sentry_flutter: 77ccdac346608b8ce7e428e7284e7a3e4e7f4a02
Sentry: 6b8f4a4f93c2471b0d73819c52da0c0ce4f0323c
sentry_flutter: 6604b70e74bfb15522c23788295e1debdbc86676
soundpool: c7f4422ca206e77f8900ed3c4ee6a6ff5a0e38a9
sqlite3: cd8b3380fcf65663ed84d17aab294db7626a314e
sqlite3: 93442daab2ab1825bc9c05faa85814a1996f5b65
sqlite3_flutter_libs: 14a93fdcff62c6a346356df0b8e1b3f35fbab8f2
url_launcher_ios: 839c58cdb4279282219f5e248c3321761ff3c4de

PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c
PODFILE CHECKSUM: 7368163408c647b7eb699d0d788ba6718e18fb8d

COCOAPODS: 1.11.3
2 changes: 1 addition & 1 deletion lib/app/widgets/qr_scan_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ class _QRScanViewState extends State<QRScanView> {

setState(() => _paused = true);
await _beep();
await widget.onRead(scanData.code);
await widget.onRead(scanData.code ?? '');
setState(() => _paused = false);
}
});
Expand Down
38 changes: 19 additions & 19 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ packages:
name: async
url: "https://pub.dartlang.org"
source: hosted
version: "2.8.2"
version: "2.9.0"
bloc:
dependency: transitive
description:
Expand Down Expand Up @@ -133,7 +133,7 @@ packages:
name: characters
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.0"
version: "1.2.1"
charcode:
dependency: transitive
description:
Expand Down Expand Up @@ -161,7 +161,7 @@ packages:
name: clock
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.0"
version: "1.1.1"
code_builder:
dependency: transitive
description:
Expand All @@ -175,7 +175,7 @@ packages:
name: collection
url: "https://pub.dartlang.org"
source: hosted
version: "1.15.0"
version: "1.16.0"
convert:
dependency: transitive
description:
Expand Down Expand Up @@ -280,7 +280,7 @@ packages:
name: fake_async
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.0"
version: "1.3.1"
ffi:
dependency: transitive
description:
Expand Down Expand Up @@ -442,7 +442,7 @@ packages:
name: js
url: "https://pub.dartlang.org"
source: hosted
version: "0.6.3"
version: "0.6.4"
json_annotation:
dependency: transitive
description:
Expand Down Expand Up @@ -470,21 +470,21 @@ packages:
name: matcher
url: "https://pub.dartlang.org"
source: hosted
version: "0.12.11"
version: "0.12.12"
material_color_utilities:
dependency: transitive
description:
name: material_color_utilities
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.3"
version: "0.1.5"
meta:
dependency: transitive
description:
name: meta
url: "https://pub.dartlang.org"
source: hosted
version: "1.7.0"
version: "1.8.0"
mime:
dependency: transitive
description:
Expand Down Expand Up @@ -554,7 +554,7 @@ packages:
name: path
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.0"
version: "1.8.2"
path_provider:
dependency: "direct main"
description:
Expand Down Expand Up @@ -680,7 +680,7 @@ packages:
name: qr_code_scanner
url: "https://pub.dartlang.org"
source: hosted
version: "0.5.2"
version: "1.0.1"
quiver:
dependency: "direct main"
description:
Expand Down Expand Up @@ -715,14 +715,14 @@ packages:
name: sentry
url: "https://pub.dartlang.org"
source: hosted
version: "6.4.0"
version: "6.11.1"
sentry_flutter:
dependency: "direct main"
description:
name: sentry_flutter
url: "https://pub.dartlang.org"
source: hosted
version: "6.4.0"
version: "6.11.1"
shelf:
dependency: transitive
description:
Expand Down Expand Up @@ -783,7 +783,7 @@ packages:
name: source_span
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.1"
version: "1.9.0"
sqlite3:
dependency: transitive
description:
Expand Down Expand Up @@ -832,7 +832,7 @@ packages:
name: string_scanner
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.0"
version: "1.1.1"
synchronized:
dependency: transitive
description:
Expand All @@ -846,14 +846,14 @@ packages:
name: term_glyph
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.0"
version: "1.2.1"
test_api:
dependency: transitive
description:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.4.8"
version: "0.4.12"
timing:
dependency: transitive
description:
Expand Down Expand Up @@ -937,7 +937,7 @@ packages:
name: vector_math
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.1"
version: "2.1.2"
watcher:
dependency: transitive
description:
Expand Down Expand Up @@ -981,5 +981,5 @@ packages:
source: hosted
version: "3.1.0"
sdks:
dart: ">=2.16.0 <3.0.0"
dart: ">=2.17.0 <3.0.0"
flutter: ">=2.10.0"
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies:
pub_semver: ^2.1.1
path_provider: ^2.0.9
package_info_plus: ^1.4.0
sentry_flutter: ^6.4.0
sentry_flutter: ^6.11.1
url_launcher: ^6.0.20
flutter_bloc: ^8.0.1
flutter_blue: ^0.8.0
Expand All @@ -30,7 +30,7 @@ dependencies:
ref: android-12-fixes
quiver: ^3.0.1
drift: ^1.5.0
qr_code_scanner: ^0.5.2
qr_code_scanner: ^1.0.1
sqlite3_flutter_libs: ^0.5.0
soundpool: ^2.3.0
camera: ^0.9.4
Expand Down

0 comments on commit 6c36645

Please sign in to comment.