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

Can't run Flutter application on IOS simulator from Android Studio. #90601

Closed
galunecandrey opened this issue Sep 23, 2021 · 18 comments
Closed
Labels
c: crash Stack traces logged to the console platform-ios iOS applications specifically r: timeout Issue is closed due to author not providing the requested details in time tool Affects the "flutter" command-line tool. See also t: labels.

Comments

@galunecandrey
Copy link

galunecandrey commented Sep 23, 2021

We updated Flutter to v2.5.1.
And now we can't run Flutter application on IOS simulator from Android Studio. But I can run from XCode on IOS simulator.
With real IPhone we don't have such problem. With Android device and Emulator we don't have problems too.

flutter run -v:

#0      throwToolExit (package:flutter_tools/src/base/common.dart:10:3)
          #1      RunCommand.runCommand (package:flutter_tools/src/commands/run.dart:669:9)
          <asynchronous suspension>
          #2      FlutterCommand.run.<anonymous closure> (package:flutter_tools/src/runner/flutter_command.dart:1125:27)
          <asynchronous suspension>
          #3      AppContext.run.<anonymous closure> (package:flutter_tools/src/base/context.dart:150:19)
          <asynchronous suspension>
          #4      CommandRunner.runCommand (package:args/command_runner.dart:209:13)
          <asynchronous suspension>
          #5      FlutterCommandRunner.runCommand.<anonymous closure> (package:flutter_tools/src/runner/flutter_command_runner.dart:288:9)
          <asynchronous suspension>
          #6      AppContext.run.<anonymous closure> (package:flutter_tools/src/base/context.dart:150:19)
          <asynchronous suspension>
          #7      FlutterCommandRunner.runCommand (package:flutter_tools/src/runner/flutter_command_runner.dart:236:5)
          <asynchronous suspension>
          #8      run.<anonymous closure>.<anonymous closure> (package:flutter_tools/runner.dart:62:9)
          <asynchronous suspension>
          #9      AppContext.run.<anonymous closure> (package:flutter_tools/src/base/context.dart:150:19)
          <asynchronous suspension>
          #10     main (package:flutter_tools/executable.dart:92:3)
          <asynchronous suspension>
flutter doctor -v:
[✓] Flutter (Channel stable, 2.5.1, on macOS 11.6 20G165 darwin-x64, locale en-UA)
    • Flutter version 2.5.1 at /Users/admin/Flutter/flutter
    • Upstream repository https://github.com/flutter/flutter.git
    • Framework revision ffb2ecea52 (6 days ago), 2021-09-17 15:26:33 -0400
    • Engine revision b3af521a05
    • Dart version 2.14.2

[✓] Android toolchain - develop for Android devices (Android SDK version 31.0.0)
    • Android SDK at /Users/admin/AndroidSDK
    • Platform android-31, build-tools 31.0.0
    • ANDROID_HOME = /Users/admin/AndroidSDK
    • ANDROID_SDK_ROOT = /Users/admin/AndroidSDK
    • Java binary at: /Applications/Android Studio.app/Contents/jre/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build 11.0.10+0-b96-7281165)
    • All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • Xcode 13.0, Build version 13A233
    • CocoaPods version 1.11.2

[✓] Chrome - develop for the web
    • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome

[✓] Android Studio (version 2020.3)
    • Android Studio at /Applications/Android Studio.app/Contents
    • Flutter plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/9212-flutter
    • Dart plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/6351-dart
    • Java version OpenJDK Runtime Environment (build 11.0.10+0-b96-7281165)

[✓] VS Code (version 1.60.0)
    • VS Code at /Applications/Visual Studio Code.app/Contents
    • Flutter extension version 3.25.0

[✓] Connected device (4 available)
    • MI 9 (mobile)            • 7794ffbd                                 • android-arm64  • Android 11 (API 30)
    • Andrii’s iPhone (mobile) • 506e3fe45600f9ab6101e50338e802947b8ea455 • ios            • iOS 14.8 18H17
    • iPhone 13 mini (mobile)  • 0792C011-B695-478B-A248-D87C61946DEA     • ios            • com.apple.CoreSimulator.SimRuntime.iOS-15-0 (simulator)
    • Chrome (web)             • chrome                                   • web-javascript • Google Chrome 93.0.4577.82
@darshankawar darshankawar added the in triage Presently being triaged by the triage team label Sep 24, 2021
@darshankawar
Copy link
Member

@galunecandrey
Can you provide the complete flutter run --verbose log ? It'll be huge so you can put that in a file and share it here.
Also provide your ios/podfile.

Thanks.

@darshankawar darshankawar added the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Sep 24, 2021
@galunecandrey
Copy link
Author

galunecandrey commented Sep 24, 2021

@darshankawar

ios/podfile
deployment_target = '13.0'
platform :ios, deployment_target

# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

project 'Runner', {
  'Debug' => :debug,
  'Profile' => :release,
  'Release' => :release,
}

def flutter_root
  generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
  unless File.exist?(generated_xcode_build_settings_path)
    raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
  end

  File.foreach(generated_xcode_build_settings_path) do |line|
    matches = line.match(/FLUTTER_ROOT\=(.*)/)
    return matches[1].strip if matches
  end
  raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
end

require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)

flutter_ios_podfile_setup

target 'Runner' do
  use_frameworks!
  use_modular_headers!

  flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
  
  target 'RunnerTest' do
    inherit! :search_paths
  end
end

post_install do |installer|
  installer.pods_project.targets.each do |target|
    flutter_additional_ios_build_settings(target)
    installer.pods_project.build_configuration_list.build_configurations.each do |config|
      config.build_settings.delete('ARCHS')

    target.build_configurations.each do |config|
      config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = deployment_target
      config.build_settings.delete('ARCHS')

          # You can remove unused permissions here
          # for more infomation: https://github.com/BaseflowIT/flutter-permission-handler/blob/develop/permission_handler/ios/Classes/PermissionHandlerEnums.h
          # e.g. when you don't need camera permission, just add 'PERMISSION_CAMERA=0'
          config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [
            '$(inherited)',

            ## dart: PermissionGroup.calendar
            # 'PERMISSION_EVENTS=1',

            ## dart: PermissionGroup.reminders
            # 'PERMISSION_REMINDERS=1',

            ## dart: PermissionGroup.contacts
            # 'PERMISSION_CONTACTS=1',

            ## dart: PermissionGroup.camera
             'PERMISSION_CAMERA=1',

            ## dart: PermissionGroup.microphone
             'PERMISSION_MICROPHONE=1',

            ## dart: PermissionGroup.speech
            # 'PERMISSION_SPEECH_RECOGNIZER=1',

            ## dart: PermissionGroup.photos
             'PERMISSION_PHOTOS=1',

            ## dart: [PermissionGroup.location, PermissionGroup.locationAlways, PermissionGroup.locationWhenInUse]
             'PERMISSION_LOCATION=1',

            ## dart: PermissionGroup.notification
             'PERMISSION_NOTIFICATIONS=1',

            ## dart: PermissionGroup.mediaLibrary
            # 'PERMISSION_MEDIA_LIBRARY=1',

            ## dart: PermissionGroup.sensors
            # 'PERMISSION_SENSORS=1'
             
            ## dart: PermissionGroup.bluetooth
            # 'PERMISSION_BLUETOOTH=1',

            ## dart: PermissionGroup.appTrackingTransparency
            # 'PERMISSION_APP_TRACKING_TRANSPARENCY=1'
          ]
        end
    end
  end
end




@github-actions github-actions bot removed the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Sep 24, 2021
@galunecandrey
Copy link
Author

@darshankawar
logs.pdf

@darshankawar
Copy link
Member

@galunecandrey
Thanks for the log. I was looking for something like undefined symbols kind of error in it, but don't see any. Maybe the simulator arch could be missing, but I am not sure. Do you see any of the above terms in the error log you get ?

Can you share your pubspec.yaml, pubspec.lock, and ios/Podfile.lock?

@darshankawar darshankawar added the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Sep 24, 2021
@galunecandrey
Copy link
Author

galunecandrey commented Sep 24, 2021

@darshankawar I can run project from XCode on IOS Simulator. The problem in flutter_tools package.
Also I can run on real IPhone from AS. The problem only with IOS Simulator.

@github-actions github-actions bot removed the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Sep 24, 2021
@galunecandrey
Copy link
Author

galunecandrey commented Sep 24, 2021

@darshankawar

