flutter-plugin icon indicating copy to clipboard operation
flutter-plugin copied to clipboard

There is issue in Apple Pay & Google Pay Button

Open mianumar5653 opened this issue 1 year ago • 22 comments

Note

Hello, mate, I can resolve this issue if you add me as a collaborator.

Description

Apple Pay Button Issue

apple_pay_button.dart -> Error: Member not found: 'minimumButonWidth'. double width = RawApplePayButton.minimumButonWidth,

apple_pay_button.dart -> Error: Member not found: 'minimumButonWidth'. : assert(width >= RawApplePayButton.minimumButonWidth),

Google Pay Button Issue

google_pay_button.dart -> Error: Required named parameter 'paymentConfiguration' must be provided. _googlePayButton = RawGooglePayButton( ^

mianumar5653 avatar Jan 25 '24 06:01 mianumar5653

Hi @mianumar5653, what versions of the package are you using?

JlUgia avatar Jan 25 '24 12:01 JlUgia

Hi @JlUgia Am using pay: 1.1.0 In this version both apple and google button have issue Then I moved to 1.1.1 version this version has only the Google Button issue And the latest version also has same issue

mianumar5653 avatar Jan 25 '24 13:01 mianumar5653

I have the issue of 'Required named parameter 'paymentConfiguration' must be provided' for the RawGoogleButton inside the package lib with pay: ^1.1.2

lCURROl avatar Feb 01 '24 11:02 lCURROl

Hello @mianumar5653 and @lCURROl, it seems that these API changes in pay_android and pay_ios were mistakenly published as a minor version upgrade , instead of a major. Apologies for the added trouble.

1.1.2 does account for those changes: I don't see the errors in my environment using 1.1.2. If you do, please share a more detailed snapshot of your pubspec.yaml or . lock files. Remember to clean your build or clear your cache if necessary.

JlUgia avatar Feb 01 '24 13:02 JlUgia

1.1.2 has the same google pay button issue

junaidlodhi22 avatar Feb 02 '24 14:02 junaidlodhi22

@mianumar5653 @JlUgia @junaidlodhi22

Issue Description:

I'm encountering the same issue when trying to run my Flutter project after adding the pay package version 1.1.2. The error message states: Error (Xcode): ../../../.pub-cache/hosted/pub.dev/pay-1.1.2/lib/src/widgets/google_pay_button.dart:55:42: Error: Required named parameter 'paymentConfiguration' must be provided.

Steps to Reproduce: Add the pay package version 1.1.2 to a Flutter project. Attempt to build and run the Flutter project on a simulator or device.

Expected Behavior: The Flutter project should build and run successfully without errors as it works perfectly fine on windows with same version.

Actual Behavior: Encountered the error mentioned above during the build process, preventing the Flutter project from running altogether. The application fails to launch on the simulator/device.

Additional Information:

Flutter version: 3.16.0

note : I am not using the default google pay button , still error occurs.

I noticed this issue has been reported previously here, I'm still encountering the same error with version 1.1.2 of the pay package. It seems like the issue may not have been fully resolved, and I wanted to bring it to your attention for further investigation as development is rapidly moving and stuck with pay package.

suhail600 avatar Feb 05 '24 11:02 suhail600

Same error here: /C:/Users/Aris/AppData/Local/Pub/Cache/hosted/pub.dev/pay-1.1.2/lib/src/widgets/google_pay_button.dart:55:42: Error: Required named parameter 'paymentConfiguration' must be provided. _googlePayButton = RawGooglePayButton( ^ /C:/Users/Aris/AppData/Local/Pub/Cache/hosted/pub.dev/pay_android-1.1.0-beta01/lib/src/widgets/google_pay_button.dart:83:3: Context: Found this candidate, but the arguments don't match. RawGooglePayButton({ ^^^^^^^^^^^^^^^^^^ Target kernel_snapshot failed: Exception

  • pay 1.1.2
  • pay_android 1.1.0-beta01
  • pay_ios 1.0.11
  • pay_platform_interface 1.0.4

CarooMobility avatar Feb 06 '24 09:02 CarooMobility

Hi everyone, thank you for the comments. 1.1.2 version of the pay package uses the following versions:

  • pay_ios: ^1.0.9 which resolves to 1.0.11 today
  • pay_android: ^1.0.11 which resolves to 1.0.11 today
  • pay_platform_interface: ^1.0.3 which resolves to 1.0.4

These versions are compatible among each other. Verify that the versions resolved in your pubspec.lock are consistent with the above. For example, @CarooMobility, your version in pay_android: 1.1.0-beta01 does not match the expected resolved version. Are you explicitly setting these versions in your pubspec.yaml? Remember that you can use flutter pub upgrade to ignore your existing pubspec.lock file.

If you are still facing issues, include your dependencies configuration for the pay package in your pubspec.yaml and the finally resolved version in your pubspec.lock for pay, pay_android, pay_ios and pay_platform_interface.

JlUgia avatar Feb 06 '24 11:02 JlUgia

Hi everyone, thank you for the comments. 1.1.2 version of the pay package uses the following versions:

  • pay_ios: ^1.0.9 which resolves to 1.0.11 today
  • pay_android: ^1.0.11 which resolves to 1.0.11 today
  • pay_platform_interface: ^1.0.3 which resolves to 1.0.4

These versions are compatible among each other. Verify that the versions resolved in your pubspec.lock are consistent with the above. For example, @CarooMobility, your version in pay_android: 1.1.0-beta01 does not match the expected resolved version. Are you explicitly setting these versions in your pubspec.yaml? Remember that you can use flutter pub upgrade to ignore your existing pubspec.lock file.

If you are still facing issues, include your dependencies configuration for the pay package in your pubspec.yaml and the finally resolved version in your pubspec.lock for pay, pay_android, pay_ios and pay_platform_interface.

what about this issue https://github.com/google-pay/flutter-plugin/issues/244#issuecomment-1926743092

its just added the pay package and project wont run on ios.

suhail600 avatar Feb 06 '24 11:02 suhail600

Hi everyone, thank you for the comments. 1.1.2 version of the pay package uses the following versions:

  • pay_ios: ^1.0.9 which resolves to 1.0.11 today
  • pay_android: ^1.0.11 which resolves to 1.0.11 today
  • pay_platform_interface: ^1.0.3 which resolves to 1.0.4

These versions are compatible among each other. Verify that the versions resolved in your pubspec.lock are consistent with the above. For example, @CarooMobility, your version in pay_android: 1.1.0-beta01 does not match the expected resolved version. Are you explicitly setting these versions in your pubspec.yaml? Remember that you can use flutter pub upgrade to ignore your existing pubspec.lock file.

If you are still facing issues, include your dependencies configuration for the pay package in your pubspec.yaml and the finally resolved version in your pubspec.lock for pay, pay_android, pay_ios and pay_platform_interface.

I have not explicitly set the pay_android: 1.1.0-beta01 Here is my pubspec.lock after flutter pub upgrade: pay: dependency: "direct main" description: name: pay url: "https://pub.dev" source: hosted version: "1.1.2" pay_android: dependency: transitive description: name: pay_android url: "https://pub.dev" source: hosted version: "1.1.0-beta01" pay_ios: dependency: transitive description: name: pay_ios url: "https://pub.dev" source: hosted version: "1.0.11" pay_platform_interface: dependency: transitive description: name: pay_platform_interface url: "https://pub.dev" source: hosted version: "1.0.4"

I will now try to include your provided dependencies.

CarooMobility avatar Feb 06 '24 11:02 CarooMobility

The problem was flutter_svg package that pay depends on. flutter_svg: any

CarooMobility avatar Feb 06 '24 13:02 CarooMobility

I don't see a relationship between the two @CarooMobility. In any case, did your issue get resolved?

JlUgia avatar Feb 06 '24 14:02 JlUgia

@suhail600, can you share more about your pubspec.yaml dependencies configuration and how they get resolved in your pubspec.lock?

JlUgia avatar Feb 06 '24 14:02 JlUgia

@suhail600, can you share more about your pubspec.yaml dependencies configuration and how they get resolved in your pubspec.lock?

There are no conflicts within dependencies pubspec.yaml

dependencies:

pay: ^1.1.2

pubspec.lock

pay: dependency: "direct main" description: name: pay sha256: d7525538a66af1982a0932d3969416e835a6aeafda59e280ed2d1f410b4aaa09 url: "https://pub.dev" source: hosted version: "1.1.2" pay_android: dependency: transitive description: name: pay_android sha256: e8483456b575463f2b69f5fc0824c0e756e20dd1ff04650e077b83661ad2254d url: "https://pub.dev" source: hosted version: "1.1.0-beta01" pay_ios: dependency: transitive description: name: pay_ios sha256: "75ccb285d03f22b136c58ab8e8e0c4b614ee52a8b67e6ccfb680d4d8c04a70f6" url: "https://pub.dev" source: hosted version: "1.0.11" pay_platform_interface: dependency: transitive description: name: pay_platform_interface sha256: "26a379e33c46508987c7afee8cde6f4aca5b5ab0afc697c27efbd33a9c2ea82a" url: "https://pub.dev" source: hosted version: "1.0.4"

suhail600 avatar Feb 07 '24 09:02 suhail600

@suhail600, can you share more about your pubspec.yaml dependencies configuration and how they get resolved in your pubspec.lock?

There are no conflicts within dependencies pubspec.yaml

dependencies:

pay: ^1.1.2

pubspec.lock

pay: dependency: "direct main" description: name: pay sha256: d7525538a66af1982a0932d3969416e835a6aeafda59e280ed2d1f410b4aaa09 url: "https://pub.dev" source: hosted version: "1.1.2" pay_android: dependency: transitive description: name: pay_android sha256: e8483456b575463f2b69f5fc0824c0e756e20dd1ff04650e077b83661ad2254d url: "https://pub.dev" source: hosted version: "1.1.0-beta01" pay_ios: dependency: transitive description: name: pay_ios sha256: "75ccb285d03f22b136c58ab8e8e0c4b614ee52a8b67e6ccfb680d4d8c04a70f6" url: "https://pub.dev" source: hosted version: "1.0.11" pay_platform_interface: dependency: transitive description: name: pay_platform_interface sha256: "26a379e33c46508987c7afee8cde6f4aca5b5ab0afc697c27efbd33a9c2ea82a" url: "https://pub.dev" source: hosted version: "1.0.4"

I am also having this issue, my yml and .lock look the same as this...

GivDavidL avatar Feb 09 '24 12:02 GivDavidL

@suhail600, can you share more about your pubspec.yaml dependencies configuration and how they get resolved in your pubspec.lock?

There are no conflicts within dependencies pubspec.yaml

dependencies:

pay: ^1.1.2

pubspec.lock

pay: dependency: "direct main" description: name: pay sha256: d7525538a66af1982a0932d3969416e835a6aeafda59e280ed2d1f410b4aaa09 url: "https://pub.dev" source: hosted version: "1.1.2" pay_android: dependency: transitive description: name: pay_android sha256: e8483456b575463f2b69f5fc0824c0e756e20dd1ff04650e077b83661ad2254d url: "https://pub.dev" source: hosted version: "1.1.0-beta01" pay_ios: dependency: transitive description: name: pay_ios sha256: "75ccb285d03f22b136c58ab8e8e0c4b614ee52a8b67e6ccfb680d4d8c04a70f6" url: "https://pub.dev" source: hosted version: "1.0.11" pay_platform_interface: dependency: transitive description: name: pay_platform_interface sha256: "26a379e33c46508987c7afee8cde6f4aca5b5ab0afc697c27efbd33a9c2ea82a" url: "https://pub.dev" source: hosted version: "1.0.4"

@JlUgia I just edited the plugin removing the googlepaybutton and associated one import in pay 1.1.2 lib pay.dart , and i was able to run the project , so i assume the issue is regarding the inbuild googlepay button , could you cross check and confirm

suhail600 avatar Feb 12 '24 06:02 suhail600

This is certainly unexpected.

  1. Do you only have the pay dependency in the dependencies section in your pubspec.yaml or do you also have an entry for other pay related packages (like pay_android)?
  2. How does your pubspec.lock change if you only keep the pay dependency in your pubspec.yaml and run flutter pub upgrade?

JlUgia avatar Feb 13 '24 10:02 JlUgia

This is certainly unexpected.

  1. Do you only have the pay dependency in the dependencies section in your pubspec.yaml or do you also have an entry for other pay related packages (like pay_android)?
  2. How does your pubspec.lock change if you only keep the pay dependency in your pubspec.yaml and run flutter pub upgrade?

i have other packages too in lock i just added the pay related lock files , as i said in the previous comment , the app was able to run by editing the package and commenting the googlebutton in ios . Please refer https://github.com/google-pay/flutter-plugin/issues/244#issuecomment-1938128449

if u need full lock file iam adding it below

packages: _fe_analyzer_shared: dependency: transitive description: name: _fe_analyzer_shared sha256: "3444216bfd127af50bbe4862d8843ed44db946dd933554f0d7285e89f10e28ac" url: "https://pub.dev" source: hosted version: "50.0.0" _flutterfire_internals: dependency: transitive description: name: _flutterfire_internals sha256: a742f71d7f3484253a623b30e19256aa4668ecbb3de6ad1beb0bcf8d4777ecd8 url: "https://pub.dev" source: hosted version: "1.3.3" analyzer: dependency: transitive description: name: analyzer sha256: "68796c31f510c8455a06fed75fc97d8e5ad04d324a830322ab3efc9feb6201c1" url: "https://pub.dev" source: hosted version: "5.2.0" archive: dependency: transitive description: name: archive sha256: ed7cc591a948744994714375caf9a2ce89e1d82e8243997c8a2994d57181c212 url: "https://pub.dev" source: hosted version: "3.3.5" args: dependency: transitive description: name: args sha256: b003c3098049a51720352d219b0bb5f219b60fbfb68e7a4748139a06a5676515 url: "https://pub.dev" source: hosted version: "2.3.1" async: dependency: transitive description: name: async sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" url: "https://pub.dev" source: hosted version: "2.11.0" audio_session: dependency: transitive description: name: audio_session sha256: "4de2c8779b20816238ad9d454c45ced06f8b6d56ee8d19715f6c451c047982a8" url: "https://pub.dev" source: hosted version: "0.1.11" badges: dependency: "direct main" description: name: badges sha256: "727580d938b7a1ff47ea42df730d581415606b4224cfa708671c10287f8d3fe6" url: "https://pub.dev" source: hosted version: "2.0.3" boolean_selector: dependency: transitive description: name: boolean_selector sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" url: "https://pub.dev" source: hosted version: "2.1.1" build: dependency: transitive description: name: build sha256: "3fbda25365741f8251b39f3917fb3c8e286a96fd068a5a242e11c2012d495777" url: "https://pub.dev" source: hosted version: "2.3.1" build_config: dependency: transitive description: name: build_config sha256: bf80fcfb46a29945b423bd9aad884590fb1dc69b330a4d4700cac476af1708d1 url: "https://pub.dev" source: hosted version: "1.1.1" build_daemon: dependency: transitive description: name: build_daemon sha256: "6bc5544ea6ce4428266e7ea680e945c68806c4aae2da0eb5e9ccf38df8d6acbf" url: "https://pub.dev" source: hosted version: "3.1.0" build_resolvers: dependency: transitive description: name: build_resolvers sha256: "7c35a3a7868626257d8aee47b51c26b9dba11eaddf3431117ed2744951416aab" url: "https://pub.dev" source: hosted version: "2.1.0" build_runner: dependency: "direct dev" description: name: build_runner sha256: "6f48c61a9dcd2c3a9e62d3dcdab1ba382790e2f31026288cbabe55d6003c9c23" url: "https://pub.dev" source: hosted version: "2.3.2" build_runner_core: dependency: transitive description: name: build_runner_core sha256: "14febe0f5bac5ae474117a36099b4de6f1dbc52df6c5e55534b3da9591bf4292" url: "https://pub.dev" source: hosted version: "7.2.7" built_collection: dependency: transitive description: name: built_collection sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100" url: "https://pub.dev" source: hosted version: "5.1.1" built_value: dependency: transitive description: name: built_value sha256: "59e08b0079bb75f7e27392498e26339387c1089c6bd58525a14eb8508637277b" url: "https://pub.dev" source: hosted version: "8.4.2" cached_network_image: dependency: "direct main" description: name: cached_network_image sha256: be69fd8b429d48807102cee6ab4106a55e1f2f3e79a1b83abb8572bc06c64f26 url: "https://pub.dev" source: hosted version: "3.2.2" cached_network_image_platform_interface: dependency: transitive description: name: cached_network_image_platform_interface sha256: bb2b8403b4ccdc60ef5f25c70dead1f3d32d24b9d6117cfc087f496b178594a7 url: "https://pub.dev" source: hosted version: "2.0.0" cached_network_image_web: dependency: transitive description: name: cached_network_image_web sha256: b8eb814ebfcb4dea049680f8c1ffb2df399e4d03bf7a352c775e26fa06e02fa0 url: "https://pub.dev" source: hosted version: "1.0.2" carousel_slider: dependency: "direct main" description: name: carousel_slider sha256: "869a3f4f2ad0e8d029d9cefd20d2cafd0a50847b74e7aab3a8eec662b0c7d2ee" url: "https://pub.dev" source: hosted version: "4.1.1" characters: dependency: transitive description: name: characters sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" url: "https://pub.dev" source: hosted version: "1.3.0" checked_yaml: dependency: transitive description: name: checked_yaml sha256: dd007e4fb8270916820a0d66e24f619266b60773cddd082c6439341645af2659 url: "https://pub.dev" source: hosted version: "2.0.1" chewie: dependency: transitive description: name: chewie sha256: "7737b1b8b1f9df3b3751abfb0dea5efbebb7060c28eccdc3b0fa4a0d638eaf9f" url: "https://pub.dev" source: hosted version: "1.3.6" cli_util: dependency: transitive description: name: cli_util sha256: "66f86e916d285c1a93d3b79587d94bd71984a66aac4ff74e524cfa7877f1395c" url: "https://pub.dev" source: hosted version: "0.3.5" clock: dependency: transitive description: name: clock sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf url: "https://pub.dev" source: hosted version: "1.1.1" code_builder: dependency: transitive description: name: code_builder sha256: "02ce3596b459c666530f045ad6f96209474e8fee6e4855940a3cee65fb872ec5" url: "https://pub.dev" source: hosted version: "4.3.0" collection: dependency: transitive description: name: collection sha256: "4a07be6cb69c84d677a6c3096fcf960cc3285a8330b4603e0d463d15d9bd934c" url: "https://pub.dev" source: hosted version: "1.17.1" connectivity_plus: dependency: "direct main" description: name: connectivity_plus sha256: "745ebcccb1ef73768386154428a55250bc8d44059c19fd27aecda2a6dc013a22" url: "https://pub.dev" source: hosted version: "3.0.2" connectivity_plus_platform_interface: dependency: transitive description: name: connectivity_plus_platform_interface sha256: b8795b9238bf83b64375f63492034cb3d8e222af4d9ce59dda085edf038fa06f url: "https://pub.dev" source: hosted version: "1.2.3" convert: dependency: transitive description: name: convert sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592" url: "https://pub.dev" source: hosted version: "3.1.1" convex_bottom_bar: dependency: "direct main" description: name: convex_bottom_bar sha256: "6c9d23fa309b2cf2cb4804a6318e34694f4714c29fac79621ff88b71266fbe57" url: "https://pub.dev" source: hosted version: "3.1.0+1" cross_file: dependency: transitive description: name: cross_file sha256: f71079978789bc2fe78d79227f1f8cfe195b31bbd8db2399b0d15a4b96fb843b url: "https://pub.dev" source: hosted version: "0.3.3+2" crypto: dependency: transitive description: name: crypto sha256: aa274aa7774f8964e4f4f38cc994db7b6158dd36e9187aaceaddc994b35c6c67 url: "https://pub.dev" source: hosted version: "3.0.2" csslib: dependency: transitive description: name: csslib sha256: b36c7f7e24c0bdf1bf9a3da461c837d1de64b9f8beb190c9011d8c72a3dfd745 url: "https://pub.dev" source: hosted version: "0.17.2" cupertino_icons: dependency: "direct main" description: name: cupertino_icons sha256: e35129dc44c9118cee2a5603506d823bab99c68393879edb440e0090d07586be url: "https://pub.dev" source: hosted version: "1.0.5" dart_style: dependency: transitive description: name: dart_style sha256: "7a03456c3490394c8e7665890333e91ae8a49be43542b616e414449ac358acd4" url: "https://pub.dev" source: hosted version: "2.2.4" date_picker_timeline: dependency: "direct main" description: name: date_picker_timeline sha256: dc754de3a99ad654c5633072cb9edac27e0b2875c81c7286e8c6cf419082a110 url: "https://pub.dev" source: hosted version: "1.2.5" dbus: dependency: transitive description: name: dbus sha256: "6f07cba3f7b3448d42d015bfd3d53fe12e5b36da2423f23838efc1d5fb31a263" url: "https://pub.dev" source: hosted version: "0.7.8" delayed_display: dependency: "direct main" description: name: delayed_display sha256: "8d722bb730071b872cef2bc0b07ef20549ebd269087a16ed1c5696896246c296" url: "https://pub.dev" source: hosted version: "2.0.0" dotted_border: dependency: "direct main" description: name: dotted_border sha256: "07a5c5e8d4e6e992279e190e0352be8faa5b8f96d81c77a78b2d42f060279840" url: "https://pub.dev" source: hosted version: "2.0.0+3" easy_localization: dependency: "direct main" description: name: easy_localization sha256: "30ebf25448ffe169e0bd9bc4b5da94faa8398967a2ad2ca09f438be8b6953645" url: "https://pub.dev" source: hosted version: "3.0.2" easy_logger: dependency: transitive description: name: easy_logger sha256: c764a6e024846f33405a2342caf91c62e357c24b02c04dbc712ef232bf30ffb7 url: "https://pub.dev" source: hosted version: "0.0.2" facebook_auth_desktop: dependency: transitive description: name: facebook_auth_desktop sha256: e2a63178835b2f63f144d558394c8cfcffaaadee35205deace4f8cc28ba9a902 url: "https://pub.dev" source: hosted version: "0.0.8" fake_async: dependency: transitive description: name: fake_async sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" url: "https://pub.dev" source: hosted version: "1.3.1" ffi: dependency: transitive description: name: ffi sha256: a38574032c5f1dd06c4aee541789906c12ccaab8ba01446e800d9c5b79c4a978 url: "https://pub.dev" source: hosted version: "2.0.1" file: dependency: transitive description: name: file sha256: "1b92bec4fc2a72f59a8e15af5f52cd441e4a7860b49499d69dfa817af20e925d" url: "https://pub.dev" source: hosted version: "6.1.4" file_picker: dependency: "direct main" description: name: file_picker sha256: d090ae03df98b0247b82e5928f44d1b959867049d18d73635e2e0bc3f49542b9 url: "https://pub.dev" source: hosted version: "5.2.5" firebase_analytics: dependency: "direct main" description: name: firebase_analytics sha256: b4f0da1ba0ed06a738d2f729a94dae2518c3738167a13e7f2347303e7a5ab0d9 url: "https://pub.dev" source: hosted version: "10.4.3" firebase_analytics_platform_interface: dependency: transitive description: name: firebase_analytics_platform_interface sha256: "25ff27c6dfc875ec299af1c714cbc9f4d44bd47a1163a0ba008a1e5d88a6a786" url: "https://pub.dev" source: hosted version: "3.6.3" firebase_analytics_web: dependency: transitive description: name: firebase_analytics_web sha256: "9b80a8444a94ace32f56e43e7e946613b02bc7daa9fd4ae7857f4a2394b134f9" url: "https://pub.dev" source: hosted version: "0.5.4+3" firebase_auth: dependency: "direct main" description: name: firebase_auth sha256: ac3c7c8022c1032c1dc7d16e62db1d6f1e2fbdc8c1039ee706d8deb45eca3a42 url: "https://pub.dev" source: hosted version: "4.2.5" firebase_auth_platform_interface: dependency: transitive description: name: firebase_auth_platform_interface sha256: "689ae048b78ad088ba31acdec45f5badb56201e749ed8b534947a7303ddb32aa" url: "https://pub.dev" source: hosted version: "6.15.3" firebase_auth_web: dependency: transitive description: name: firebase_auth_web sha256: f35d637a1707afd51f30090bb5234b381d5071ccbfef09b8c393bc7c65e440cd url: "https://pub.dev" source: hosted version: "5.5.3" firebase_core: dependency: "direct main" description: name: firebase_core sha256: a4a99204da264a0aa9d54a332ea0315ce7b0768075139c77abefe98093dd98be url: "https://pub.dev" source: hosted version: "2.14.0" firebase_core_platform_interface: dependency: transitive description: name: firebase_core_platform_interface sha256: b63e3be6c96ef5c33bdec1aab23c91eb00696f6452f0519401d640938c94cba2 url: "https://pub.dev" source: hosted version: "4.8.0" firebase_core_web: dependency: transitive description: name: firebase_core_web sha256: "0fd5c4b228de29b55fac38aed0d9e42514b3d3bd47675de52bf7f8fccaf922fa" url: "https://pub.dev" source: hosted version: "2.6.0" firebase_crashlytics: dependency: "direct main" description: name: firebase_crashlytics sha256: "398012cf7838f8a373a25da65dd62fc3a3f4abe4b5f886caa634952c3387dce3" url: "https://pub.dev" source: hosted version: "3.3.3" firebase_crashlytics_platform_interface: dependency: transitive description: name: firebase_crashlytics_platform_interface sha256: "39dfcc9a5ddfaa0588ad67f1016174dd9e19f6b31f592b8641bd559399567592" url: "https://pub.dev" source: hosted version: "3.6.3" firebase_messaging: dependency: "direct main" description: name: firebase_messaging sha256: dc010a6436333029fba858415fe65887c3fe44d8f6e6ea162bb8d3dd764fbcb6 url: "https://pub.dev" source: hosted version: "14.2.1" firebase_messaging_platform_interface: dependency: transitive description: name: firebase_messaging_platform_interface sha256: abda2d766486096eb1c568c7b20aef46180596c8b0708190b929133ff03e0a8d url: "https://pub.dev" source: hosted version: "4.2.10" firebase_messaging_web: dependency: transitive description: name: firebase_messaging_web sha256: "7a0ce957bd2210e8636325152234728874dad039f1c7271ba1be5c752fdc5888" url: "https://pub.dev" source: hosted version: "3.2.11" fixnum: dependency: transitive description: name: fixnum sha256: "04be3e934c52e082558cc9ee21f42f5c1cd7a1262f4c63cd0357c08d5bba81ec" url: "https://pub.dev" source: hosted version: "1.0.1" flutter: dependency: "direct main" description: flutter source: sdk version: "0.0.0" flutter_blurhash: dependency: transitive description: name: flutter_blurhash sha256: "05001537bd3fac7644fa6558b09ec8c0a3f2eba78c0765f88912882b1331a5c6" url: "https://pub.dev" source: hosted version: "0.7.0" flutter_cache_manager: dependency: transitive description: name: flutter_cache_manager sha256: "32cd900555219333326a2d0653aaaf8671264c29befa65bbd9856d204a4c9fb3" url: "https://pub.dev" source: hosted version: "3.3.0" flutter_facebook_auth: dependency: "direct main" description: name: flutter_facebook_auth sha256: e74475e4d0d87f34069a42ec6e839872222ca8a65fbb506ec3329b5d595ca75b url: "https://pub.dev" source: hosted version: "5.0.7" flutter_facebook_auth_platform_interface: dependency: transitive description: name: flutter_facebook_auth_platform_interface sha256: "0bc5fefc89b012635c4424a34334215e81e0ff38c5b413f869fd9c14a10c6135" url: "https://pub.dev" source: hosted version: "4.1.1" flutter_facebook_auth_web: dependency: transitive description: name: flutter_facebook_auth_web sha256: "6dfd4a3844137fbf7eb4c8d753add1ca15233b280a73a3360d9af46b87680678" url: "https://pub.dev" source: hosted version: "4.1.1" flutter_launcher_icons: dependency: "direct dev" description: name: flutter_launcher_icons sha256: ce0e501cfc258907842238e4ca605e74b7fd1cdf04b3b43e86c43f3e40a1592c url: "https://pub.dev" source: hosted version: "0.11.0" flutter_lints: dependency: "direct dev" description: name: flutter_lints sha256: aeb0b80a8b3709709c9cc496cdc027c5b3216796bc0af0ce1007eaf24464fd4c url: "https://pub.dev" source: hosted version: "2.0.1" flutter_local_notifications: dependency: "direct main" description: name: flutter_local_notifications sha256: "293995f94e120c8afce768981bd1fa9c5d6de67c547568e3b42ae2defdcbb4a0" url: "https://pub.dev" source: hosted version: "13.0.0" flutter_local_notifications_linux: dependency: transitive description: name: flutter_local_notifications_linux sha256: "8f6c1611e0c4a88a382691a97bb3c3feb24cc0c0b54152b8b5fb7ffb837f7fbf" url: "https://pub.dev" source: hosted version: "3.0.0" flutter_local_notifications_platform_interface: dependency: transitive description: name: flutter_local_notifications_platform_interface sha256: "5ec1feac5f7f7d9266759488bc5f76416152baba9aa1b26fe572246caa00d1ab" url: "https://pub.dev" source: hosted version: "6.0.0" flutter_localizations: dependency: transitive description: flutter source: sdk version: "0.0.0" flutter_native_splash: dependency: "direct dev" description: name: flutter_native_splash sha256: "6777a3abb974021a39b5fdd2d46a03ca390e03903b6351f21d10e7ecc969f12d" url: "https://pub.dev" source: hosted version: "2.2.16" flutter_plugin_android_lifecycle: dependency: transitive description: name: flutter_plugin_android_lifecycle sha256: "60fc7b78455b94e6de2333d2f95196d32cf5c22f4b0b0520a628804cb463503b" url: "https://pub.dev" source: hosted version: "2.0.7" flutter_rating_bar: dependency: "direct main" description: name: flutter_rating_bar sha256: d2af03469eac832c591a1eba47c91ecc871fe5708e69967073c043b2d775ed93 url: "https://pub.dev" source: hosted version: "4.0.1" flutter_secure_storage: dependency: transitive description: name: flutter_secure_storage sha256: f2afec1f1762c040a349ea2a588e32f442da5d0db3494a52a929a97c9e550bc5 url: "https://pub.dev" source: hosted version: "7.0.1" flutter_secure_storage_linux: dependency: transitive description: name: flutter_secure_storage_linux sha256: "736436adaf91552433823f51ce22e098c2f0551db06b6596f58597a25b8ea797" url: "https://pub.dev" source: hosted version: "1.1.2" flutter_secure_storage_macos: dependency: transitive description: name: flutter_secure_storage_macos sha256: ff0768a6700ea1d9620e03518e2e25eac86a8bd07ca3556e9617bfa5ace4bd00 url: "https://pub.dev" source: hosted version: "2.0.1" flutter_secure_storage_platform_interface: dependency: transitive description: name: flutter_secure_storage_platform_interface sha256: b3773190e385a3c8a382007893d678ae95462b3c2279e987b55d140d3b0cb81b url: "https://pub.dev" source: hosted version: "1.0.1" flutter_secure_storage_web: dependency: transitive description: name: flutter_secure_storage_web sha256: "42938e70d4b872e856e678c423cc0e9065d7d294f45bc41fc1981a4eb4beaffe" url: "https://pub.dev" source: hosted version: "1.1.1" flutter_secure_storage_windows: dependency: transitive description: name: flutter_secure_storage_windows sha256: ca89c8059cf439985aa83c59619b3674c7ef6cc2e86943d169a7369d6a69cab5 url: "https://pub.dev" source: hosted version: "1.1.3" flutter_svg: dependency: "direct main" description: name: flutter_svg sha256: "017cb37b3e9bee44cc800e35469f295d537484602f02ce6ceb5876236cc7e1fe" url: "https://pub.dev" source: hosted version: "2.0.3" flutter_test: dependency: "direct dev" description: flutter source: sdk version: "0.0.0" flutter_web_plugins: dependency: transitive description: flutter source: sdk version: "0.0.0" flutter_widget_from_html: dependency: "direct main" description: name: flutter_widget_from_html sha256: "5a6b8c1e777be8881f27d97aae55d501935153545b9c4eaffacc9d008be34a1c" url: "https://pub.dev" source: hosted version: "0.10.0" flutter_widget_from_html_core: dependency: transitive description: name: flutter_widget_from_html_core sha256: "2ee1f47662f5ba34fe535915b034fae0450bc0a15ae6935ca4abcc7fa987e948" url: "https://pub.dev" source: hosted version: "0.10.0" fluttertoast: dependency: "direct main" description: name: fluttertoast sha256: "7a738eddad04c7b27a1ecfecd12e8ecd4b188cdd2d91c252a02a4aba65838c9d" url: "https://pub.dev" source: hosted version: "8.1.1" frontend_server_client: dependency: transitive description: name: frontend_server_client sha256: "82715f8041a85a534a7bf64400b2ee0bb3d594ccf695d97c0bb017259657ff5d" url: "https://pub.dev" source: hosted version: "3.1.0" fwfh_cached_network_image: dependency: transitive description: name: fwfh_cached_network_image sha256: a9c0ec9606b2d5935162c69cdb65ad22f455e9cf705919d8ceff89251b7ac16f url: "https://pub.dev" source: hosted version: "0.7.0+4" fwfh_chewie: dependency: transitive description: name: fwfh_chewie sha256: "2613881a1b1ffa09bb6c0a45510b832fde4a29d8aa70620f41b6e0587fffa7ab" url: "https://pub.dev" source: hosted version: "0.7.1+1" fwfh_just_audio: dependency: transitive description: name: fwfh_just_audio sha256: "1f09918053cf828954061cf55c179e67fb79f87c936cd2c7c9edbb4a9477959e" url: "https://pub.dev" source: hosted version: "0.9.0+1" fwfh_svg: dependency: transitive description: name: fwfh_svg sha256: "3e814d081092ae0cd001956e5097a2de81bac12025d2382e51bab03d7d21fdb2" url: "https://pub.dev" source: hosted version: "0.8.0+1" fwfh_text_style: dependency: transitive description: name: fwfh_text_style sha256: "37806ee0222f79b6e8d4c698c322c897eae6a817258156f40aeece4e588fac60" url: "https://pub.dev" source: hosted version: "2.22.08+1" fwfh_url_launcher: dependency: transitive description: name: fwfh_url_launcher sha256: a1c578fde803fc8d00e886e976df94f7ada120d6cbbdd2149d71122dfb337703 url: "https://pub.dev" source: hosted version: "0.9.0+1" fwfh_webview: dependency: transitive description: name: fwfh_webview sha256: ac35568bbef93b5f811c2e9f2b0cf9b6f1e20d4effc70ccbf52ca3c703047c9f url: "https://pub.dev" source: hosted version: "0.7.0+1" geolocator: dependency: "direct main" description: name: geolocator sha256: "5c23f3613f50586c0bbb2b8f970240ae66b3bd992088cf60dd5ee2e6f7dde3a8" url: "https://pub.dev" source: hosted version: "9.0.2" geolocator_android: dependency: transitive description: name: geolocator_android sha256: fe90565c3a8789dc3b433d8f95cdb18343f9bde298a419d978337ba1ae1037d3 url: "https://pub.dev" source: hosted version: "4.1.4" geolocator_apple: dependency: transitive description: name: geolocator_apple sha256: "567cf6d9879b4c33b2bd8bbfff0995e75c62a14f87b1480c8522c5dca5d3b166" url: "https://pub.dev" source: hosted version: "2.2.3" geolocator_platform_interface: dependency: transitive description: name: geolocator_platform_interface sha256: af4d69231452f9620718588f41acc4cb58312368716bfff2e92e770b46ce6386 url: "https://pub.dev" source: hosted version: "4.0.7" geolocator_web: dependency: transitive description: name: geolocator_web sha256: f68a122da48fcfff68bbc9846bb0b74ef651afe84a1b1f6ec20939de4d6860e1 url: "https://pub.dev" source: hosted version: "2.1.6" geolocator_windows: dependency: transitive description: name: geolocator_windows sha256: f5911c88e23f48b598dd506c7c19eff0e001645bdc03bb6fecb9f4549208354d url: "https://pub.dev" source: hosted version: "0.1.1" glob: dependency: transitive description: name: glob sha256: "4515b5b6ddb505ebdd242a5f2cc5d22d3d6a80013789debfbda7777f47ea308c" url: "https://pub.dev" source: hosted version: "2.1.1" google_fonts: dependency: "direct main" description: name: google_fonts sha256: "6b6f10f0ce3c42f6552d1c70d2c28d764cf22bb487f50f66cca31dcd5194f4d6" url: "https://pub.dev" source: hosted version: "4.0.4" google_maps_flutter: dependency: transitive description: name: google_maps_flutter sha256: "0c6b72b4b1e0f6204973e2b40868a75fe6380725d498f215cd7e35ed920d1c57" url: "https://pub.dev" source: hosted version: "2.2.3" google_maps_flutter_android: dependency: transitive description: name: google_maps_flutter_android sha256: f9141d0f050a42ebfe8f0929abb54af43d25142264cbe9b7e8025397c9d7dc51 url: "https://pub.dev" source: hosted version: "2.4.2" google_maps_flutter_ios: dependency: transitive description: name: google_maps_flutter_ios sha256: "33bbca8d4148ed373251ea2ec2344fdc63009926b6d6be71a0854fd42409b1ba" url: "https://pub.dev" source: hosted version: "2.1.13" google_maps_flutter_platform_interface: dependency: transitive description: name: google_maps_flutter_platform_interface sha256: "0967430c25240836b794d42336bd4c61f0e78e9fd33d1365fa9316bb36b6b410" url: "https://pub.dev" source: hosted version: "2.2.5" google_sign_in: dependency: "direct main" description: name: google_sign_in sha256: dfb5bd5aaed6b910dddfc4a5db20214d691d578b9187cc8083cf6aed9ba57f82 url: "https://pub.dev" source: hosted version: "5.4.3" google_sign_in_android: dependency: transitive description: name: google_sign_in_android sha256: "41187ee48f8f3f7588cb932a5ab3cc8c83f354d1d50c750f61b240efac1b33d2" url: "https://pub.dev" source: hosted version: "6.1.4" google_sign_in_ios: dependency: transitive description: name: google_sign_in_ios sha256: "1116aff5e87f89837b052a81abe6259be7c4dd418275786864d27b74cb2a4e70" url: "https://pub.dev" source: hosted version: "5.5.1" google_sign_in_platform_interface: dependency: transitive description: name: google_sign_in_platform_interface sha256: "61306213c76bb8170c3aa20017df296c0131c24d7f6c0cc7e2eeaeac34c9f457" url: "https://pub.dev" source: hosted version: "2.3.0" google_sign_in_web: dependency: transitive description: name: google_sign_in_web sha256: "75cc41ebc53b1756320ee14d9c3018ad3e6cea298147dbcd86e9d0c8d6720b40" url: "https://pub.dev" source: hosted version: "0.10.2+1" graphs: dependency: transitive description: name: graphs sha256: f9e130f3259f52d26f0cfc0e964513796dafed572fa52e45d2f8d6ca14db39b2 url: "https://pub.dev" source: hosted version: "2.2.0" hive: dependency: "direct main" description: name: hive sha256: "8dcf6db979d7933da8217edcec84e9df1bdb4e4edc7fc77dbd5aa74356d6d941" url: "https://pub.dev" source: hosted version: "2.2.3" hive_flutter: dependency: "direct main" description: name: hive_flutter sha256: dca1da446b1d808a51689fb5d0c6c9510c0a2ba01e22805d492c73b68e33eecc url: "https://pub.dev" source: hosted version: "1.1.0" hive_generator: dependency: "direct dev" description: name: hive_generator sha256: "65998cc4d2cd9680a3d9709d893d2f6bb15e6c1f92626c3f1fa650b4b3281521" url: "https://pub.dev" source: hosted version: "2.0.0" html: dependency: transitive description: name: html sha256: d9793e10dbe0e6c364f4c59bf3e01fb33a9b2a674bc7a1081693dba0614b6269 url: "https://pub.dev" source: hosted version: "0.15.1" http: dependency: "direct main" description: name: http sha256: "6aa2946395183537c8b880962d935877325d6a09a2867c3970c05c0fed6ac482" url: "https://pub.dev" source: hosted version: "0.13.5" http_multi_server: dependency: transitive description: name: http_multi_server sha256: "97486f20f9c2f7be8f514851703d0119c3596d14ea63227af6f7a481ef2b2f8b" url: "https://pub.dev" source: hosted version: "3.2.1" http_parser: dependency: transitive description: name: http_parser sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" url: "https://pub.dev" source: hosted version: "4.0.2" image: dependency: transitive description: name: image sha256: "8e9d133755c3e84c73288363e6343157c383a0c6c56fc51afcc5d4d7180306d6" url: "https://pub.dev" source: hosted version: "3.3.0" internet_connection_checker: dependency: "direct main" description: name: internet_connection_checker sha256: "1c683e63e89c9ac66a40748b1b20889fd9804980da732bf2b58d6d5456c8e876" url: "https://pub.dev" source: hosted version: "1.0.0+1" intl: dependency: "direct main" description: name: intl sha256: a3715e3bc90294e971cb7dc063fbf3cd9ee0ebf8604ffeafabd9e6f16abbdbe6 url: "https://pub.dev" source: hosted version: "0.18.0" intl_phone_field: dependency: "direct main" description: name: intl_phone_field sha256: "0d2b35d148ed28a454d50797e6c2fb297f0a295feab84641b02d3dd32294b3f3" url: "https://pub.dev" source: hosted version: "3.1.0" io: dependency: transitive description: name: io sha256: "0d4c73c3653ab85bf696d51a9657604c900a370549196a91f33e4c39af760852" url: "https://pub.dev" source: hosted version: "1.0.3" js: dependency: transitive description: name: js sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3 url: "https://pub.dev" source: hosted version: "0.6.7" json_annotation: dependency: transitive description: name: json_annotation sha256: "3520fa844009431b5d4491a5a778603520cdc399ab3406332dcc50f93547258c" url: "https://pub.dev" source: hosted version: "4.7.0" just_audio: dependency: transitive description: name: just_audio sha256: ec0bdd51762454542882ec06b3015170d51b37ae074706569e30d3554133bd4c url: "https://pub.dev" source: hosted version: "0.9.30" just_audio_platform_interface: dependency: transitive description: name: just_audio_platform_interface sha256: eff112d5138bea3ba544b6338b1e0537a32b5e1425e4d0dc38f732771cda7c84 url: "https://pub.dev" source: hosted version: "4.2.0" just_audio_web: dependency: transitive description: name: just_audio_web sha256: "89d8db6f19f3821bb6bf908c4bfb846079afb2ab575b783d781a6bf119e3abaf" url: "https://pub.dev" source: hosted version: "0.4.7" lints: dependency: transitive description: name: lints sha256: "5e4a9cd06d447758280a8ac2405101e0e2094d2a1dbdd3756aec3fe7775ba593" url: "https://pub.dev" source: hosted version: "2.0.1" logging: dependency: transitive description: name: logging sha256: c0bbfe94d46aedf9b8b3e695cf3bd48c8e14b35e3b2c639e0aa7755d589ba946 url: "https://pub.dev" source: hosted version: "1.1.0" matcher: dependency: transitive description: name: matcher sha256: "6501fbd55da300384b768785b83e5ce66991266cec21af89ab9ae7f5ce1c4cbb" url: "https://pub.dev" source: hosted version: "0.12.15" material_color_utilities: dependency: transitive description: name: material_color_utilities sha256: d92141dc6fe1dad30722f9aa826c7fbc896d021d792f80678280601aff8cf724 url: "https://pub.dev" source: hosted version: "0.2.0" meta: dependency: transitive description: name: meta sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3" url: "https://pub.dev" source: hosted version: "1.9.1" mime: dependency: transitive description: name: mime sha256: dab22e92b41aa1255ea90ddc4bc2feaf35544fd0728e209638cad041a6e3928a url: "https://pub.dev" source: hosted version: "1.0.2" nested: dependency: transitive description: name: nested sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20" url: "https://pub.dev" source: hosted version: "1.0.0" nm: dependency: transitive description: name: nm sha256: "2c9aae4127bdc8993206464fcc063611e0e36e72018696cd9631023a31b24254" url: "https://pub.dev" source: hosted version: "0.5.0" octo_image: dependency: transitive description: name: octo_image sha256: "107f3ed1330006a3bea63615e81cf637433f5135a52466c7caa0e7152bca9143" url: "https://pub.dev" source: hosted version: "1.0.2" open_mail_app: dependency: "direct main" description: name: open_mail_app sha256: ffc93edc0590ef4586136f505187b25014a336fe0374ad3cc528e727b3f2e726 url: "https://pub.dev" source: hosted version: "0.4.5" package_config: dependency: transitive description: name: package_config sha256: "1c5b77ccc91e4823a5af61ee74e6b972db1ef98c2ff5a18d3161c982a55448bd" url: "https://pub.dev" source: hosted version: "2.1.0" path: dependency: transitive description: name: path sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917" url: "https://pub.dev" source: hosted version: "1.8.3" path_drawing: dependency: transitive description: name: path_drawing sha256: bbb1934c0cbb03091af082a6389ca2080345291ef07a5fa6d6e078ba8682f977 url: "https://pub.dev" source: hosted version: "1.0.1" path_parsing: dependency: transitive description: name: path_parsing sha256: e3e67b1629e6f7e8100b367d3db6ba6af4b1f0bb80f64db18ef1fbabd2fa9ccf url: "https://pub.dev" source: hosted version: "1.0.1" path_provider: dependency: transitive description: name: path_provider sha256: "050e8e85e4b7fecdf2bb3682c1c64c4887a183720c802d323de8a5fd76d372dd" url: "https://pub.dev" source: hosted version: "2.0.11" path_provider_android: dependency: transitive description: name: path_provider_android sha256: "1dab723dd8feeb80afb39c7be894f09df1457243d930010f6f328fb8c660c5e1" url: "https://pub.dev" source: hosted version: "2.0.21" path_provider_ios: dependency: transitive description: name: path_provider_ios sha256: "03d639406f5343478352433f00d3c4394d52dac8df3d847869c5e2333e0bbce8" url: "https://pub.dev" source: hosted version: "2.0.11" path_provider_linux: dependency: transitive description: name: path_provider_linux sha256: ab0987bf95bc591da42dffb38c77398fc43309f0b9b894dcc5d6f40c4b26c379 url: "https://pub.dev" source: hosted version: "2.1.7" path_provider_macos: dependency: transitive description: name: path_provider_macos sha256: "2a97e7fbb7ae9dcd0dfc1220a78e9ec3e71da691912e617e8715ff2a13086ae8" url: "https://pub.dev" source: hosted version: "2.0.6" path_provider_platform_interface: dependency: transitive description: name: path_provider_platform_interface sha256: f0abc8ebd7253741f05488b4813d936b4d07c6bae3e86148a09e342ee4b08e76 url: "https://pub.dev" source: hosted version: "2.0.5" path_provider_windows: dependency: transitive description: name: path_provider_windows sha256: bcabbe399d4042b8ee687e17548d5d3f527255253b4a639f5f8d2094a9c2b45c url: "https://pub.dev" source: hosted version: "2.1.3" pay: dependency: "direct main" description: name: pay sha256: d7525538a66af1982a0932d3969416e835a6aeafda59e280ed2d1f410b4aaa09 url: "https://pub.dev" source: hosted version: "1.1.2" pay_android: dependency: transitive description: name: pay_android sha256: e8483456b575463f2b69f5fc0824c0e756e20dd1ff04650e077b83661ad2254d url: "https://pub.dev" source: hosted version: "1.1.0-beta01" pay_ios: dependency: transitive description: name: pay_ios sha256: "75ccb285d03f22b136c58ab8e8e0c4b614ee52a8b67e6ccfb680d4d8c04a70f6" url: "https://pub.dev" source: hosted version: "1.0.11" pay_platform_interface: dependency: transitive description: name: pay_platform_interface sha256: "26a379e33c46508987c7afee8cde6f4aca5b5ab0afc697c27efbd33a9c2ea82a" url: "https://pub.dev" source: hosted version: "1.0.4" pedantic: dependency: transitive description: name: pedantic sha256: "67fc27ed9639506c856c840ccce7594d0bdcd91bc8d53d6e52359449a1d50602" url: "https://pub.dev" source: hosted version: "1.11.1" petitparser: dependency: transitive description: name: petitparser sha256: "49392a45ced973e8d94a85fdb21293fbb40ba805fc49f2965101ae748a3683b4" url: "https://pub.dev" source: hosted version: "5.1.0" photo_view: dependency: "direct main" description: name: photo_view sha256: "8036802a00bae2a78fc197af8a158e3e2f7b500561ed23b4c458107685e645bb" url: "https://pub.dev" source: hosted version: "0.14.0" place_picker: dependency: "direct main" description: name: place_picker sha256: "95a861eaffe015d5b3ae45c991e5d667009f7d1eb136b1438075e2470880509d" url: "https://pub.dev" source: hosted version: "0.10.0" platform: dependency: transitive description: name: platform sha256: "4a451831508d7d6ca779f7ac6e212b4023dd5a7d08a27a63da33756410e32b76" url: "https://pub.dev" source: hosted version: "3.1.0" plugin_platform_interface: dependency: transitive description: name: plugin_platform_interface sha256: dbf0f707c78beedc9200146ad3cb0ab4d5da13c246336987be6940f026500d3a url: "https://pub.dev" source: hosted version: "2.1.3" pointycastle: dependency: transitive description: name: pointycastle sha256: db7306cf0249f838d1a24af52b5a5887c5bf7f31d8bb4e827d071dc0939ad346 url: "https://pub.dev" source: hosted version: "3.6.2" pool: dependency: transitive description: name: pool sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a" url: "https://pub.dev" source: hosted version: "1.5.1" process: dependency: transitive description: name: process sha256: "53fd8db9cec1d37b0574e12f07520d582019cb6c44abf5479a01505099a34a09" url: "https://pub.dev" source: hosted version: "4.2.4" provider: dependency: "direct main" description: name: provider sha256: e1e7413d70444ea3096815a60fe5da1b11bda8a9dc4769252cc82c53536f8bcc url: "https://pub.dev" source: hosted version: "6.0.4" pub_semver: dependency: transitive description: name: pub_semver sha256: "307de764d305289ff24ad257ad5c5793ce56d04947599ad68b3baa124105fc17" url: "https://pub.dev" source: hosted version: "2.1.3" pubspec_parse: dependency: transitive description: name: pubspec_parse sha256: "75f6614d6dde2dc68948dffbaa4fe5dae32cd700eb9fb763fe11dfb45a3c4d0a" url: "https://pub.dev" source: hosted version: "1.2.1" qr: dependency: transitive description: name: qr sha256: "5c4208b4dc0d55c3184d10d83ee0ded6212dc2b5e2ba17c5a0c0aab279128d21" url: "https://pub.dev" source: hosted version: "2.1.0" qr_flutter: dependency: "direct main" description: name: qr_flutter sha256: c5c121c54cb6dd837b9b9d57eb7bc7ec6df4aee741032060c8833a678c80b87e url: "https://pub.dev" source: hosted version: "4.0.0" quiver: dependency: transitive description: name: quiver sha256: b1c1ac5ce6688d77f65f3375a9abb9319b3cb32486bdc7a1e0fdf004d7ba4e47 url: "https://pub.dev" source: hosted version: "3.2.1" rxdart: dependency: transitive description: name: rxdart sha256: "2ef8b4e91cb3b55d155e0e34eeae0ac7107974e451495c955ac04ddee8cc21fd" url: "https://pub.dev" source: hosted version: "0.26.0" scratcher: dependency: "direct main" description: name: scratcher sha256: f0078d4c6276e15e9ea441cfd0edf7f22e517fd65b85d0ad14a0a3f96ec435b8 url: "https://pub.dev" source: hosted version: "2.3.0" scrollable_positioned_list: dependency: "direct main" description: name: scrollable_positioned_list sha256: ca7fcaa743db712d4f7b1580526f494d0093c77a721a65705ee51fbeac7a2bd3 url: "https://pub.dev" source: hosted version: "0.3.5" share_plus: dependency: "direct main" description: name: share_plus sha256: e387077716f80609bb979cd199331033326033ecd1c8f200a90c5f57b1c9f55e url: "https://pub.dev" source: hosted version: "6.3.0" 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: name: shared_preferences sha256: "76917b7d4b9526b2ba416808a7eb9fb2863c1a09cf63ec85f1453da240fa818a" url: "https://pub.dev" source: hosted version: "2.0.15" shared_preferences_android: dependency: transitive description: name: shared_preferences_android sha256: "8e251f3c986002b65fed6396bce81f379fb63c27317d49743cf289fd0fd1ab97" url: "https://pub.dev" source: hosted version: "2.0.14" shared_preferences_ios: dependency: transitive description: name: shared_preferences_ios sha256: "585a14cefec7da8c9c2fb8cd283a3bb726b4155c0952afe6a0caaa7b2272de34" url: "https://pub.dev" source: hosted version: "2.1.1" shared_preferences_linux: dependency: transitive description: name: shared_preferences_linux sha256: "28aefc1261746e7bad3d09799496054beb84e8c4ffcdfed7734e17b4ada459a5" url: "https://pub.dev" source: hosted version: "2.1.1" shared_preferences_macos: dependency: transitive description: name: shared_preferences_macos sha256: fbb94bf296576f49be37a1496d5951796211a8db0aa22cc0d68c46440dad808c url: "https://pub.dev" source: hosted version: "2.0.4" shared_preferences_platform_interface: dependency: transitive description: name: shared_preferences_platform_interface sha256: da9431745ede5ece47bc26d5d73a9d3c6936ef6945c101a5aca46f62e52c1cf3 url: "https://pub.dev" source: hosted version: "2.1.0" shared_preferences_web: dependency: transitive description: name: shared_preferences_web sha256: a4b5bc37fe1b368bbc81f953197d55e12f49d0296e7e412dfe2d2d77d6929958 url: "https://pub.dev" source: hosted version: "2.0.4" shared_preferences_windows: dependency: transitive description: name: shared_preferences_windows sha256: "97f7ab9a7da96d9cf19581f5de520ceb529548498bd6b5e0ccd02d68a0d15eba" url: "https://pub.dev" source: hosted version: "2.1.1" shelf: dependency: transitive description: name: shelf sha256: c24a96135a2ccd62c64b69315a14adc5c3419df63b4d7c05832a346fdb73682c url: "https://pub.dev" source: hosted version: "1.4.0" shelf_web_socket: dependency: transitive description: name: shelf_web_socket sha256: a988c0e8d8ffbdb8a28aa7ec8e449c260f3deb808781fe1284d22c5bba7156e8 url: "https://pub.dev" source: hosted version: "1.0.3" shimmer: dependency: "direct main" description: name: shimmer sha256: "1f1009b5845a1f88f1c5630212279540486f97409e9fc3f63883e71070d107bf" url: "https://pub.dev" source: hosted version: "2.0.0" sign_in_with_apple: dependency: "direct main" description: name: sign_in_with_apple sha256: ac3b113767dfdd765078c507dad9d4d9fe96b669cc7bd88fc36fc15376fb3400 url: "https://pub.dev" source: hosted version: "4.3.0" sign_in_with_apple_platform_interface: dependency: transitive description: name: sign_in_with_apple_platform_interface sha256: a5883edee09ed6be19de19e7d9f618a617fe41a6fa03f76d082dfb787e9ea18d url: "https://pub.dev" source: hosted version: "1.0.0" sign_in_with_apple_web: dependency: transitive description: name: sign_in_with_apple_web sha256: "44b66528f576e77847c14999d5e881e17e7223b7b0625a185417829e5306f47a" url: "https://pub.dev" source: hosted version: "1.0.1" sky_engine: dependency: transitive description: flutter source: sdk version: "0.0.99" source_gen: dependency: transitive description: name: source_gen sha256: "2d79738b6bbf38a43920e2b8d189e9a3ce6cc201f4b8fc76be5e4fe377b1c38d" url: "https://pub.dev" source: hosted version: "1.2.6" source_helper: dependency: transitive description: name: source_helper sha256: "3b67aade1d52416149c633ba1bb36df44d97c6b51830c2198e934e3fca87ca1f" url: "https://pub.dev" source: hosted version: "1.3.3" source_span: dependency: transitive description: name: source_span sha256: dd904f795d4b4f3b870833847c461801f6750a9fa8e61ea5ac53f9422b31f250 url: "https://pub.dev" source: hosted version: "1.9.1" sqflite: dependency: transitive description: name: sqflite sha256: d21c022832f139b89922738e200c07387a49c549bf36c35654418e19ff76d161 url: "https://pub.dev" source: hosted version: "2.2.0+3" sqflite_common: dependency: transitive description: name: sqflite_common sha256: "0c21a187d645aa65da5be6997c0c713eed61e049158870ae2de157e6897067ab" url: "https://pub.dev" source: hosted version: "2.4.0+2" stack_trace: dependency: transitive description: name: stack_trace sha256: c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5 url: "https://pub.dev" source: hosted version: "1.11.0" stream_channel: dependency: transitive description: name: stream_channel sha256: "83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8" url: "https://pub.dev" source: hosted version: "2.1.1" stream_transform: dependency: transitive description: name: stream_transform sha256: "14a00e794c7c11aa145a170587321aedce29769c08d7f58b1d141da75e3b1c6f" url: "https://pub.dev" source: hosted version: "2.1.0" string_scanner: dependency: transitive description: name: string_scanner sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" url: "https://pub.dev" source: hosted version: "1.2.0" swipeable_tile: dependency: "direct main" description: name: swipeable_tile sha256: "5459a28a2ea7cefada1cab1625dd03b0db77eaf2c42925fba27c4bcc2dd0d740" url: "https://pub.dev" source: hosted version: "2.0.0+2" synchronized: dependency: transitive description: name: synchronized sha256: "7b530acd9cb7c71b0019a1e7fa22c4105e675557a4400b6a401c71c5e0ade1ac" url: "https://pub.dev" source: hosted version: "3.0.0+3" term_glyph: dependency: transitive description: name: term_glyph sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 url: "https://pub.dev" source: hosted version: "1.2.1" test_api: dependency: transitive description: name: test_api sha256: eb6ac1540b26de412b3403a163d919ba86f6a973fe6cc50ae3541b80092fdcfb url: "https://pub.dev" source: hosted version: "0.5.1" timezone: dependency: transitive description: name: timezone sha256: "24c8fcdd49a805d95777a39064862133ff816ebfffe0ceff110fb5960e557964" url: "https://pub.dev" source: hosted version: "0.9.1" timing: dependency: transitive description: name: timing sha256: c386d07d7f5efc613479a7c4d9d64b03710b03cfaa7e8ad5f2bfb295a1f0dfad url: "https://pub.dev" source: hosted version: "1.0.0" top_snackbar_flutter: dependency: "direct main" description: name: top_snackbar_flutter sha256: "22acd9ef6f4ca4cbbd8814bfc90ed5edb6d19196b58feca2ce2b914dd21b8a84" url: "https://pub.dev" source: hosted version: "1.1.1" typed_data: dependency: transitive description: name: typed_data sha256: "26f87ade979c47a150c9eaab93ccd2bebe70a27dc0b4b29517f2904f04eb11a5" url: "https://pub.dev" source: hosted version: "1.3.1" universal_io: dependency: transitive description: name: universal_io sha256: "79f78ddad839ee3aae3ec7c01eb4575faf0d5c860f8e5223bc9f9c17f7f03cef" url: "https://pub.dev" source: hosted version: "2.0.4" url_launcher: dependency: "direct main" description: name: url_launcher sha256: "568176fc8ab5ac1d88ff0db8ff28659d103851670dda55e83b485664c2309299" url: "https://pub.dev" source: hosted version: "6.1.6" url_launcher_android: dependency: transitive description: name: url_launcher_android sha256: "2514dc16ac169adf55159268d7bf70317d9f2fc9ef5bb02020bb7ad710c0aeb4" url: "https://pub.dev" source: hosted version: "6.0.21" url_launcher_ios: dependency: transitive description: name: url_launcher_ios sha256: "6ba7dddee26c9fae27c9203c424631109d73c8fa26cfa7bc3e35e751cb87f62e" url: "https://pub.dev" source: hosted version: "6.0.17" url_launcher_linux: dependency: transitive description: name: url_launcher_linux sha256: "360fa359ab06bcb4f7c5cd3123a2a9a4d3364d4575d27c4b33468bd4497dd094" url: "https://pub.dev" source: hosted version: "3.0.1" url_launcher_macos: dependency: transitive description: name: url_launcher_macos sha256: a9b3ea9043eabfaadfa3fb89de67a11210d85569086d22b3854484beab8b3978 url: "https://pub.dev" source: hosted version: "3.0.1" url_launcher_platform_interface: dependency: transitive description: name: url_launcher_platform_interface sha256: "4eae912628763eb48fc214522e58e942fd16ce195407dbf45638239523c759a6" url: "https://pub.dev" source: hosted version: "2.1.1" url_launcher_web: dependency: transitive description: name: url_launcher_web sha256: "5669882643b96bb6d5786637cac727c6e918a790053b09245fd4513b8a07df2a" url: "https://pub.dev" source: hosted version: "2.0.13" url_launcher_windows: dependency: transitive description: name: url_launcher_windows sha256: e3c3b16d3104260c10eea3b0e34272aaa57921f83148b0619f74c2eced9b7ef1 url: "https://pub.dev" source: hosted version: "3.0.1" uuid: dependency: transitive description: name: uuid sha256: "648e103079f7c64a36dc7d39369cabb358d377078a051d6ae2ad3aa539519313" url: "https://pub.dev" source: hosted version: "3.0.7" vector_graphics: dependency: transitive description: name: vector_graphics sha256: "2f317d969a9f1eb59d1890643107da749698b7c08c4b0532fc95c8a7130d2803" url: "https://pub.dev" source: hosted version: "1.1.3" vector_graphics_codec: dependency: transitive description: name: vector_graphics_codec sha256: "13cccfda2dd61232a19dfb769b7a907e2ab23aabfebb9053c81e29c6c11b1766" url: "https://pub.dev" source: hosted version: "1.1.3" vector_graphics_compiler: dependency: transitive description: name: vector_graphics_compiler sha256: "524c9889a1327401124fe068840a8867f0d57987c1219a2a696ade629ec2bec3" url: "https://pub.dev" source: hosted version: "1.1.3" vector_math: dependency: transitive description: name: vector_math sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" url: "https://pub.dev" source: hosted version: "2.1.4" video_player: dependency: "direct main" description: name: video_player sha256: de95f0e9405f29b5582573d4166132e71f83b3158aac14e8ee5767a54f4f1fbd url: "https://pub.dev" source: hosted version: "2.6.1" video_player_android: dependency: transitive description: name: video_player_android sha256: ae1c7d9a71c236a1bf9e567bd7ed4c90887e389a5f233b2192593f7f7395005c url: "https://pub.dev" source: hosted version: "2.4.8" video_player_avfoundation: dependency: transitive description: name: video_player_avfoundation sha256: "4c274e439f349a0ee5cb3c42978393ede173a443b98f50de6ffe6900eaa19216" url: "https://pub.dev" source: hosted version: "2.4.6" video_player_platform_interface: dependency: transitive description: name: video_player_platform_interface sha256: a8c4dcae2a7a6e7cc1d7f9808294d968eca1993af34a98e95b9bdfa959bec684 url: "https://pub.dev" source: hosted version: "6.1.0" video_player_web: dependency: transitive description: name: video_player_web sha256: "44ce41424d104dfb7cf6982cc6b84af2b007a24d126406025bf40de5d481c74c" url: "https://pub.dev" source: hosted version: "2.0.16" wakelock: dependency: transitive description: name: wakelock sha256: "769ecf42eb2d07128407b50cb93d7c10bd2ee48f0276ef0119db1d25cc2f87db" url: "https://pub.dev" source: hosted version: "0.6.2" wakelock_macos: dependency: transitive description: name: wakelock_macos sha256: "047c6be2f88cb6b76d02553bca5a3a3b95323b15d30867eca53a19a0a319d4cd" url: "https://pub.dev" source: hosted version: "0.4.0" wakelock_platform_interface: dependency: transitive description: name: wakelock_platform_interface sha256: "1f4aeb81fb592b863da83d2d0f7b8196067451e4df91046c26b54a403f9de621" url: "https://pub.dev" source: hosted version: "0.3.0" wakelock_web: dependency: transitive description: name: wakelock_web sha256: "1b256b811ee3f0834888efddfe03da8d18d0819317f20f6193e2922b41a501b5" url: "https://pub.dev" source: hosted version: "0.4.0" wakelock_windows: dependency: transitive description: name: wakelock_windows sha256: "857f77b3fe6ae82dd045455baa626bc4b93cb9bb6c86bf3f27c182167c3a5567" url: "https://pub.dev" source: hosted version: "0.2.1" watcher: dependency: transitive description: name: watcher sha256: "6a7f46926b01ce81bfc339da6a7f20afbe7733eff9846f6d6a5466aa4c6667c0" url: "https://pub.dev" source: hosted version: "1.0.2" web_socket_channel: dependency: transitive description: name: web_socket_channel sha256: "3a969ddcc204a3e34e863d204b29c0752716f78b6f9cc8235083208d268a4ccd" url: "https://pub.dev" source: hosted version: "2.2.0" webview_flutter: dependency: "direct main" description: name: webview_flutter sha256: b6cd42db3ced5411f3d01599906156885b18e4188f7065a8a351eb84bee347e0 url: "https://pub.dev" source: hosted version: "4.0.6" webview_flutter_android: dependency: transitive description: name: webview_flutter_android sha256: c849dcb6bf7367f696869006fb9575c15bdc6a1d624ae13f12de5a147a740b12 url: "https://pub.dev" source: hosted version: "3.4.2" webview_flutter_platform_interface: dependency: transitive description: name: webview_flutter_platform_interface sha256: df6472164b3f4eaf3280422227f361dc8424b106726b7f21d79a8656ba53f71f url: "https://pub.dev" source: hosted version: "2.0.2" webview_flutter_wkwebview: dependency: transitive description: name: webview_flutter_wkwebview sha256: ab12479f7a0cf112b9420c36aaf206a1ca47cd60cd42de74a4be2e97a697587b url: "https://pub.dev" source: hosted version: "3.2.1" win32: dependency: transitive description: name: win32 sha256: d13ac5deea7327f027b3b97ee19ee210f68256ecf3f1a304bcfb992ee947637c url: "https://pub.dev" source: hosted version: "3.1.1" xdg_directories: dependency: transitive description: name: xdg_directories sha256: "11541eedefbcaec9de35aa82650b695297ce668662bbd6e3911a7fabdbde589f" url: "https://pub.dev" source: hosted version: "0.2.0+2" xml: dependency: transitive description: name: xml sha256: ac0e3f4bf00ba2708c33fbabbbe766300e509f8c82dbd4ab6525039813f7e2fb url: "https://pub.dev" source: hosted version: "6.1.0" yaml: dependency: transitive description: name: yaml sha256: "23812a9b125b48d4007117254bca50abb6c712352927eece9e155207b1db2370" url: "https://pub.dev" source: hosted version: "3.1.1" sdks: dart: ">=3.0.0 <4.0.0" flutter: ">=3.10.0"

suhail600 avatar Feb 13 '24 10:02 suhail600

Thank you @suhail600, can you share your thoughts on the two questions in the previous comment?

JlUgia avatar Feb 13 '24 12:02 JlUgia

This is certainly unexpected.

  1. Do you only have the pay dependency in the dependencies section in your pubspec.yaml or do you also have an entry for other pay related packages (like pay_android)?

I have other packages too its a large project and has so many of them , but i don't think the its associated with conflicts as the google pay button causing this error only on iOS(mac development) and not in android(windows development).

  1. How does your pubspec.lock change if you only keep the pay dependency in your pubspec.yaml and run flutter pub upgrade?

I have other dependencies too. You can just check the details lock file i submitted in the previous response. https://github.com/google-pay/flutter-plugin/issues/244#issuecomment-1941148024

suhail600 avatar Feb 15 '24 07:02 suhail600

I don't see a relationship between the two @CarooMobility. In any case, did your issue get resolved?

Yes issue is resolved in beta version

mianumar5653 avatar Feb 19 '24 21:02 mianumar5653

Glad to hear @mianumar5653. @suhail600 what I'm trying to say is that the versions of pay dependencies in your pubspec.lock are not compatible. In any case, updating to 2.0.0 should resolve the issue. Let me know if that's the case.

JlUgia avatar May 09 '24 12:05 JlUgia

@suhail600 did the new version resolve the issue for you? I'm closing this issue due to inactivity, feel free to re-open if the problem persists.

JlUgia avatar Jul 30 '24 10:07 JlUgia