podfile.lock
PODS:
  - ACPAnalytics (2.5.1):
    - ACPAnalytics/xcframeworks (= 2.5.1)
    - ACPCore (>= 2.9.0)
  - ACPAnalytics/xcframeworks (2.5.1):
    - ACPCore (>= 2.9.0)
  - ACPCore (2.9.4):
    - ACPCore/main (= 2.9.4)
  - ACPCore/main (2.9.4)
  - ACPPlaces (1.4.0):
    - ACPCore (>= 2.9.0)
    - ACPPlaces/xcframeworks (= 1.4.0)
  - ACPPlaces/xcframeworks (1.4.0):
    - ACPCore (>= 2.9.0)
  - ACPPlacesMonitor (2.1.4):
    - ACPCore (>= 2.3.6)
    - ACPPlaces (>= 1.3.0)
    - ACPPlacesMonitor/iOS (= 2.1.4)
  - ACPPlacesMonitor/iOS (2.1.4):
    - ACPCore (>= 2.3.6)
    - ACPPlaces (>= 1.3.0)
  - ACPUserProfile (2.2.0):
    - ACPCore (>= 2.9.0)
    - ACPUserProfile/xcframeworks (= 2.2.0)
  - ACPUserProfile/xcframeworks (2.2.0):
    - ACPCore (>= 2.9.0)
  - "app_settings (3.0.0+1)":
    - Flutter
  - AppAuth (1.4.0):
    - AppAuth/Core (= 1.4.0)
    - AppAuth/ExternalUserAgent (= 1.4.0)
  - AppAuth/Core (1.4.0)
  - AppAuth/ExternalUserAgent (1.4.0)
  - device_info (0.0.1):
    - Flutter
  - FBAEMKit (11.2.1):
    - FBAEMKit/AEM (= 11.2.1)
  - FBAEMKit/AEM (11.2.1):
    - FBSDKCoreKit_Basics (~> 11.2.1)
  - FBSDKCoreKit (11.2.1):
    - FBSDKCoreKit/Core (= 11.2.1)
  - FBSDKCoreKit/Core (11.2.1):
    - FBAEMKit (~> 11.2.1)
    - FBSDKCoreKit_Basics (~> 11.2.1)
  - FBSDKCoreKit_Basics (11.2.1):
    - FBSDKCoreKit_Basics/Basics (= 11.2.1)
  - FBSDKCoreKit_Basics/Basics (11.2.1)
  - FBSDKLoginKit (11.2.1):
    - FBSDKLoginKit/Login (= 11.2.1)
  - FBSDKLoginKit/Login (11.2.1):
    - FBSDKCoreKit (~> 11.2.1)
    - FBSDKCoreKit_Basics (~> 11.2.1)
  - Firebase/CoreOnly (8.6.0):
    - FirebaseCore (= 8.6.0)
  - Firebase/Crashlytics (8.6.0):
    - Firebase/CoreOnly
    - FirebaseCrashlytics (~> 8.6.0)
  - Firebase/Messaging (8.6.0):
    - Firebase/CoreOnly
    - FirebaseMessaging (~> 8.6.0)
  - Firebase/RemoteConfig (8.6.0):
    - Firebase/CoreOnly
    - FirebaseRemoteConfig (~> 8.6.0)
  - firebase_core (1.6.0):
    - Firebase/CoreOnly (= 8.6.0)
    - Flutter
  - firebase_crashlytics (2.2.1):
    - Firebase/Crashlytics (= 8.6.0)
    - firebase_core
    - Flutter
  - firebase_messaging (10.0.7):
    - Firebase/Messaging (= 8.6.0)
    - firebase_core
    - Flutter
  - firebase_remote_config (0.11.0):
    - Firebase/RemoteConfig (= 8.6.0)
    - firebase_core
    - Flutter
  - FirebaseABTesting (8.7.0):
    - FirebaseCore (~> 8.0)
  - FirebaseCore (8.6.0):
    - FirebaseCoreDiagnostics (~> 8.0)
    - GoogleUtilities/Environment (~> 7.4)
    - GoogleUtilities/Logger (~> 7.4)
  - FirebaseCoreDiagnostics (8.7.0):
    - GoogleDataTransport (~> 9.0)
    - GoogleUtilities/Environment (~> 7.4)
    - GoogleUtilities/Logger (~> 7.4)
    - nanopb (~> 2.30908.0)
  - FirebaseCrashlytics (8.6.0):
    - FirebaseCore (~> 8.0)
    - FirebaseInstallations (~> 8.0)
    - GoogleDataTransport (~> 9.0)
    - GoogleUtilities/Environment (~> 7.4)
    - nanopb (~> 2.30908.0)
    - PromisesObjC (< 3.0, >= 1.2)
  - FirebaseInstallations (8.7.0):
    - FirebaseCore (~> 8.0)
    - GoogleUtilities/Environment (~> 7.4)
    - GoogleUtilities/UserDefaults (~> 7.4)
    - PromisesObjC (< 3.0, >= 1.2)
  - FirebaseMessaging (8.6.0):
    - FirebaseCore (~> 8.0)
    - FirebaseInstallations (~> 8.0)
    - GoogleDataTransport (~> 9.0)
    - GoogleUtilities/AppDelegateSwizzler (~> 7.4)
    - GoogleUtilities/Environment (~> 7.4)
    - GoogleUtilities/Reachability (~> 7.4)
    - GoogleUtilities/UserDefaults (~> 7.4)
    - nanopb (~> 2.30908.0)
  - FirebaseRemoteConfig (8.6.0):
    - FirebaseABTesting (~> 8.0)
    - FirebaseCore (~> 8.0)
    - FirebaseInstallations (~> 8.0)
    - GoogleUtilities/Environment (~> 7.4)
    - "GoogleUtilities/NSData+zlib (~> 7.4)"
  - Flutter (1.0.0)
  - flutter_acpanalytics (0.0.1):
    - ACPAnalytics (~> 2.2)
    - Flutter
  - flutter_acpcore (0.0.1):
    - ACPCore (~> 2.5)
    - Flutter
  - flutter_acpplaces (1.0.0):
    - ACPPlaces (~> 1.3)
    - Flutter
  - flutter_acpplaces_monitor (1.0.1):
    - ACPPlacesMonitor (~> 2.1.3)
    - Flutter
  - flutter_acpuserprofile (1.0.1):
    - ACPUserProfile
    - Flutter
  - flutter_facebook_auth (3.5.1):
    - FBSDKCoreKit (~> 11.2.0)
    - FBSDKLoginKit (~> 11.2.0)
    - Flutter
  - flutter_inappwebview (0.0.1):
    - Flutter
    - flutter_inappwebview/Core (= 0.0.1)
    - OrderedSet (~> 5.0)
  - flutter_inappwebview/Core (0.0.1):
    - Flutter
    - OrderedSet (~> 5.0)
  - flutter_secure_storage (3.3.1):
    - Flutter
  - FMDB (2.7.5):
    - FMDB/standard (= 2.7.5)
  - FMDB/standard (2.7.5)
  - geocoding (1.0.5):
    - Flutter
  - geolocator_apple (1.2.0):
    - Flutter
  - Gigya (1.2.3)
  - gigya_flutter_plugin (0.1.0):
    - Flutter
    - Gigya (>= 1.2.0)
  - google_maps_flutter (0.0.1):
    - Flutter
    - GoogleMaps
  - google_sign_in (0.0.1):
    - Flutter
    - GoogleSignIn (~> 5.0)
  - GoogleDataTransport (9.1.0):
    - GoogleUtilities/Environment (~> 7.2)
    - nanopb (~> 2.30908.0)
    - PromisesObjC (< 3.0, >= 1.2)
  - GoogleMaps (5.1.0):
    - GoogleMaps/Maps (= 5.1.0)
  - GoogleMaps/Base (5.1.0)
  - GoogleMaps/Maps (5.1.0):
    - GoogleMaps/Base
  - GoogleSignIn (5.0.2):
    - AppAuth (~> 1.2)
    - GTMAppAuth (~> 1.0)
    - GTMSessionFetcher/Core (~> 1.1)
  - GoogleUtilities/AppDelegateSwizzler (7.5.2):
    - GoogleUtilities/Environment
    - GoogleUtilities/Logger
    - GoogleUtilities/Network
  - GoogleUtilities/Environment (7.5.2):
    - PromisesObjC (< 3.0, >= 1.2)
  - GoogleUtilities/Logger (7.5.2):
    - GoogleUtilities/Environment
  - GoogleUtilities/Network (7.5.2):
    - GoogleUtilities/Logger
    - "GoogleUtilities/NSData+zlib"
    - GoogleUtilities/Reachability
  - "GoogleUtilities/NSData+zlib (7.5.2)"
  - GoogleUtilities/Reachability (7.5.2):
    - GoogleUtilities/Logger
  - GoogleUtilities/UserDefaults (7.5.2):
    - GoogleUtilities/Logger
  - GTMAppAuth (1.2.2):
    - AppAuth/Core (~> 1.4)
    - GTMSessionFetcher/Core (~> 1.5)
  - GTMSessionFetcher/Core (1.7.0)
  - image_picker (0.0.1):
    - Flutter
  - integration_test (0.0.1):
    - Flutter
  - Localytics (6.2.1.17)
  - localytics_plugin (0.0.1):
    - Flutter
    - Localytics (~> 6.2.1)
  - nanopb (2.30908.0):
    - nanopb/decode (= 2.30908.0)
    - nanopb/encode (= 2.30908.0)
  - nanopb/decode (2.30908.0)
  - nanopb/encode (2.30908.0)
  - OrderedSet (5.0.0)
  - package_info (0.0.1):
    - Flutter
  - path_provider (0.0.1):
    - Flutter
  - "permission_handler (5.1.0+2)":
    - Flutter
  - PromisesObjC (2.0.0)
  - sign_in_with_apple (0.0.1):
    - Flutter
  - sqflite (0.0.2):
    - Flutter
    - FMDB (>= 2.7.5)
  - uni_links (0.0.1):
    - Flutter
  - url_launcher (0.0.1):
    - Flutter
  - video_player (0.0.1):
    - Flutter
  - wakelock (0.0.1):
    - Flutter
  - webview_flutter (0.0.1):
    - Flutter

DEPENDENCIES:
  - app_settings (from `.symlinks/plugins/app_settings/ios`)
  - device_info (from `.symlinks/plugins/device_info/ios`)
  - firebase_core (from `.symlinks/plugins/firebase_core/ios`)
  - firebase_crashlytics (from `.symlinks/plugins/firebase_crashlytics/ios`)
  - firebase_messaging (from `.symlinks/plugins/firebase_messaging/ios`)
  - firebase_remote_config (from `.symlinks/plugins/firebase_remote_config/ios`)
  - Flutter (from `Flutter`)
  - flutter_acpanalytics (from `.symlinks/plugins/flutter_acpanalytics/ios`)
  - flutter_acpcore (from `.symlinks/plugins/flutter_acpcore/ios`)
  - flutter_acpplaces (from `.symlinks/plugins/flutter_acpplaces/ios`)
  - flutter_acpplaces_monitor (from `.symlinks/plugins/flutter_acpplaces_monitor/ios`)
  - flutter_acpuserprofile (from `.symlinks/plugins/flutter_acpuserprofile/ios`)
  - flutter_facebook_auth (from `.symlinks/plugins/flutter_facebook_auth/ios`)
  - flutter_inappwebview (from `.symlinks/plugins/flutter_inappwebview/ios`)
  - flutter_secure_storage (from `.symlinks/plugins/flutter_secure_storage/ios`)
  - geocoding (from `.symlinks/plugins/geocoding/ios`)
  - geolocator_apple (from `.symlinks/plugins/geolocator_apple/ios`)
  - gigya_flutter_plugin (from `.symlinks/plugins/gigya_flutter_plugin/ios`)
  - google_maps_flutter (from `.symlinks/plugins/google_maps_flutter/ios`)
  - google_sign_in (from `.symlinks/plugins/google_sign_in/ios`)
  - image_picker (from `.symlinks/plugins/image_picker/ios`)
  - integration_test (from `.symlinks/plugins/integration_test/ios`)
  - localytics_plugin (from `.symlinks/plugins/localytics_plugin/ios`)
  - package_info (from `.symlinks/plugins/package_info/ios`)
  - path_provider (from `.symlinks/plugins/path_provider/ios`)
  - permission_handler (from `.symlinks/plugins/permission_handler/ios`)
  - sign_in_with_apple (from `.symlinks/plugins/sign_in_with_apple/ios`)
  - sqflite (from `.symlinks/plugins/sqflite/ios`)
  - uni_links (from `.symlinks/plugins/uni_links/ios`)
  - url_launcher (from `.symlinks/plugins/url_launcher/ios`)
  - video_player (from `.symlinks/plugins/video_player/ios`)
  - wakelock (from `.symlinks/plugins/wakelock/ios`)
  - webview_flutter (from `.symlinks/plugins/webview_flutter/ios`)

SPEC REPOS:
  trunk:
    - ACPAnalytics
    - ACPCore
    - ACPPlaces
    - ACPPlacesMonitor
    - ACPUserProfile
    - AppAuth
    - FBAEMKit
    - FBSDKCoreKit
    - FBSDKCoreKit_Basics
    - FBSDKLoginKit
    - Firebase
    - FirebaseABTesting
    - FirebaseCore
    - FirebaseCoreDiagnostics
    - FirebaseCrashlytics
    - FirebaseInstallations
    - FirebaseMessaging
    - FirebaseRemoteConfig
    - FMDB
    - Gigya
    - GoogleDataTransport
    - GoogleMaps
    - GoogleSignIn
    - GoogleUtilities
    - GTMAppAuth
    - GTMSessionFetcher
    - Localytics
    - nanopb
    - OrderedSet
    - PromisesObjC

EXTERNAL SOURCES:
  app_settings:
    :path: ".symlinks/plugins/app_settings/ios"
  device_info:
    :path: ".symlinks/plugins/device_info/ios"
  firebase_core:
    :path: ".symlinks/plugins/firebase_core/ios"
  firebase_crashlytics:
    :path: ".symlinks/plugins/firebase_crashlytics/ios"
  firebase_messaging:
    :path: ".symlinks/plugins/firebase_messaging/ios"
  firebase_remote_config:
    :path: ".symlinks/plugins/firebase_remote_config/ios"
  Flutter:
    :path: Flutter
  flutter_acpanalytics:
    :path: ".symlinks/plugins/flutter_acpanalytics/ios"
  flutter_acpcore:
    :path: ".symlinks/plugins/flutter_acpcore/ios"
  flutter_acpplaces:
    :path: ".symlinks/plugins/flutter_acpplaces/ios"
  flutter_acpplaces_monitor:
    :path: ".symlinks/plugins/flutter_acpplaces_monitor/ios"
  flutter_acpuserprofile:
    :path: ".symlinks/plugins/flutter_acpuserprofile/ios"
  flutter_facebook_auth:
    :path: ".symlinks/plugins/flutter_facebook_auth/ios"
  flutter_inappwebview:
    :path: ".symlinks/plugins/flutter_inappwebview/ios"
  flutter_secure_storage:
    :path: ".symlinks/plugins/flutter_secure_storage/ios"
  geocoding:
    :path: ".symlinks/plugins/geocoding/ios"
  geolocator_apple:
    :path: ".symlinks/plugins/geolocator_apple/ios"
  gigya_flutter_plugin:
    :path: ".symlinks/plugins/gigya_flutter_plugin/ios"
  google_maps_flutter:
    :path: ".symlinks/plugins/google_maps_flutter/ios"
  google_sign_in:
    :path: ".symlinks/plugins/google_sign_in/ios"
  image_picker:
    :path: ".symlinks/plugins/image_picker/ios"
  integration_test:
    :path: ".symlinks/plugins/integration_test/ios"
  localytics_plugin:
    :path: ".symlinks/plugins/localytics_plugin/ios"
  package_info:
    :path: ".symlinks/plugins/package_info/ios"
  path_provider:
    :path: ".symlinks/plugins/path_provider/ios"
  permission_handler:
    :path: ".symlinks/plugins/permission_handler/ios"
  sign_in_with_apple:
    :path: ".symlinks/plugins/sign_in_with_apple/ios"
  sqflite:
    :path: ".symlinks/plugins/sqflite/ios"
  uni_links:
    :path: ".symlinks/plugins/uni_links/ios"
  url_launcher:
    :path: ".symlinks/plugins/url_launcher/ios"
  video_player:
    :path: ".symlinks/plugins/video_player/ios"
  wakelock:
    :path: ".symlinks/plugins/wakelock/ios"
  webview_flutter:
    :path: ".symlinks/plugins/webview_flutter/ios"

SPEC CHECKSUMS:
  ACPAnalytics: 65bc33a03d31dc3e60f061766b629aac988d1e29
  ACPCore: 7d09a5b7233d72fa7cb4369c99a8250fd7240305
  ACPPlaces: 6d2f2f4a5d0eee5fd021c11219a7d6775e243ab8
  ACPPlacesMonitor: 41bc81cef3dbc7857d9324fc92ed4a627df9a10f
  ACPUserProfile: 34bd51d00a2ae1add3d04eab0a313b73cb01b904
  app_settings: d103828c9f5d515c4df9ee754dabd443f7cedcf3
  AppAuth: 31bcec809a638d7bd2f86ea8a52bd45f6e81e7c7
  device_info: d7d233b645a32c40dfdc212de5cf646ca482f175
  FBAEMKit: 5de0a7aaa854eec69bb5be20795952a63d38a5f6
  FBSDKCoreKit: bf655f808b040ed66a72b9922911b39d703e64f4
  FBSDKCoreKit_Basics: 73ebe3a27eb688ac5b5aa7e99f68992993042115
  FBSDKLoginKit: 2e76831ef08d356b8f9150ea51cce865074ea304
  Firebase: 21ac9f28b09a8bdfc005f34c984fca84e7e8786d
  firebase_core: c21ac09a8d23afd3594b56ed786bad12e5266bba
  firebase_crashlytics: b0581024be6112af8821de61e5a37fdb292373f0
  firebase_messaging: 0fddeca6fcfee0bed23c66210391d782af8f8d0e
  firebase_remote_config: 4defdf4a3bc8e9749abf68084b3103f3075721fb
  FirebaseABTesting: 5a72ea0e88422f9e223614cb4016cafffb2af8d1
  FirebaseCore: 620b677f70f5470a8e59cb77f3ddc666f6f09785
  FirebaseCoreDiagnostics: b63732f581a1c6a453ec7241f9ab60b3a5bd3450
  FirebaseCrashlytics: 58f8ecea7c799c61c50e8111d2e438424a8a1d2e
  FirebaseInstallations: ede6fb72bb6337914e5888b399271259d0c4910c
  FirebaseMessaging: ce0a5ee974f7bfe83b6cc5acce88c2d969e37c41
  FirebaseRemoteConfig: 9ee4672d4eacf646256e26cfac61021b3a390ea4
  Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a
  flutter_acpanalytics: 91411eff9228cd3f25b721e71f9f1052e4eee5ec
  flutter_acpcore: 781971fcbde815f237f85a4fb33539ffee53ab5d
  flutter_acpplaces: d277aabf1758187f8fdd5798a9db4a0e6583c513
  flutter_acpplaces_monitor: dc7077286dd12b7a440868661961aa5dd95921d3
  flutter_acpuserprofile: a6d25197f25f252ccf9eec2426e48ccb90e2bcc3
  flutter_facebook_auth: 870a465b1afff3ace7a592bd44665d921991726c
  flutter_inappwebview: bfd58618f49dc62f2676de690fc6dcda1d6c3721
  flutter_secure_storage: 7953c38a04c3fdbb00571bcd87d8e3b5ceb9daec
  FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a
  geocoding: 32cfcdb16d38d907caaba65e2e42ad10d38bee58
  geolocator_apple: b741765c55dc21950e3e106e8b3584e55cf81ce5
  Gigya: 79cb9e8fd61e1aed1eba2d20bb7bca467bac32e7
  gigya_flutter_plugin: e71ab0f684717fd6a06c7e606d938b431478ea8b
  google_maps_flutter: abdb8dee6c52d4be36ad131ee6ebfacd14417c5a
  google_sign_in: c5cecea71f3be43282263550556e311c4cc03582
  GoogleDataTransport: 85fd18ff3019bb85d3f2c551d04c481dedf71fc9
  GoogleMaps: 086ae1dab659eaa7339bdb30fc88e2f44e7c597c
  GoogleSignIn: 7137d297ddc022a7e0aa4619c86d72c909fa7213
  GoogleUtilities: 8de2a97a17e15b6b98e38e8770e2d129a57c0040
  GTMAppAuth: ad5c2b70b9a8689e1a04033c9369c4915bfcbe89
  GTMSessionFetcher: 43748f93435c2aa068b1cbe39655aaf600652e91
  image_picker: 9aa50e1d8cdacdbed739e925b7eea16d014367e6
  integration_test: 7db6d89f336f671dcbc7563ee27a5b08f6f8aee1
  Localytics: e16702979bb9c98dfd38a6a2cea74fc6721ded82
  localytics_plugin: 95087ee1ccebc4eb740c770b69b8ed578925e9b2
  nanopb: a0ba3315591a9ae0a16a309ee504766e90db0c96
  OrderedSet: aaeb196f7fef5a9edf55d89760da9176ad40b93c
  package_info: 873975fc26034f0b863a300ad47e7f1ac6c7ec62
  path_provider: d1e9807085df1f9cc9318206cd649dc0b76be3de
  permission_handler: ccb20a9fad0ee9b1314a52b70b76b473c5f8dab0
  PromisesObjC: 68159ce6952d93e17b2dfe273b8c40907db5ba58
  sign_in_with_apple: f3bf75217ea4c2c8b91823f225d70230119b8440
  sqflite: 6d358c025f5b867b29ed92fc697fd34924e11904
  uni_links: d97da20c7701486ba192624d99bffaaffcfc298a
  url_launcher: b6e016d912f04be9f5bf6e8e82dc599b7ba59649
  video_player: ecd305f42e9044793efd34846e1ce64c31ea6fcb
  wakelock: d0fc7c864128eac40eba1617cb5264d9c940b46f
  webview_flutter: 5fb4def2bbd4339889ee14d045b605cefc5bc232

PODFILE CHECKSUM: 2b2313bc3205d26572309059f4942ec48bdbb83c

COCOAPODS: 1.11.2


@galunecandrey
Copy link
Author

galunecandrey commented Sep 24, 2021

@darshankawar

pubspec.lock
# Generated by pub
# See https://dart.dev/tools/pub/glossary#lockfile
packages:
  _fe_analyzer_shared:
    dependency: transitive
    description:
      name: _fe_analyzer_shared
      url: "https://pub.dartlang.org"
    source: hosted
    version: "26.0.0"
  about_app:
    dependency: "direct main"
    description:
      path: "../package/about_app"
      relative: true
    source: path
    version: "0.0.1+1"
  account:
    dependency: "direct main"
    description:
      path: "../package/account"
      relative: true
    source: path
    version: "1.0.0+1"
  add_note:
    dependency: "direct main"
    description:
      path: "../package/add_note"
      relative: true
    source: path
    version: "1.0.0+1"
  add_task:
    dependency: "direct main"
    description:
      path: "../package/add_task"
      relative: true
    source: path
    version: "1.0.0+1"
  analyzer:
    dependency: transitive
    description:
      name: analyzer
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.3.0"
  app_settings:
    dependency: transitive
    description:
      name: app_settings
      url: "https://pub.dartlang.org"
    source: hosted
    version: "4.1.1"
  archive:
    dependency: transitive
    description:
      name: archive
      url: "https://pub.dartlang.org"
    source: hosted
    version: "3.1.2"
  args:
    dependency: transitive
    description:
      name: args
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.3.0"
  article:
    dependency: "direct main"
    description:
      path: "../package/article"
      relative: true
    source: path
    version: "1.0.0+1"
  async:
    dependency: transitive
    description:
      name: async
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.8.1"
  auth_core:
    dependency: "direct main"
    description:
      path: "../package/auth_core"
      relative: true
    source: path
    version: "1.0.0+1"
  auto_route:
    dependency: "direct main"
    description:
      name: auto_route
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.4.0"
  auto_route_generator:
    dependency: "direct dev"
    description:
      name: auto_route_generator
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.4.0"
  bdd_widget_test:
    dependency: "direct dev"
    description:
      name: bdd_widget_test
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.0.3+1"
  bloc:
    dependency: transitive
    description:
      name: bloc
      url: "https://pub.dartlang.org"
    source: hosted
    version: "7.1.0"
  boolean_selector:
    dependency: transitive
    description:
      name: boolean_selector
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.1.0"
  build:
    dependency: transitive
    description:
      name: build
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.1.0"
  build_config:
    dependency: transitive
    description:
      name: build_config
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.0.0"
  build_daemon:
    dependency: transitive
    description:
      name: build_daemon
      url: "https://pub.dartlang.org"
    source: hosted
    version: "3.0.0"
  build_resolvers:
    dependency: transitive
    description:
      name: build_resolvers
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.4"
  build_runner:
    dependency: "direct dev"
    description:
      name: build_runner
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.1.2"
  build_runner_core:
    dependency: transitive
    description:
      name: build_runner_core
      url: "https://pub.dartlang.org"
    source: hosted
    version: "7.1.0"
  built_collection:
    dependency: transitive
    description:
      name: built_collection
      url: "https://pub.dartlang.org"
    source: hosted
    version: "5.1.1"
  built_value:
    dependency: transitive
    description:
      name: built_value
      url: "https://pub.dartlang.org"
    source: hosted
    version: "8.1.2"
  buy_online:
    dependency: "direct main"
    description:
      path: "../package/buy_online"
      relative: true
    source: path
    version: "1.0.0+1"
  cached_network_image:
    dependency: "direct main"
    description:
      name: cached_network_image
      url: "https://pub.dartlang.org"
    source: hosted
    version: "3.1.0"
  cached_network_image_platform_interface:
    dependency: transitive
    description:
      name: cached_network_image_platform_interface
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.0.0"
  cached_network_image_web:
    dependency: transitive
    description:
      name: cached_network_image_web
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.0.1"
  calendar:
    dependency: "direct main"
    description:
      path: "../package/calendar"
      relative: true
    source: path
    version: "1.0.0+1"
  calendar_core:
    dependency: "direct main"
    description:
      path: "../package/calendar_core"
      relative: true
    source: path
    version: "1.0.0+1"
  calendar_slide_up:
    dependency: "direct main"
    description:
      path: "../package/calendar_slide_up"
      relative: true
    source: path
    version: "1.0.0+1"
  characters:
    dependency: transitive
    description:
      name: characters
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.1.0"
  charcode:
    dependency: transitive
    description:
      name: charcode
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.3.1"
  checked_yaml:
    dependency: transitive
    description:
      name: checked_yaml
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.1"
  chewie:
    dependency: transitive
    description:
      name: chewie
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.1.0"
  chewie_audio:
    dependency: transitive
    description:
      name: chewie_audio
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.2.0"
  cli_util:
    dependency: transitive
    description:
      name: cli_util
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.3.3"
  clock:
    dependency: transitive
    description:
      name: clock
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.1.0"
  code_builder:
    dependency: transitive
    description:
      name: code_builder
      url: "https://pub.dartlang.org"
    source: hosted
    version: "4.1.0"
  collection:
    dependency: transitive
    description:
      name: collection
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.15.0"
  content_core:
    dependency: "direct main"
    description:
      path: "../package/content_core"
      relative: true
    source: path
    version: "1.0.0+1"
  convert:
    dependency: transitive
    description:
      name: convert
      url: "https://pub.dartlang.org"
    source: hosted
    version: "3.0.1"
  coverage:
    dependency: transitive
    description:
      name: coverage
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.0.3"
  cross_file:
    dependency: transitive
    description:
      name: cross_file
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.3.1+5"
  crypto:
    dependency: transitive
    description:
      name: crypto
      url: "https://pub.dartlang.org"
    source: hosted
    version: "3.0.1"
  csslib:
    dependency: transitive
    description:
      name: csslib
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.17.0"
  cupertino_icons:
    dependency: transitive
    description:
      name: cupertino_icons
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.0.3"
  customize_plan_fab:
    dependency: "direct main"
    description:
      path: "../package/customize_plan_fab"
      relative: true
    source: path
    version: "1.0.0+1"
  dart_style:
    dependency: transitive
    description:
      name: dart_style
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.2.0"
  dartz:
    dependency: "direct main"
    description:
      name: dartz
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.10.0"
  developer:
    dependency: "direct main"
    description:
      path: "../package/developer"
      relative: true
    source: path
    version: "1.0.0+1"
  device_info:
    dependency: transitive
    description:
      name: device_info
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.2"
  device_info_platform_interface:
    dependency: transitive
    description:
      name: device_info_platform_interface
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.1"
  dio:
    dependency: "direct main"
    description:
      name: dio
      url: "https://pub.dartlang.org"
    source: hosted
    version: "4.0.0"
  easy_debounce:
    dependency: transitive
    description:
      name: easy_debounce
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.1"
  email_validator:
    dependency: transitive
    description:
      name: email_validator
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.1"
  equatable:
    dependency: transitive
    description:
      name: equatable
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.3"
  expandable:
    dependency: transitive
    description:
      name: expandable
      url: "https://pub.dartlang.org"
    source: hosted
    version: "5.0.1"
  extra_pedantic:
    dependency: transitive
    description:
      name: extra_pedantic
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.5.0"
  fake_async:
    dependency: transitive
    description:
      name: fake_async
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.2.0"
  faq:
    dependency: "direct main"
    description:
      path: "../package/faq"
      relative: true
    source: path
    version: "1.0.0+1"
  feedback:
    dependency: "direct main"
    description:
      path: "../package/feedback"
      relative: true
    source: path
    version: "0.0.1+1"
  ffi:
    dependency: transitive
    description:
      name: ffi
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.1.2"
  file:
    dependency: transitive
    description:
      name: file
      url: "https://pub.dartlang.org"
    source: hosted
    version: "6.1.2"
  filter:
    dependency: "direct main"
    description:
      path: "../package/filter"
      relative: true
    source: path
    version: "0.0.1+1"
  filter_core:
    dependency: transitive
    description:
      path: "../package/filter_core"
      relative: true
    source: path
    version: "1.0.0+1"
  firebase_core:
    dependency: "direct main"
    description:
      name: firebase_core
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.6.0"
  firebase_core_platform_interface:
    dependency: transitive
    description:
      name: firebase_core_platform_interface
      url: "https://pub.dartlang.org"
    source: hosted
    version: "4.0.1"
  firebase_core_web:
    dependency: transitive
    description:
      name: firebase_core_web
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.1.0"
  firebase_crashlytics:
    dependency: "direct main"
    description:
      name: firebase_crashlytics
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.2.1"
  firebase_crashlytics_platform_interface:
    dependency: transitive
    description:
      name: firebase_crashlytics_platform_interface
      url: "https://pub.dartlang.org"
    source: hosted
    version: "3.1.2"
  firebase_messaging:
    dependency: "direct main"
    description:
      name: firebase_messaging
      url: "https://pub.dartlang.org"
    source: hosted
    version: "10.0.7"
  firebase_messaging_platform_interface:
    dependency: transitive
    description:
      name: firebase_messaging_platform_interface
      url: "https://pub.dartlang.org"
    source: hosted
    version: "3.0.5"
  firebase_messaging_web:
    dependency: transitive
    description:
      name: firebase_messaging_web
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.5"
  firebase_remote_config:
    dependency: "direct main"
    description:
      name: firebase_remote_config
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.11.0"
  firebase_remote_config_platform_interface:
    dependency: transitive
    description:
      name: firebase_remote_config_platform_interface
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.3.0+5"
  fixnum:
    dependency: transitive
    description:
      name: fixnum
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.0.0"
  fl_chart:
    dependency: transitive
    description:
      name: fl_chart
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.40.0"
  flutter:
    dependency: "direct main"
    description: flutter
    source: sdk
    version: "0.0.0"
  flutter_acpanalytics:
    dependency: transitive
    description:
      name: flutter_acpanalytics
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.1"
  flutter_acpcore:
    dependency: transitive
    description:
      name: flutter_acpcore
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.0"
  flutter_acpplaces:
    dependency: transitive
    description:
      name: flutter_acpplaces
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.0"
  flutter_acpplaces_monitor:
    dependency: transitive
    description:
      name: flutter_acpplaces_monitor
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.0"
  flutter_acpuserprofile:
    dependency: transitive
    description:
      name: flutter_acpuserprofile
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.0"
  flutter_bloc:
    dependency: transitive
    description:
      name: flutter_bloc
      url: "https://pub.dartlang.org"
    source: hosted
    version: "7.2.0"
  flutter_blurhash:
    dependency: transitive
    description:
      name: flutter_blurhash
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.6.0"
  flutter_cache_manager:
    dependency: transitive
    description:
      name: flutter_cache_manager
      url: "https://pub.dartlang.org"
    source: hosted
    version: "3.1.2"
  flutter_driver:
    dependency: transitive
    description: flutter
    source: sdk
    version: "0.0.0"
  flutter_facebook_auth:
    dependency: transitive
    description:
      name: flutter_facebook_auth
      url: "https://pub.dartlang.org"
    source: hosted
    version: "3.5.2"
  flutter_facebook_auth_platform_interface:
    dependency: transitive
    description:
      name: flutter_facebook_auth_platform_interface
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.7.0"
  flutter_facebook_auth_web:
    dependency: transitive
    description:
      name: flutter_facebook_auth_web
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.6.0+2"
  flutter_html:
    dependency: transitive
    description:
      name: flutter_html
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.1.2"
  flutter_inappwebview:
    dependency: transitive
    description:
      name: flutter_inappwebview
      url: "https://pub.dartlang.org"
    source: hosted
    version: "5.3.2"
  flutter_layout_grid:
    dependency: transitive
    description:
      name: flutter_layout_grid
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.0.3"
  flutter_localizations:
    dependency: "direct main"
    description: flutter
    source: sdk
    version: "0.0.0"
  flutter_markdown:
    dependency: transitive
    description:
      name: flutter_markdown
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.6.6"
  flutter_math_fork:
    dependency: transitive
    description:
      name: flutter_math_fork
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.4.1"
  flutter_plugin_android_lifecycle:
    dependency: transitive
    description:
      name: flutter_plugin_android_lifecycle
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.3"
  flutter_rating_bar:
    dependency: transitive
    description:
      name: flutter_rating_bar
      url: "https://pub.dartlang.org"
    source: hosted
    version: "4.0.0"
  flutter_secure_storage:
    dependency: transitive
    description:
      name: flutter_secure_storage
      url: "https://pub.dartlang.org"
    source: hosted
    version: "4.2.1"
  flutter_svg:
    dependency: "direct main"
    description:
      name: flutter_svg
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.22.0"
  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"
  fraction:
    dependency: transitive
    description:
      name: fraction
      url: "https://pub.dartlang.org"
    source: hosted
    version: "3.1.0"
  freezed:
    dependency: "direct dev"
    description:
      name: freezed
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.14.5"
  freezed_annotation:
    dependency: "direct main"
    description:
      name: freezed_annotation
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.14.3"
  frontend_server_client:
    dependency: transitive
    description:
      name: frontend_server_client
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.1.2"
  fuchsia_remote_debug_protocol:
    dependency: transitive
    description: flutter
    source: sdk
    version: "0.0.0"
  geocoding:
    dependency: transitive
    description:
      name: geocoding
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.1"
  geocoding_platform_interface:
    dependency: transitive
    description:
      name: geocoding_platform_interface
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.1"
  geolocator:
    dependency: transitive
    description:
      name: geolocator
      url: "https://pub.dartlang.org"
    source: hosted
    version: "7.6.2"
  geolocator_android:
    dependency: transitive
    description:
      name: geolocator_android
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.0.2"
  geolocator_apple:
    dependency: transitive
    description:
      name: geolocator_apple
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.2.0"
  geolocator_platform_interface:
    dependency: transitive
    description:
      name: geolocator_platform_interface
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.3.5"
  geolocator_web:
    dependency: transitive
    description:
      name: geolocator_web
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.6"
  get_it:
    dependency: "direct main"
    description:
      name: get_it
      url: "https://pub.dartlang.org"
    source: hosted
    version: "7.2.0"
  gigya_flutter_plugin:
    dependency: transitive
    description:
      name: gigya_flutter_plugin
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.1.1"
  glob:
    dependency: transitive
    description:
      name: glob
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.1"
  google_maps_flutter:
    dependency: "direct main"
    description:
      name: google_maps_flutter
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.10"
  google_maps_flutter_platform_interface:
    dependency: transitive
    description:
      name: google_maps_flutter_platform_interface
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.1.1"
  google_place:
    dependency: transitive
    description:
      name: google_place
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.4.3"
  google_sign_in:
    dependency: transitive
    description:
      name: google_sign_in
      url: "https://pub.dartlang.org"
    source: hosted
    version: "5.1.1"
  google_sign_in_platform_interface:
    dependency: transitive
    description:
      name: google_sign_in_platform_interface
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.1"
  google_sign_in_web:
    dependency: transitive
    description:
      name: google_sign_in_web
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.10.0+3"
  graphs:
    dependency: transitive
    description:
      name: graphs
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.1.0"
  help_center:
    dependency: "direct main"
    description:
      path: "../package/help_center"
      relative: true
    source: path
    version: "1.0.0+1"
  help_center_core:
    dependency: transitive
    description:
      path: "../package/help_center_core"
      relative: true
    source: path
    version: "1.0.0+1"
  hive:
    dependency: transitive
    description:
      name: hive
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.4"
  hive_flutter:
    dependency: "direct main"
    description:
      name: hive_flutter
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.1.0"
  home:
    dependency: "direct main"
    description:
      path: "../package/home"
      relative: true
    source: path
    version: "1.0.0+1"
  html:
    dependency: transitive
    description:
      name: html
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.15.0"
  html_unescape:
    dependency: transitive
    description:
      name: html_unescape
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.0"
  http:
    dependency: transitive
    description:
      name: http
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.13.3"
  http_multi_server:
    dependency: transitive
    description:
      name: http_multi_server
      url: "https://pub.dartlang.org"
    source: hosted
    version: "3.0.1"
  http_parser:
    dependency: transitive
    description:
      name: http_parser
      url: "https://pub.dartlang.org"
    source: hosted
    version: "4.0.0"
  i69n:
    dependency: "direct main"
    description:
      name: i69n
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.1"
  image_core:
    dependency: "direct main"
    description:
      path: "../package/image_core"
      relative: true
    source: path
    version: "1.0.0+1"
  image_picker:
    dependency: "direct main"
    description:
      name: image_picker
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.8.4+2"
  image_picker_for_web:
    dependency: transitive
    description:
      name: image_picker_for_web
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.1.3"
  image_picker_platform_interface:
    dependency: transitive
    description:
      name: image_picker_platform_interface
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.4.1"
  injectable:
    dependency: "direct main"
    description:
      name: injectable
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.5.0"
  injectable_generator:
    dependency: "direct dev"
    description:
      name: injectable_generator
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.5.2"
  integration_test:
    dependency: "direct dev"
    description: flutter
    source: sdk
    version: "0.0.0"
  interest_core:
    dependency: transitive
    description:
      path: "../package/interest_core"
      relative: true
    source: path
    version: "1.0.0+1"
  intl:
    dependency: transitive
    description:
      name: intl
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.17.0"
  io:
    dependency: transitive
    description:
      name: io
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.0.3"
  js:
    dependency: transitive
    description:
      name: js
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.6.3"
  json_annotation:
    dependency: transitive
    description:
      name: json_annotation
      url: "https://pub.dartlang.org"
    source: hosted
    version: "4.1.0"
  lawn_data_core:
    dependency: "direct main"
    description:
      path: "../package/lawn_data_core"
      relative: true
    source: path
    version: "0.0.1+1"
  lawn_profile:
    dependency: "direct main"
    description:
      path: "../package/lawn_profile"
      relative: true
    source: path
    version: "1.0.0+1"
  lawn_quiz:
    dependency: "direct main"
    description:
      path: "../package/lawn_quiz"
      relative: true
    source: path
    version: "0.0.1+1"
  loading:
    dependency: "direct main"
    description:
      path: "../package/loading"
      relative: true
    source: path
    version: "0.0.1+1"
  localytics_plugin:
    dependency: "direct main"
    description:
      path: "."
      ref: null-safe
      resolved-ref: "2dc36caad9111fd30be9c8f65755419c7f01426f"
      url: "git@gitlab.com:{NDA}"
    source: git
    version: "0.0.2"
  logger:
    dependency: transitive
    description:
      name: logger
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.1.0"
  logging:
    dependency: transitive
    description:
      name: logging
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.0.2"
  markdown:
    dependency: transitive
    description:
      name: markdown
      url: "https://pub.dartlang.org"
    source: hosted
    version: "4.0.0"
  matcher:
    dependency: transitive
    description:
      name: matcher
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.12.10"
  meta:
    dependency: transitive
    description:
      name: meta
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.7.0"
  mime:
    dependency: transitive
    description:
      name: mime
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.0.0"
  mocktail:
    dependency: "direct dev"
    description:
      name: mocktail
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.1.4"
  nested:
    dependency: transitive
    description:
      name: nested
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.0.0"
  node_preamble:
    dependency: transitive
    description:
      name: node_preamble
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.1"
  numerus:
    dependency: transitive
    description:
      name: numerus
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.1.1"
  octo_image:
    dependency: transitive
    description:
      name: octo_image
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.0.0+1"
  package_config:
    dependency: transitive
    description:
      name: package_config
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.2"
  package_info:
    dependency: transitive
    description:
      name: package_info
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.2"
  path:
    dependency: transitive
    description:
      name: path
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.8.0"
  path_drawing:
    dependency: transitive
    description:
      name: path_drawing
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.5.1"
  path_parsing:
    dependency: transitive
    description:
      name: path_parsing
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.2.1"
  path_provider:
    dependency: transitive
    description:
      name: path_provider
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.5"
  path_provider_linux:
    dependency: transitive
    description:
      name: path_provider_linux
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.1.0"
  path_provider_macos:
    dependency: transitive
    description:
      name: path_provider_macos
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.2"
  path_provider_platform_interface:
    dependency: transitive
    description:
      name: path_provider_platform_interface
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.1"
  path_provider_windows:
    dependency: transitive
    description:
      name: path_provider_windows
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.3"
  path_to_regexp:
    dependency: transitive
    description:
      name: path_to_regexp
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.4.0"
  pedantic:
    dependency: transitive
    description:
      name: pedantic
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.11.1"
  permission_handler:
    dependency: transitive
    description:
      name: permission_handler
      url: "https://pub.dartlang.org"
    source: hosted
    version: "8.1.6"
  permission_handler_platform_interface:
    dependency: transitive
    description:
      name: permission_handler_platform_interface
      url: "https://pub.dartlang.org"
    source: hosted
    version: "3.6.2"
  petitparser:
    dependency: transitive
    description:
      name: petitparser
      url: "https://pub.dartlang.org"
    source: hosted
    version: "4.3.0"
  plans:
    dependency: "direct main"
    description:
      path: "../package/plans"
      relative: true
    source: path
    version: "1.0.0+1"
  platform:
    dependency: transitive
    description:
      name: platform
      url: "https://pub.dartlang.org"
    source: hosted
    version: "3.0.0"
  plp:
    dependency: "direct main"
    description:
      path: "../package/plp"
      relative: true
    source: path
    version: "1.0.0+1"
  plugin_platform_interface:
    dependency: transitive
    description:
      name: plugin_platform_interface
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.1"
  poly_collisions:
    dependency: transitive
    description:
      name: poly_collisions
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.4.0"
  pool:
    dependency: transitive
    description:
      name: pool
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.5.0"
  process:
    dependency: transitive
    description:
      name: process
      url: "https://pub.dartlang.org"
    source: hosted
    version: "4.2.3"
  product:
    dependency: "direct main"
    description:
      path: "../package/product"
      relative: true
    source: path
    version: "1.0.0+1"
  product_core:
    dependency: "direct main"
    description:
      path: "../package/product_core"
      relative: true
    source: path
    version: "1.0.0+1"
  profile_core:
    dependency: "direct main"
    description:
      path: "../package/profile_core"
      relative: true
    source: path
    version: "1.0.0+1"
  provider:
    dependency: transitive
    description:
      name: provider
      url: "https://pub.dartlang.org"
    source: hosted
    version: "6.0.0"
  pub_semver:
    dependency: transitive
    description:
      name: pub_semver
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.1.0"
  pubspec_parse:
    dependency: transitive
    description:
      name: pubspec_parse
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.1.0"
  quiver:
    dependency: transitive
    description:
      name: quiver
      url: "https://pub.dartlang.org"
    source: hosted
    version: "3.0.1"
  recommendation_core:
    dependency: "direct main"
    description:
      path: "../package/recommendation_core"
      relative: true
    source: path
    version: "0.0.1+1"
  remote_config:
    dependency: "direct main"
    description:
      path: "../package/remote_config"
      relative: true
    source: path
    version: "1.0.0+1"
  remote_notification_core:
    dependency: "direct main"
    description:
      path: "../package/remote_notification_core"
      relative: true
    source: path
    version: "1.0.0+1"
  remove_from_coverage:
    dependency: "direct dev"
    description:
      name: remove_from_coverage
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.0"
  retrofit:
    dependency: transitive
    description:
      name: retrofit
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.1"
  rive:
    dependency: transitive
    description:
      name: rive
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.7.28"
  rxdart:
    dependency: transitive
    description:
      name: rxdart
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.27.2"
  scotts_adobe:
    dependency: "direct main"
    description:
      path: "../package/scotts_adobe"
      relative: true
    source: path
    version: "1.0.0+1"
  scotts_analytics:
    dependency: "direct main"
    description:
      path: "../package/scotts_analytics"
      relative: true
    source: path
    version: "1.0.0+1"
  scotts_article:
    dependency: transitive
    description:
      path: "../package/scotts_article"
      relative: true
    source: path
    version: "0.0.1+1"
  scotts_deeplinks:
    dependency: "direct main"
    description:
      path: "../package/scotts_deeplinks"
      relative: true
    source: path
    version: "1.0.0+1"
  scotts_get_it:
    dependency: "direct main"
    description:
      path: "../package/scotts_get_it"
      relative: true
    source: path
    version: "1.0.0+1"
  scotts_gigya:
    dependency: "direct main"
    description:
      path: "../package/scotts_gigya"
      relative: true
    source: path
    version: "1.0.0+1"
  scotts_location:
    dependency: "direct main"
    description:
      path: "../package/scotts_location"
      relative: true
    source: path
    version: "1.0.0+1"
  scotts_network:
    dependency: "direct main"
    description:
      path: "../package/scotts_network"
      relative: true
    source: path
    version: "1.0.0+1"
  scotts_paging:
    dependency: transitive
    description:
      path: "../package/scotts_paging"
      relative: true
    source: path
    version: "1.0.0+1"
  scotts_password_validator:
    dependency: "direct main"
    description:
      path: "../package/scotts_password_validator"
      relative: true
    source: path
    version: "1.0.0+1"
  scotts_pedantic:
    dependency: "direct dev"
    description:
      path: "../package/scotts_pedantic"
      relative: true
    source: path
    version: "1.0.0+1"
  scotts_permissions:
    dependency: "direct main"
    description:
      path: "../package/scotts_permissions"
      relative: true
    source: path
    version: "1.0.0+1"
  scotts_places:
    dependency: "direct main"
    description:
      path: "../package/scotts_places"
      relative: true
    source: path
    version: "1.0.0+1"
  scotts_service:
    dependency: "direct main"
    description:
      path: "../package/scotts_service"
      relative: true
    source: path
    version: "1.0.0+1"
  scotts_storage:
    dependency: "direct main"
    description:
      path: "../package/scotts_storage"
      relative: true
    source: path
    version: "1.0.0+1"
  scotts_system_settings:
    dependency: transitive
    description:
      path: "../package/scotts_system_settings"
      relative: true
    source: path
    version: "1.0.0+1"
  scotts_utils:
    dependency: "direct main"
    description:
      path: "../package/scotts_utils"
      relative: true
    source: path
    version: "1.0.0+1"
  scotts_widget:
    dependency: "direct main"
    description:
      path: "../package/scotts_widget"
      relative: true
    source: path
    version: "0.0.1+1"
  settings:
    dependency: "direct main"
    description:
      path: "../package/settings"
      relative: true
    source: path
    version: "0.0.1+1"
  shelf:
    dependency: transitive
    description:
      name: shelf
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.2.0"
  shelf_packages_handler:
    dependency: transitive
    description:
      name: shelf_packages_handler
      url: "https://pub.dartlang.org"
    source: hosted
    version: "3.0.0"
  shelf_static:
    dependency: transitive
    description:
      name: shelf_static
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.1.0"
  shelf_web_socket:
    dependency: transitive
    description:
      name: shelf_web_socket
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.0.1"
  sign_in_with_apple:
    dependency: transitive
    description:
      name: sign_in_with_apple
      url: "https://pub.dartlang.org"
    source: hosted
    version: "3.1.0"
  signup:
    dependency: "direct main"
    description:
      path: "../package/signup"
      relative: true
    source: path
    version: "1.0.0+1"
  signup_core:
    dependency: transitive
    description:
      path: "../package/signup_core"
      relative: true
    source: path
    version: "1.0.0+1"
  simple_gesture_detector:
    dependency: transitive
    description:
      name: simple_gesture_detector
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.2.0"
  sky_engine:
    dependency: transitive
    description: flutter
    source: sdk
    version: "0.0.99"
  soft_asks:
    dependency: "direct main"
    description:
      path: "../package/soft_asks"
      relative: true
    source: path
    version: "0.0.1+1"
  source_gen:
    dependency: transitive
    description:
      name: source_gen
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.1.0"
  source_map_stack_trace:
    dependency: transitive
    description:
      name: source_map_stack_trace
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.1.0"
  source_maps:
    dependency: transitive
    description:
      name: source_maps
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.10.10"
  source_span:
    dependency: transitive
    description:
      name: source_span
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.8.1"
  sqflite:
    dependency: transitive
    description:
      name: sqflite
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.0+4"
  sqflite_common:
    dependency: transitive
    description:
      name: sqflite_common
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.1+1"
  stack_trace:
    dependency: transitive
    description:
      name: stack_trace
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.10.0"
  store_core:
    dependency: "direct main"
    description:
      path: "../package/store_core"
      relative: true
    source: path
    version: "1.0.0+1"
  store_locator:
    dependency: "direct main"
    description:
      path: "../package/store_locator"
      relative: true
    source: path
    version: "1.0.0+1"
  stream_channel:
    dependency: transitive
    description:
      name: stream_channel
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.1.0"
  stream_transform:
    dependency: transitive
    description:
      name: stream_transform
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.0"
  string_scanner:
    dependency: transitive
    description:
      name: string_scanner
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.1.0"
  subscription:
    dependency: "direct main"
    description:
      path: "../package/subscription"
      relative: true
    source: path
    version: "1.0.0+1"
  subscriptions_core:
    dependency: "direct main"
    description:
      path: "../package/subscriptions_core"
      relative: true
    source: path
    version: "1.0.0+1"
  swipe_back_detector:
    dependency: transitive
    description:
      name: swipe_back_detector
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.0"
  sync_http:
    dependency: transitive
    description:
      name: sync_http
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.3.0"
  synchronized:
    dependency: transitive
    description:
      name: synchronized
      url: "https://pub.dartlang.org"
    source: hosted
    version: "3.0.0"
  table_calendar:
    dependency: transitive
    description:
      name: table_calendar
      url: "https://pub.dartlang.org"
    source: hosted
    version: "3.0.2"
  term_glyph:
    dependency: transitive
    description:
      name: term_glyph
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.2.0"
  test:
    dependency: transitive
    description:
      name: test
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.17.10"
  test_api:
    dependency: transitive
    description:
      name: test_api
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.4.2"
  test_core:
    dependency: transitive
    description:
      name: test_core
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.4.0"
  timing:
    dependency: transitive
    description:
      name: timing
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.0.0"
  tips:
    dependency: "direct main"
    description:
      path: "../package/tips"
      relative: true
    source: path
    version: "1.0.0+1"
  transparent_image:
    dependency: transitive
    description:
      name: transparent_image
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.0"
  tuple:
    dependency: transitive
    description:
      name: tuple
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.0"
  typed_data:
    dependency: transitive
    description:
      name: typed_data
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.3.0"
  uni_links:
    dependency: "direct main"
    description:
      name: uni_links
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.5.1"
  uni_links_platform_interface:
    dependency: transitive
    description:
      name: uni_links_platform_interface
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.0.0"
  uni_links_web:
    dependency: transitive
    description:
      name: uni_links_web
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.1.0"
  url_launcher:
    dependency: transitive
    description:
      name: url_launcher
      url: "https://pub.dartlang.org"
    source: hosted
    version: "6.0.11"
  url_launcher_linux:
    dependency: transitive
    description:
      name: url_launcher_linux
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.2"
  url_launcher_macos:
    dependency: transitive
    description:
      name: url_launcher_macos
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.2"
  url_launcher_platform_interface:
    dependency: transitive
    description:
      name: url_launcher_platform_interface
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.4"
  url_launcher_web:
    dependency: transitive
    description:
      name: url_launcher_web
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.4"
  url_launcher_windows:
    dependency: transitive
    description:
      name: url_launcher_windows
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.2"
  uuid:
    dependency: transitive
    description:
      name: uuid
      url: "https://pub.dartlang.org"
    source: hosted
    version: "3.0.4"
  vector_math:
    dependency: transitive
    description:
      name: vector_math
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.1.0"
  video_player:
    dependency: transitive
    description:
      name: video_player
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.2.5"
  video_player_platform_interface:
    dependency: transitive
    description:
      name: video_player_platform_interface
      url: "https://pub.dartlang.org"
    source: hosted
    version: "4.2.0"
  video_player_web:
    dependency: transitive
    description:
      name: video_player_web
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.4"
  vm_service:
    dependency: transitive
    description:
      name: vm_service
      url: "https://pub.dartlang.org"
    source: hosted
    version: "7.1.1"
  wakelock:
    dependency: transitive
    description:
      name: wakelock
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.5.6"
  wakelock_macos:
    dependency: transitive
    description:
      name: wakelock_macos
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.4.0"
  wakelock_platform_interface:
    dependency: transitive
    description:
      name: wakelock_platform_interface
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.3.0"
  wakelock_web:
    dependency: transitive
    description:
      name: wakelock_web
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.4.0"
  wakelock_windows:
    dependency: transitive
    description:
      name: wakelock_windows
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.2.0"
  watcher:
    dependency: transitive
    description:
      name: watcher
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.0.0"
  water:
    dependency: "direct main"
    description:
      path: "../package/water"
      relative: true
    source: path
    version: "1.0.0+1"
  web_socket_channel:
    dependency: transitive
    description:
      name: web_socket_channel
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.1.0"
  webdriver:
    dependency: transitive
    description:
      name: webdriver
      url: "https://pub.dartlang.org"
    source: hosted
    version: "3.0.0"
  webkit_inspection_protocol:
    dependency: transitive
    description:
      name: webkit_inspection_protocol
      url: "https://pub.dartlang.org"
    source: hosted
    version: "1.0.0"
  webview_flutter:
    dependency: transitive
    description:
      name: webview_flutter
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.0.14"
  welcome:
    dependency: "direct main"
    description:
      path: "../package/welcome"
      relative: true
    source: path
    version: "1.0.0+1"
  win32:
    dependency: transitive
    description:
      name: win32
      url: "https://pub.dartlang.org"
    source: hosted
    version: "2.2.9"
  xdg_directories:
    dependency: transitive
    description:
      name: xdg_directories
      url: "https://pub.dartlang.org"
    source: hosted
    version: "0.2.0"
  xml:
    dependency: transitive
    description:
      name: xml
      url: "https://pub.dartlang.org"
    source: hosted
    version: "5.3.0"
  yaml:
    dependency: transitive
    description:
      name: yaml
      url: "https://pub.dartlang.org"
    source: hosted
    version: "3.1.0"
  youtube_player_flutter:
    dependency: transitive
    description:
      name: youtube_player_flutter
      url: "https://pub.dartlang.org"
    source: hosted
    version: "8.0.0"
sdks:
  dart: ">=2.14.0 <3.0.0"
  flutter: ">=2.5.1"






@galunecandrey
Copy link
Author

galunecandrey commented Sep 24, 2021

@darshankawar

pubspec.yaml

pubspec.yaml

name: NDA
description: NDA

publish_to: 'none' # Remove this line if you wish to publish to pub.dev

version: 1.0.0+1

environment:
  sdk: ">=2.14.0 <3.0.0"
  flutter: ">=2.5.1"

dependencies:
  flutter:
    sdk: flutter
  flutter_localizations:
    sdk: flutter
  auth_core:
    path: ../package/auth_core
  add_note:
    path: ../package/add_note
  filter:
    path: ../package/filter
  developer:
    path: ../package/developer
  welcome:
    path: ../package/welcome
  scotts_get_it:
    path: ../package/scotts_get_it
  scotts_utils:
    path: ../package/scotts_utils
  scotts_widget:
    path: ../package/scotts_widget
  signup:
    path: ../package/signup
  scotts_service:
    path: ../package/scotts_service
  scotts_places:
    path: ../package/scotts_places
  scotts_network:
    path: ../package/scotts_network
  store_locator:
    path: ../package/store_locator
  scotts_permissions:
    path: ../package/scotts_permissions
  lawn_quiz:
    path: ../package/lawn_quiz
  home:
    path: ../package/home
  plans:
    path: ../package/plans
  scotts_password_validator:
    path: ../package/scotts_password_validator
  soft_asks:
    path: ../package/soft_asks
  loading:
    path: ../package/loading
  recommendation_core:
    path: ../package/recommendation_core
  lawn_data_core:
    path: ../package/lawn_data_core
  content_core:
    path: ../package/content_core
  help_center:
    path: ../package/help_center
  product_core:
    path: ../package/product_core
  settings:
    path: ../package/settings
  feedback:
    path: ../package/feedback
  about_app:
    path: ../package/about_app
  lawn_profile:
    path: ../package/lawn_profile
  scotts_storage:
    path: ../package/scotts_storage
  account:
    path: ../package/account
  scotts_gigya:
    path: ../package/scotts_gigya
  scotts_location:
    path: ../package/scotts_location
  customize_plan_fab:
    path: ../package/customize_plan_fab
  plp:
    path: ../package/plp
  product:
    path: ../package/product
  profile_core:
    path: ../package/profile_core
  water:
    path: ../package/water
  article:
    path: ../package/article
  subscriptions_core:
    path: ../package/subscriptions_core
  remote_notification_core:
    path: ../package/remote_notification_core
  subscription:
    path: ../package/subscription
  faq:
    path: ../package/faq
  tips:
    path: ../package/tips
  remote_config:
    path: ../package/remote_config
  add_task:
    path: ../package/add_task
  buy_online:
    path: ../package/buy_online
  store_core:
    path: ../package/store_core
  scotts_adobe:
    path: ../package/scotts_adobe
  calendar_core:
    path: ../package/calendar_core
  calendar:
    path: ../package/calendar
  calendar_slide_up:
    path: ../package/calendar_slide_up
  scotts_deeplinks:
    path: ../package/scotts_deeplinks
  image_core:
    path: ../package/image_core
  scotts_analytics:
    path: ../package/scotts_analytics
  dio: ^4.0.0
  auto_route: ^2.4.0
  freezed_annotation: ^0.14.3
  firebase_core: ^1.6.0
  firebase_messaging: ^10.0.7
  firebase_remote_config: ^0.11.0
  get_it: ^7.2.0
  hive_flutter: ^1.1.0
  i69n: ^2.0.1
  injectable: ^1.5.0
  cached_network_image: ^3.1.0
  flutter_svg: ^0.22.0
  dartz: ^0.10.0
  google_maps_flutter: ^2.0.10
  image_picker: ^0.8.4+2
  firebase_crashlytics: ^2.2.1
  localytics_plugin:
    git:
      url: NDA
  uni_links: ^0.5.1

dev_dependencies:
  flutter_test:
    sdk: flutter
  integration_test:
    sdk: flutter
  scotts_pedantic:
    path: ../package/scotts_pedantic
  auto_route_generator: ^2.4.0
  bdd_widget_test: ^1.0.3+1
  build_runner: ^2.1.2
  freezed: ^0.14.5
  injectable_generator: ^1.5.2
  remove_from_coverage: ^2.0.0
  mocktail: ^0.1.4

flutter:
  uses-material-design: true

  assets:
    - assets/
    - assets/images/
    - assets/svg/
    - assets/svg/tabs/

  fonts:
    - family: ProximaNova
      fonts:
        - asset: assets/fonts/ProximaNova-Light.otf
          weight: 300
        - asset: assets/fonts/ProximaNova-Regular.otf
          weight: 400
        - asset: assets/fonts/ProximaNova-Regular.otf
          weight: 500
        - asset: assets/fonts/ProximaNova-Semibold.otf
          weight: 600
        - asset: assets/fonts/ProximaNova-Bold.otf
          weight: 700
        - asset: assets/fonts/ProximaNova-Extrabold.otf
          weight: 800





@darshankawar
Copy link
Member

I looked at the verbose logs, but don't see any explicitly logged error messages that would lead to the failure.
Also, there have been similar issues reported recently about unable to run app specially on iOS simulator from AS:

#90504
#90382
#90338

@darshankawar
Copy link
Member

Keeping it open for further insights from the team.

/cc: @jmagman

@darshankawar darshankawar added platform-ios iOS applications specifically c: crash Stack traces logged to the console passed first triage tool Affects the "flutter" command-line tool. See also t: labels. and removed in triage Presently being triaged by the triage team labels Sep 24, 2021
@darshankawar darshankawar changed the title Can't run Flutter application on IOS simulator Can't run Flutter application on IOS simulator from Android Studio. Sep 24, 2021
@galunecandrey
Copy link
Author

@darshankawar @jmagman It works with config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64' in Podfile

@bilalgodesto
Copy link

bilalgodesto commented Sep 27, 2021

@galunecandrey did you got any error after adding the config
config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64' I am getting
Unable to load contents of file list: 'ios/newOutputFile.xcfilelist' (in target 'Runner' from project 'Runner')

@galunecandrey
Copy link
Author

@bilalgodesto No, I didn't

@bilalgodesto
Copy link

Can you please paste your Pod file here. I am having this issue and nothing seems to be working for me

@galunecandrey
Copy link
Author

@bilalgodesto Yes, sure:

ios/Podfile
deployment_target = '13.0'
platform :ios, deployment_target

# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

project 'Runner', {
  'Debug' => :debug,
  'Profile' => :release,
  'Release' => :release,
}

def flutter_root
  generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
  unless File.exist?(generated_xcode_build_settings_path)
    raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
  end

  File.foreach(generated_xcode_build_settings_path) do |line|
    matches = line.match(/FLUTTER_ROOT\=(.*)/)
    return matches[1].strip if matches
  end
  raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
end

require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)

flutter_ios_podfile_setup

target 'Runner' do
  use_frameworks!
  use_modular_headers!

  flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
  
  target 'RunnerTest' do
    inherit! :search_paths
  end
end

post_install do |installer|
  installer.pods_project.targets.each do |target|
    flutter_additional_ios_build_settings(target)
    installer.pods_project.build_configuration_list.build_configurations.each do |config|
      config.build_settings.delete('ARCHS')

    target.build_configurations.each do |config|
      config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = deployment_target
      # Temporary fix //https://github.com/flutter/flutter/issues/90601
      config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64'
      config.build_settings.delete('ARCHS')

          # You can remove unused permissions here
          # for more infomation: https://github.com/BaseflowIT/flutter-permission-handler/blob/develop/permission_handler/ios/Classes/PermissionHandlerEnums.h
          # e.g. when you don't need camera permission, just add 'PERMISSION_CAMERA=0'
          config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [
            '$(inherited)',

            ## dart: PermissionGroup.calendar
            # 'PERMISSION_EVENTS=1',

            ## dart: PermissionGroup.reminders
            # 'PERMISSION_REMINDERS=1',

            ## dart: PermissionGroup.contacts
            # 'PERMISSION_CONTACTS=1',

            ## dart: PermissionGroup.camera
             'PERMISSION_CAMERA=1',

            ## dart: PermissionGroup.microphone
             'PERMISSION_MICROPHONE=1',

            ## dart: PermissionGroup.speech
            # 'PERMISSION_SPEECH_RECOGNIZER=1',

            ## dart: PermissionGroup.photos
             'PERMISSION_PHOTOS=1',

            ## dart: [PermissionGroup.location, PermissionGroup.locationAlways, PermissionGroup.locationWhenInUse]
             'PERMISSION_LOCATION=1',

            ## dart: PermissionGroup.notification
             'PERMISSION_NOTIFICATIONS=1',

            ## dart: PermissionGroup.mediaLibrary
            # 'PERMISSION_MEDIA_LIBRARY=1',

            ## dart: PermissionGroup.sensors
            # 'PERMISSION_SENSORS=1'
             
            ## dart: PermissionGroup.bluetooth
            # 'PERMISSION_BLUETOOTH=1',

            ## dart: PermissionGroup.appTrackingTransparency
            # 'PERMISSION_APP_TRACKING_TRANSPARENCY=1'
          ]
        end
    end
  end
end




@jmagman
Copy link
Member

jmagman commented Sep 28, 2021

@galunecandrey Thanks for the log. I was looking for something like undefined symbols kind of error in it, but don't see any.

I agree, that log doesn't look complete, I don't see any errors from Xcode, which is strange. @galunecandrey can you run flutter clean and then attach your --verbose logs again (if you can attach a txt file instead of a pdf that would be easier to read). Thanks for your patience!

@jmagman jmagman added the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Sep 28, 2021
@danagbemava-nc danagbemava-nc added r: timeout Issue is closed due to author not providing the requested details in time and removed waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds labels Nov 3, 2021
@danagbemava-nc
Copy link
Member

Without additional information, we are unfortunately not sure how to resolve this issue.
We are therefore reluctantly going to close this bug for now.
Please don't hesitate to comment on the bug if you have any more information for us; we will reopen it right away!
Thanks for your contribution.

Could everyone who still has this problem please file a new issue with the exact description of what happens, logs, and the output of flutter doctor -v.
All system setups can be slightly different, so it's always better to open new issues and reference related issues.

iOS Platform - tool support review automation moved this from Awaiting triage to Engineer reviewed Nov 3, 2021
@github-actions
Copy link

This thread has been automatically locked since there has not been any recent activity after it was closed. If you are still experiencing a similar issue, please open a new bug, including the output of flutter doctor -v and a minimal reproduction of the issue.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Nov 17, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
c: crash Stack traces logged to the console platform-ios iOS applications specifically r: timeout Issue is closed due to author not providing the requested details in time tool Affects the "flutter" command-line tool. See also t: labels.
Projects
Development

No branches or pull requests

5 participants