When running flutter build ios with a dependency of firebase_auth 0.16.0, the build fails with XCode throwing a handful of errors:
Xcode's output:
↳
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m:171:40: warning: incompatible pointer to integer conversion assigning to 'BOOL' (aka 'signed char') from 'id
_Nullable' [-Wint-conversion]
actionCodeSettings.handleCodeInApp = call.arguments[@"handleCodeInApp"];
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m:174:47: warning: incompatible pointer to integer conversion sending 'id _Nullable' to parameter of type 'BOOL'
(aka 'signed char') [-Wint-conversion]
installIfNotAvailable:call.arguments[@"androidInstallIfNotAvailable"]
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In module 'FirebaseAuth' imported from /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public/Firebase/Firebase.h:26:
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/FirebaseAuth/Firebase/Auth/Source/Public/FIRActionCodeSettings.h:84:39: note: passing argument to parameter 'installIfNotAvailable' here
installIfNotAvailable:(BOOL)installIfNotAvailable
^
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m:522:38: error: no known class method for selector 'credentialWithProviderID:IDToken:rawNonce:accessToken:'
credential = [FIROAuthProvider credentialWithProviderID:provider
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m:531:38: error: no known class method for selector 'credentialWithProviderID:IDToken:rawNonce:'
credential = [FIROAuthProvider credentialWithProviderID:provider
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m:77:1: warning: conflicting return type in implementation of
'application:didReceiveRemoteNotification:fetchCompletionHandler:': 'BOOL' (aka 'signed char') vs 'bool' [-Wmismatched-return-types]
- (bool)application:(UIApplication *)application
^ ~~~~
In module 'Flutter' imported from /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.h:5:
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Flutter/Flutter.framework/Headers/FlutterPlugin.h:91:1: note: previous definition is here
- (BOOL)application:(UIApplication*)application
^ ~~~~
3 warnings and 2 errors generated.
note: Using new build system
note: Planning build
note: Constructing build description
Encountered error while building for device.
flutter doctor output:
[✓] Flutter (Channel beta, v1.17.0-3.2.pre, on Mac OS X 10.14.6 18G95, locale en-CA)
• Flutter version 1.17.0-3.2.pre at /Users/tonydowney/flutter
• Framework revision 2a7bc389f2 (3 days ago), 2020-04-21 20:34:20 -0700
• Engine revision 4c8c31f591
• Dart version 2.8.0 (build 2.8.0-dev.20.10)
[✓] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
• Android SDK at /Users/tonydowney/Library/Android/Sdk
• Platform android-29, build-tools 28.0.3
• ANDROID_HOME = /Users/tonydowney/Library/Android/Sdk
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
• All Android licenses accepted.
[✓] Xcode - develop for iOS and macOS (Xcode 11.3.1)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 11.3.1, Build version 11C504
• CocoaPods version 1.9.1
[✓] Chrome - develop for the web
• Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
[✓] Android Studio (version 3.5)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin version 41.1.2
• Dart plugin version 191.8593
• Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
[!] IntelliJ IDEA Community Edition (version 2020.1)
• IntelliJ at /Applications/IntelliJ IDEA CE.app
✗ Flutter plugin not installed; this adds Flutter specific functionality.
✗ Dart plugin not installed; this adds Dart specific functionality.
• For information about installing plugins, see
https://flutter.dev/intellij-setup/#installing-the-plugins
[✓] Connected device (4 available)
• M7 • FHGLM2TEJ9 • android-arm64 • Android 9 (API 28)
• iPad Air (3rd generation) • FFDB428C-647E-45C7-93BD-EF91CDD06953 • ios • com.apple.CoreSimulator.SimRuntime.iOS-13-3 (simulator)
• Chrome • chrome • web-javascript • Google Chrome 83.0.4103.23 beta
• Web Server • web-server • web-javascript • Flutter Tools
! Doctor found issues in 1 category.
Process finished with exit code 0
Hi @tonyclickspace
can you please provide your flutter build ios --verbose?
Also, to better address the issue, would be helpful if you could post a minimal code sample to reproduce the problem
Thank you
Part 1 of 2:
logs
flutter build ios --verbose
[ +24 ms] executing: [/Users/tonydowney/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
[ +45 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[ ] 2a7bc389f28d83c581f7ddd4601588a22e12512e
[ ] executing: [/Users/tonydowney/flutter/] git describe --match *.*.* --first-parent --long --tags
[ +12 ms] Exit code 0 from: git describe --match *.*.* --first-parent --long --tags
[ ] 1.17.0-3.2.pre-0-g2a7bc38
[ +24 ms] executing: [/Users/tonydowney/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +7 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/beta
[ ] executing: [/Users/tonydowney/flutter/] git ls-remote --get-url origin
[ +6 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ +92 ms] executing: [/Users/tonydowney/flutter/] git rev-parse --abbrev-ref HEAD
[ +9 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ +13 ms] executing: sw_vers -productName
[ +29 ms] Exit code 0 from: sw_vers -productName
[ ] Mac OS X
[ ] executing: sw_vers -productVersion
[ +28 ms] Exit code 0 from: sw_vers -productVersion
[ ] 10.14.6
[ ] executing: sw_vers -buildVersion
[ +16 ms] Exit code 0 from: sw_vers -buildVersion
[ ] 18G95
[ +33 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[ +3 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[ +5 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update.
[ ] Artifact Instance of 'GradleWrapper' is not required, skipping update.
[ ] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[ +6 ms] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[ ] Artifact Instance of 'FlutterSdk' is not required, skipping update.
[ ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[ +8 ms] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update.
[ +129 ms] Found plugin firebase_auth at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/
[ +13 ms] Found plugin firebase_auth_web at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth_web-0.1.2/
[ +3 ms] Found plugin firebase_core at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_core-0.4.4+3/
[ +3 ms] Found plugin firebase_core_web at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_core_web-0.1.1+2/
[ +2 ms] Found plugin firebase_database at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_database-3.1.3/
[ +35 ms] Found plugin geolocator at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/geolocator-5.3.1/
[ +5 ms] Found plugin google_api_availability at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/google_api_availability-2.0.4/
[ +28 ms] Found plugin location_permissions at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/location_permissions-2.0.5/
[ +23 ms] Found plugin path_provider at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/path_provider-1.6.7/
[ +2 ms] Found plugin path_provider_macos at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/path_provider_macos-0.0.4+1/
[ +22 ms] Found plugin shared_preferences at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/shared_preferences-0.5.7/
[ +2 ms] Found plugin shared_preferences_macos at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/shared_preferences_macos-0.0.1+7/
[ +3 ms] Found plugin shared_preferences_web at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/shared_preferences_web-0.1.2+4/
[ +12 ms] Found plugin sqflite at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/sqflite-1.3.0/
[ +78 ms] Found plugin firebase_auth at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/
[ +2 ms] Found plugin firebase_auth_web at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth_web-0.1.2/
[ +2 ms] Found plugin firebase_core at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_core-0.4.4+3/
[ +10 ms] Found plugin firebase_core_web at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_core_web-0.1.1+2/
[ +2 ms] Found plugin firebase_database at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_database-3.1.3/
[ +13 ms] Found plugin geolocator at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/geolocator-5.3.1/
[ +2 ms] Found plugin google_api_availability at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/google_api_availability-2.0.4/
[ +15 ms] Found plugin location_permissions at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/location_permissions-2.0.5/
[ +5 ms] Found plugin path_provider at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/path_provider-1.6.7/
[ +2 ms] Found plugin path_provider_macos at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/path_provider_macos-0.0.4+1/
[ +14 ms] Found plugin shared_preferences at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/shared_preferences-0.5.7/
[ +1 ms] Found plugin shared_preferences_macos at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/shared_preferences_macos-0.0.1+7/
[ +1 ms] Found plugin shared_preferences_web at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/shared_preferences_web-0.1.2+4/
[ +3 ms] Found plugin sqflite at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/sqflite-1.3.0/
[ +94 ms] Generating /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java
[ +29 ms] executing: /usr/bin/xcodebuild -version
[ +291 ms] Exit code 0 from: /usr/bin/xcodebuild -version
[ ] Xcode 11.3.1
Build version 11C504
[ +54 ms] executing: /usr/bin/plutil -convert json -o - /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Runner/Info.plist
[ +12 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Runner/Info.plist
[ ] {"NSLocationAlwaysAndWhenInUseUsageDescription":"This app is only available for use in Canada. Your location is required to verify what country you are
in.","CFBundleIdentifier":"$(PRODUCT_BUNDLE_IDENTIFIER)","CFBundleName":"BudGuide","CFBundleInfoDictionaryVersion":"6.0","CFBundleVersion":"$(CURRENT_PROJECT_VERSION)","NSLocationAlwaysUsageDescription":"This app is only
available for use in Canada. Your location is required to verify what country you are in.","CFBundleExecutable":"$(EXECUTABLE_NAME)","LSRequiresIPhoneOS":true,"NSLocationWhenInUseUsageDescription":"This app is only available
for use in Canada. Your location is required to verify what country you are
in.","UILaunchStoryboardName":"LaunchScreen","UIMainStoryboardFile":"Main","UISupportedInterfaceOrientations":["UIInterfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRight","UIInterfaceOrientationPortrait"],"U
IViewControllerBasedStatusBarAppearance":false,"CFBundleSignature":"????","CFBundlePackageType":"APPL","CFBundleDevelopmentRegion":"$(DEVELOPMENT_LANGUAGE)","UISupportedInterfaceOrientations~ipad":["UIInterfaceOrientationLan
dscapeLeft","UIInterfaceOrientationLandscapeRight","UIInterfaceOrientationPortraitUpsideDown","UIInterfaceOrientationPortrait"],"CFBundleShortVersionString":"$(MARKETING_VERSION)"}
⣽[ +31 ms] executing: [/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Runner.xcodeproj -target Runner
-showBuildSettings
[ ] executing: [/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Runner.xcodeproj -target Runner
-showBuildSettings
(This is taking an unexpectedly long time.)⣯[+3765 ms] Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = NO
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = tonydowney
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
APPLY_RULES_IN_COPY_HEADERS = NO
ARCHS = armv7 arm64
ARCHS_STANDARD = armv7 arm64
ARCHS_STANDARD_32_64_BIT = armv7 arm64
ARCHS_STANDARD_32_BIT = armv7
ARCHS_STANDARD_64_BIT = arm64
ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64
ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios
BUILD_LIBRARY_FOR_DISTRIBUTION = NO
BUILD_ROOT = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos
CACHE_ROOT = /var/folders/38/8ljj8pq17cg5wyj68k3sp57h0000gn/C/com.apple.DeveloperTools/11.3.1-11C504/Xcode
CCHROOT = /var/folders/38/8ljj8pq17cg5wyj68k3sp57h0000gn/C/com.apple.DeveloperTools/11.3.1-11C504/Xcode
CHMOD = /bin/chmod
CHOWN = /usr/sbin/chown
CLANG_ANALYZER_NONNULL = YES
CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
CLANG_CXX_LIBRARY = libc++
CLANG_ENABLE_MODULES = YES
CLANG_ENABLE_OBJC_ARC = YES
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
CLANG_WARN_BOOL_CONVERSION = YES
CLANG_WARN_COMMA = YES
CLANG_WARN_CONSTANT_CONVERSION = YES
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
CLANG_WARN_EMPTY_BODY = YES
CLANG_WARN_ENUM_CONVERSION = YES
CLANG_WARN_INFINITE_RECURSION = YES
CLANG_WARN_INT_CONVERSION = YES
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
CLANG_WARN_STRICT_PROTOTYPES = YES
CLANG_WARN_SUSPICIOUS_MOVE = YES
CLANG_WARN_UNREACHABLE_CODE = YES
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
CLASS_FILE_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/BudGuide.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext
CODE_SIGN_IDENTITY = iPhone Developer
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Release
CONFIGURATION_BUILD_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos
CONFIGURATION_TEMP_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Runner.build/Release-iphoneos
CONTENTS_FOLDER_PATH = BudGuide.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk
CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator13.2
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = arm64
CURRENT_PROJECT_VERSION = 70
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_DEXT_INSTALL_PATH = /System/Library/DriverExtensions
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min=
DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_version_min
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2
DERIVED_FILES_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = en
DEVELOPMENT_TEAM = B6AGE9H89W
DOCUMENTATION_FOLDER_PATH = BudGuide.app/en.lproj/Documentation
DONT_GENERATE_INFOPLIST_FILE = NO
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = BudGuide.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos
EFFECTIVE_PLATFORM_NAME = -iphoneos
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBEDDED_PROFILE_NAME = embedded.mobileprovision
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HARDENED_RUNTIME = NO
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_NS_ASSERTIONS = NO
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = NO
ENTITLEMENTS_ALLOWED = YES
ENTITLEMENTS_DESTINATION = Signature
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = BudGuide.app/Executables
EXECUTABLE_FOLDER_PATH = BudGuide.app
EXECUTABLE_NAME = BudGuide
EXECUTABLE_PATH = BudGuide.app/BudGuide
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_NAME = 0.2.12
FLUTTER_BUILD_NUMBER = 72
FLUTTER_FRAMEWORK_DIR = /Users/tonydowney/flutter/bin/cache/artifacts/engine/ios-release
FLUTTER_ROOT = /Users/tonydowney/flutter
FLUTTER_TARGET = lib/main.dart
FRAMEWORKS_FOLDER_PATH = BudGuide.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FMDB"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseAuth" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCore"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCoreDiagnostics"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseDatabase" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseInstanceID"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransport"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransportCCTSupport"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_auth"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_core" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_database"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/geolocator" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/google_api_availability"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/location_permissions"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/path_provider"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/shared_preferences" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/sqflite"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/../Flutter" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/FirebaseAnalytics/Frameworks"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/GoogleAppMeasurement/Frameworks" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FMDB"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseAuth" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCore"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCoreDiagnostics"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseDatabase" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseInstanceID"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransport"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransportCCTSupport"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_auth"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_core" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_database"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/geolocator" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/google_api_availability"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/location_permissions"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/path_provider"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/shared_preferences" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/sqflite"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/../Flutter" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/FirebaseAnalytics/Frameworks"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/GoogleAppMeasurement/Frameworks" /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = BudGuide.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = COCOAPODS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 COCOAPODS=1 COCOAPODS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1
PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1
GCC_SYMBOLS_PRIVATE_EXTERN = YES
GCC_THUMB_SUPPORT = YES
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 20
GROUP = staff
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HEADER_SEARCH_PATHS = "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FMDB/FMDB.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseInstanceID/FirebaseInstanceID.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransport/GoogleDataTransport.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_auth/firebase_auth.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_core/firebase_core.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_database/firebase_database.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/geolocator/geolocator.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/google_api_availability/google_api_availability.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/location_permissions/location_permissions.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb/nanopb.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/path_provider/path_provider.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/shared_preferences/shared_preferences.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/sqflite/sqflite.framework/Headers" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public/Firebase" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public/FirebaseAuthInterop"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public/FirebaseCoreDiagnosticsInterop" /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Firebase/CoreOnly/Sources
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FMDB/FMDB.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseInstanceID/FirebaseInstanceID.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransport/GoogleDataTransport.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_auth/firebase_auth.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_core/firebase_core.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_database/firebase_database.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/geolocator/geolocator.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/google_api_availability/google_api_availability.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/location_permissions/location_permissions.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb/nanopb.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/path_provider/path_provider.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/shared_preferences/shared_preferences.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/sqflite/sqflite.framework/Headers" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public/Firebase" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public/FirebaseAuthInterop"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public/FirebaseCoreDiagnosticsInterop"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FMDB/FMDB.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseInstanceID/FirebaseInstanceID.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransport/GoogleDataTransport.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_auth/firebase_auth.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_core/firebase_core.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_database/firebase_database.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/geolocator/geolocator.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/google_api_availability/google_api_availability.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/location_permissions/location_permissions.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb/nanopb.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/path_provider/path_provider.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/shared_preferences/shared_preferences.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/sqflite/sqflite.framework/Headers" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public/Firebase" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public/FirebaseAuthInterop"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public/FirebaseCoreDiagnosticsInterop" /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Firebase/CoreOnly/Sources
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Firebase/CoreOnly/Sources
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/tonydowney
ICONV = /usr/bin/iconv
INFOPLIST_EXPAND_BUILD_SETTINGS = YES
INFOPLIST_FILE = Runner/Info.plist
INFOPLIST_OUTPUT_FORMAT = binary
INFOPLIST_PATH = BudGuide.app/Info.plist
INFOPLIST_PREPROCESS = NO
INFOSTRINGS_PATH = BudGuide.app/en.lproj/InfoPlist.strings
INLINE_PRIVATE_FRAMEWORKS = NO
INSTALLHDRS_COPY_PHASE = NO
INSTALLHDRS_SCRIPT_PHASE = NO
INSTALL_DIR = /tmp/Runner.dst/Applications
INSTALL_GROUP = staff
INSTALL_MODE_FLAG = u+w,go-w,a+rX
INSTALL_OWNER = tonydowney
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = BudGuide.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal/arm64/BudGuide_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Runner.build/Release-iphoneos/Runner.build/BudGuide-LinkMap-normal-arm64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_DEXT_INSTALL_PATH = /Library/DriverExtensions
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_arm64 =
LINK_FILE_LIST_normal_armv7 =
LINK_WITH_STANDARD_LIBRARIES = YES
LLVM_TARGET_TRIPLE_OS_VERSION = ios8.0
LLVM_TARGET_TRIPLE_VENDOR = apple
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = BudGuide.app/en.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFCopyLocalizedString
LOCALIZED_STRING_SWIFTUI_SUPPORT = YES
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 18G95
MAC_OS_X_VERSION_ACTUAL = 101406
MAC_OS_X_VERSION_MAJOR = 101400
MAC_OS_X_VERSION_MINOR = 1406
MARKETING_VERSION = 0.2.10
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/BudGuide.app
MODULES_FOLDER_PATH = BudGuide.app/Modules
MODULE_CACHE_DIR = /Users/tonydowney/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = NO
NATIVE_ARCH = armv7
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJECT_FILE_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal
OBJROOT = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios
ONLY_ACTIVE_ARCH = NO
OS = MACOS
OSAC = /usr/bin/osacompile
OTHER_LDFLAGS = -framework Flutter -framework Flutter
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH =
/Applications/Xcode.app/Contents/Developer/usr/bin:/Library/Frameworks/Python.framework/Versions/3.7/bin:/Users/tonydowney/Library/Android/Sdk/tools:/Users/tonydowney/Library/Android/Sdk/tools/bin:/Us
ers/tonydowney/Library/Android/Sdk/platform-tools:/Library/Frameworks/Python.framework/Versions/3.7/bin:/anaconda/bin:/Users/tonydowney/flutter/bin:/Users/tonydowney/google-cloud-sdk/bin:/usr/local/bi
n:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/usr/local/git/bin:/Users/tonydowney/.pub-cache/bin:/Users/tonydowney/.rvm/bin
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers
/Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = BudGuide.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo
PKGINFO_PATH = BudGuide.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
PLATFORM_DISPLAY_NAME = iOS
PLATFORM_NAME = iphoneos
PLATFORM_PREFERRED_ARCH = arm64
PLATFORM_PRODUCT_BUILD_VERSION = 17B102
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = BudGuide.app/PlugIns
PODS_BUILD_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios
PODS_CONFIGURATION_BUILD_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos
PODS_PODFILE_DIR_PATH = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/.
PODS_ROOT = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PRIVATE_HEADERS_FOLDER_PATH = BudGuide.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = com.budvue.budvueTabletV3
PRODUCT_BUNDLE_PACKAGE_TYPE = APPL
PRODUCT_MODULE_NAME = BudGuide
PRODUCT_NAME = BudGuide
PRODUCT_SETTINGS_PATH = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Runner.build/DerivedSources
PROJECT_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios
PROJECT_FILE_PATH = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Runner.build
PROJECT_TEMP_ROOT = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios
PROVISIONING_PROFILE_REQUIRED = YES
PUBLIC_HEADERS_FOLDER_PATH = BudGuide.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
RESOURCE_RULES_REQUIRED = YES
REZ_COLLECTOR_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = BudGuide.app/Scripts
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk
SDK_DIR_iphoneos13_2 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk
SDK_NAME = iphoneos13.2
SDK_NAMES = iphoneos13.2
SDK_PRODUCT_BUILD_VERSION = 17B102
SDK_VERSION = 13.2
SDK_VERSION_ACTUAL = 130200
SDK_VERSION_MAJOR = 130000
SDK_VERSION_MINOR = 200
SED = /usr/bin/sed
SEPARATE_STRIP = NO
SEPARATE_SYMBOL_EDIT = NO
SET_DIR_MODE_OWNER_GROUP = YES
SET_FILE_MODE_OWNER_GROUP = NO
SHALLOW_BUNDLE = YES
SHARED_DERIVED_FILE_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = BudGuide.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/SharedPrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = BudGuide.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios
SRCROOT = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = YES
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphoneos
SUPPORTS_MACCATALYST = NO
SUPPORTS_TEXT_BASED_API = NO
SWIFT_COMPILATION_MODE = wholemodule
SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
SWIFT_OPTIMIZATION_LEVEL = -O
SWIFT_PLATFORM_TARGET_PREFIX = ios
SWIFT_VERSION = 5.0
SYMROOT = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DEXT_INSTALL_PATH = /System/Library/DriverExtensions
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 2
TARGETNAME = Runner
TARGET_BUILD_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILES_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILE_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_ROOT = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 501
UNLOCALIZED_RESOURCES_FOLDER_PATH = BudGuide.app
UNSTRIPPED_PRODUCT = NO
USER = tonydowney
USER_APPS_DIR = /Users/tonydowney/Applications
USER_LIBRARY_DIR = /Users/tonydowney/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
USE_LLVM_TARGET_TRIPLES = YES
USE_LLVM_TARGET_TRIPLES_FOR_CLANG = YES
USE_LLVM_TARGET_TRIPLES_FOR_LD = YES
USE_LLVM_TARGET_TRIPLES_FOR_TAPI = YES
USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
VALIDATE_PRODUCT = YES
VALIDATE_WORKSPACE = NO
VALID_ARCHS = arm64 arm64e armv7 armv7s
VERBOSE_PBXCP = NO
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = BudGuide.app/version.plist
VERSION_INFO_BUILDER = tonydowney
VERSION_INFO_FILE = BudGuide_vers.c
VERSION_INFO_STRING = "@(#)PROGRAM:BudGuide PROJECT:Runner-70"
WRAPPER_EXTENSION = app
WRAPPER_NAME = BudGuide.app
WRAPPER_SUFFIX = .app
WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 11C504
XCODE_VERSION_ACTUAL = 1131
XCODE_VERSION_MAJOR = 1100
XCODE_VERSION_MINOR = 1130
XPCSERVICES_FOLDER_PATH = BudGuide.app/XPCServices
YACC = yacc
arch = arm64
variant = normal [ +130 ms] Building com.budvue.budvueTabletV3 for device (ios-release)...
[ +31 ms] Xcode workspace settings not found, skipping migration
[ +5 ms] executing: [/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/] /usr/bin/xcodebuild -list
[+1399 ms] Information about project "Runner":
Targets:
Runner
Build Configurations:
Debug
Release
Profile
If no build configuration is specified and -scheme is not passed then "Release" is used.
Schemes:
Runner
[ +15 ms] Automatically signing iOS for device deployment using specified development team in Xcode project: B6AGE9H89W
[ +36 ms] Found plugin firebase_auth at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/
[ +1 ms] Found plugin firebase_auth_web at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth_web-0.1.2/
[ +1 ms] Found plugin firebase_core at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_core-0.4.4+3/
[ +1 ms] Found plugin firebase_core_web at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_core_web-0.1.1+2/
[ +1 ms] Found plugin firebase_database at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_database-3.1.3/
[ +5 ms] Found plugin geolocator at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/geolocator-5.3.1/
[ +1 ms] Found plugin google_api_availability at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/google_api_availability-2.0.4/
[ +7 ms] Found plugin location_permissions at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/location_permissions-2.0.5/
[ +3 ms] Found plugin path_provider at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/path_provider-1.6.7/
[ +1 ms] Found plugin path_provider_macos at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/path_provider_macos-0.0.4+1/
[ +8 ms] Found plugin shared_preferences at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/shared_preferences-0.5.7/
[ +1 ms] Found plugin shared_preferences_macos at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/shared_preferences_macos-0.0.1+7/
[ +1 ms] Found plugin shared_preferences_web at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/shared_preferences_web-0.1.2+4/
[ +2 ms] Found plugin sqflite at /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/sqflite-1.3.0/
[ +55 ms] executing: mkfifo /var/folders/38/8ljj8pq17cg5wyj68k3sp57h0000gn/T/flutter_build_log_pipe.hNRWl3/pipe_to_stdout
[ +6 ms] Exit code 0 from: mkfifo /var/folders/38/8ljj8pq17cg5wyj68k3sp57h0000gn/T/flutter_build_log_pipe.hNRWl3/pipe_to_stdout
[ +3 ms] Running Xcode build...
[ +1 ms] executing: [/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/] /usr/bin/env xcrun xcodebuild -configuration Release VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner
BUILD_DIR=/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios -sdk iphoneos SCRIPT_OUTPUT_STREAM_FILE=/var/folders/38/8ljj8pq17cg5wyj68k3sp57h0000gn/T/flutter_build_log_pipe.hNRWl3/pipe_to_stdout
FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO
[+9691 ms] Build settings from command line:
BUILD_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios
COMPILER_INDEX_STORE_ENABLE = NO
FLUTTER_SUPPRESS_ANALYTICS = true
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/38/8ljj8pq17cg5wyj68k3sp57h0000gn/T/flutter_build_log_pipe.hNRWl3/pipe_to_stdout
SDKROOT = iphoneos13.2
VERBOSE_SCRIPT_LOGGING = YES
note: Using new build system
note: Planning build
note: Constructing build description
CreateBuildDirectory /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Products (in target 'nanopb' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-create-build-directory /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Products
CreateBuildDirectory /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex (in target 'nanopb' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-create-build-directory /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/nanopb.build/nanopb-all-target-headers.hmap (in target
'nanopb' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/nanopb.build/nanopb-all-target-headers.hmap
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/GoogleUtilities.build/GoogleUtilities-all-target-headers.h
map (in target 'GoogleUtilities' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/GoogleUtilities.build/GoogleUtilities-all-target-heade
rs.hmap
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/shared_preferences.build/shared_preferences-all-target-hea
ders.hmap (in target 'shared_preferences' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/shared_preferences.build/shared_preferences-all-target
-headers.hmap
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/path_provider.build/path_provider-all-target-headers.hmap
(in target 'path_provider' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/path_provider.build/path_provider-all-target-headers.h
map
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/location_permissions.build/location_permissions-all-target
-headers.hmap (in target 'location_permissions' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/location_permissions.build/location_permissions-all-ta
rget-headers.hmap
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/leveldb-library/leveldb-library-Info.plist (in target 'leveldb-library' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/leveldb-library/leveldb-library-Info.plist -producttype com.apple.product-type.framework
-expandbuildsettings -format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Info.plist
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/geolocator.build/geolocator-all-target-headers.hmap (in
target 'geolocator' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/geolocator.build/geolocator-all-target-headers.hmap
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/google_api_availability.build/google_api_availability-all-
target-headers.hmap (in target 'google_api_availability' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/google_api_availability.build/google_api_availability-
all-target-headers.hmap
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/GoogleDataTransport.build/GoogleDataTransport-all-target-h
eaders.hmap (in target 'GoogleDataTransport' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/GoogleDataTransport.build/GoogleDataTransport-all-targ
et-headers.hmap
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/GTMSessionFetcher.build/GTMSessionFetcher-all-target-heade
rs.hmap (in target 'GTMSessionFetcher' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/GTMSessionFetcher.build/GTMSessionFetcher-all-target-h
eaders.hmap
WriteAuxiliaryFile /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FMDB.build/FMDB-all-target-headers.hmap
(in target 'FMDB' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FMDB.build/FMDB-all-target-headers.hmap
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb/nanopb.framework/Info.plist /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\
Support\ Files/nanopb/nanopb-Info.plist (in target 'nanopb' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/nanopb/nanopb-Info.plist -producttype com.apple.product-type.framework -expandbuildsettings
-format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb/nanopb.framework/Info.plist
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/GoogleUtilities/GoogleUtilities-Info.plist (in target 'GoogleUtilities' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/GoogleUtilities/GoogleUtilities-Info.plist -producttype com.apple.product-type.framework
-expandbuildsettings -format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Info.plist
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/shared_preferences/shared_preferences.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/shared_preferences/shared_preferences-Info.plist (in target 'shared_preferences' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/shared_preferences/shared_preferences-Info.plist -producttype
com.apple.product-type.framework -expandbuildsettings -format binary -platform iphoneos -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/shared_preferences/shared_preferences.framework/Info.plist
GenerateDSYMFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library/leveldb.framework.dSYM
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/leveldb (in target 'leveldb-library' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/leveldb -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library/leveldb.framework.dSYM
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/path_provider/path_provider.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/path_provider/path_provider-Info.plist (in target 'path_provider' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/path_provider/path_provider-Info.plist -producttype com.apple.product-type.framework
-expandbuildsettings -format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/path_provider/path_provider.framework/Info.plist
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/location_permissions/location_permissions.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/location_permissions/location_permissions-Info.plist (in target 'location_permissions' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/location_permissions/location_permissions-Info.plist -producttype
com.apple.product-type.framework -expandbuildsettings -format binary -platform iphoneos -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/location_permissions/location_permissions.framework/Info.plist
GenerateDSYMFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb/nanopb.framework.dSYM
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb/nanopb.framework/nanopb (in target 'nanopb' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb/nanopb.framework/nanopb -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb/nanopb.framework.dSYM
GenerateDSYMFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/shared_preferences/shared_preferences.framework.dSYM
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/shared_preferences/shared_preferences.framework/shared_preferences (in target 'shared_preferences' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/shared_preferences/shared_preferences.framework/shared_preferences -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/shared_preferences/shared_preferences.framework.dSYM
GenerateDSYMFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/path_provider/path_provider.framework.dSYM
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/path_provider/path_provider.framework/path_provider (in target 'path_provider' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/path_provider/path_provider.framework/path_provider -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/path_provider/path_provider.framework.dSYM
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/google_api_availability/google_api_availability.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/google_api_availability/google_api_availability-Info.plist (in target 'google_api_availability' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/google_api_availability/google_api_availability-Info.plist -producttype
com.apple.product-type.framework -expandbuildsettings -format binary -platform iphoneos -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/google_api_availability/google_api_availability.framework/Info.plist
GenerateDSYMFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework.dSYM
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/GoogleUtilities (in target 'GoogleUtilities' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/GoogleUtilities -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework.dSYM
GenerateDSYMFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/google_api_availability/google_api_availability.framework.dSYM
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/google_api_availability/google_api_availability.framework/google_api_availability (in target 'google_api_availability' from
project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/google_api_availability/google_api_availability.framework/google_api_availability -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/google_api_availability/google_api_availability.framework.dSYM
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/geolocator/geolocator.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/geolocator/geolocator-Info.plist (in target 'geolocator' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/geolocator/geolocator-Info.plist -producttype com.apple.product-type.framework
-expandbuildsettings -format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/geolocator/geolocator.framework/Info.plist
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/GoogleDataTransportCCTSupport.build/GoogleDataTransportCCT
Support-all-target-headers.hmap (in target 'GoogleDataTransportCCTSupport' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/GoogleDataTransportCCTSupport.build/GoogleDataTranspor
tCCTSupport-all-target-headers.hmap
GenerateDSYMFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/geolocator/geolocator.framework.dSYM
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/geolocator/geolocator.framework/geolocator (in target 'geolocator' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/geolocator/geolocator.framework/geolocator -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/geolocator/geolocator.framework.dSYM
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransport/GoogleDataTransport.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/GoogleDataTransport/GoogleDataTransport-Info.plist (in target 'GoogleDataTransport' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/GoogleDataTransport/GoogleDataTransport-Info.plist -producttype
com.apple.product-type.framework -expandbuildsettings -format binary -platform iphoneos -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransport/GoogleDataTransport.framework/Info.plist
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/GTMSessionFetcher/GTMSessionFetcher-Info.plist (in target 'GTMSessionFetcher' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/GTMSessionFetcher/GTMSessionFetcher-Info.plist -producttype
com.apple.product-type.framework -expandbuildsettings -format binary -platform iphoneos -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Info.plist
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FMDB/FMDB.framework/Info.plist /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\
Support\ Files/FMDB/FMDB-Info.plist (in target 'FMDB' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/FMDB/FMDB-Info.plist -producttype com.apple.product-type.framework -expandbuildsettings
-format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FMDB/FMDB.framework/Info.plist
GenerateDSYMFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework.dSYM
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/GTMSessionFetcher (in target 'GTMSessionFetcher' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/GTMSessionFetcher -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework.dSYM
GenerateDSYMFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FMDB/FMDB.framework.dSYM
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FMDB/FMDB.framework/FMDB (in target 'FMDB' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FMDB/FMDB.framework/FMDB
-o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FMDB/FMDB.framework.dSYM
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport-Info.plist (in target 'GoogleDataTransportCCTSupport' from
project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport-Info.plist -producttype
com.apple.product-type.framework -expandbuildsettings -format binary -platform iphoneos -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport.framework/Info.plist
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FirebaseCoreDiagnostics.build/FirebaseCoreDiagnostics-all-
target-headers.hmap (in target 'FirebaseCoreDiagnostics' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FirebaseCoreDiagnostics.build/FirebaseCoreDiagnostics-
all-target-headers.hmap
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics-Info.plist (in target 'FirebaseCoreDiagnostics' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics-Info.plist -producttype
com.apple.product-type.framework -expandbuildsettings -format binary -platform iphoneos -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Info.plist
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FirebaseCore.build/FirebaseCore-all-target-headers.hmap
(in target 'FirebaseCore' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FirebaseCore.build/FirebaseCore-all-target-headers.hma
p
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FirebaseInstanceID.build/FirebaseInstanceID-all-target-hea
ders.hmap (in target 'FirebaseInstanceID' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FirebaseInstanceID.build/FirebaseInstanceID-all-target
-headers.hmap
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/FirebaseCore/FirebaseCore-Info.plist (in target 'FirebaseCore' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/FirebaseCore/FirebaseCore-Info.plist -producttype com.apple.product-type.framework
-expandbuildsettings -format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Info.plist
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseInstanceID/FirebaseInstanceID.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/FirebaseInstanceID/FirebaseInstanceID-Info.plist (in target 'FirebaseInstanceID' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/FirebaseInstanceID/FirebaseInstanceID-Info.plist -producttype
com.apple.product-type.framework -expandbuildsettings -format binary -platform iphoneos -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseInstanceID/FirebaseInstanceID.framework/Info.plist
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FirebaseAuth.build/FirebaseAuth-all-target-headers.hmap
(in target 'FirebaseAuth' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FirebaseAuth.build/FirebaseAuth-all-target-headers.hma
p
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/FirebaseAuth/FirebaseAuth-Info.plist (in target 'FirebaseAuth' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/FirebaseAuth/FirebaseAuth-Info.plist -producttype com.apple.product-type.framework
-expandbuildsettings -format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Info.plist
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/sqflite.build/sqflite-all-target-headers.hmap (in target
'sqflite' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/sqflite.build/sqflite-all-target-headers.hmap
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FirebaseDatabase.build/FirebaseDatabase-all-target-headers
.hmap (in target 'FirebaseDatabase' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FirebaseDatabase.build/FirebaseDatabase-all-target-hea
ders.hmap
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/sqflite/sqflite.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/sqflite/sqflite-Info.plist (in target 'sqflite' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/sqflite/sqflite-Info.plist -producttype com.apple.product-type.framework
-expandbuildsettings -format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/sqflite/sqflite.framework/Info.plist
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/firebase_database-all-target-heade
rs.hmap (in target 'firebase_database' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/firebase_database-all-target-h
eaders.hmap
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_core.build/firebase_core-all-target-headers.hmap
(in target 'firebase_core' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_core.build/firebase_core-all-target-headers.h
map
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/FirebaseDatabase/FirebaseDatabase-Info.plist (in target 'FirebaseDatabase' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/FirebaseDatabase/FirebaseDatabase-Info.plist -producttype com.apple.product-type.framework
-expandbuildsettings -format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Info.plist
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/firebase_auth-all-target-headers.hmap
(in target 'firebase_auth' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/firebase_auth-all-target-headers.h
map
GenerateDSYMFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/sqflite/sqflite.framework.dSYM
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/sqflite/sqflite.framework/sqflite (in target 'sqflite' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/sqflite/sqflite.framework/sqflite -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/sqflite/sqflite.framework.dSYM
CompileC
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/Objects-normal/arm64/FLTFirebaseAuthPl
ugin.o /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target
'firebase_auth' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
export LANG=en_US.US-ASCII
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios8.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack
-fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -gmodules -fmodules-cache-path=/Users/tonydowney/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
-fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/tonydowney/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
-fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -fmodule-name=firebase_auth -Wno-trigraphs -fpascal-strings -Os
-fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage
-Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function
-Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants
-Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32
-Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DPOD_CONFIGURATION_RELEASE=1 -DCOCOAPODS=1 -DLIBRARY_VERSION=@\"0.16.0\"
-DLIBRARY_NAME=@\"flutter-fire-auth\" -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion
-Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/firebase_auth-generated-files.hmap
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/firebase_auth-own-target-headers
.hmap
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/firebase_auth-all-non-framework-
target-headers.hmap -ivfsoverlay
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/all-product-headers.yaml -iquote
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/firebase_auth-project-headers.hmap
-I/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_auth/include -I/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/DerivedSources-normal/arm64
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/DerivedSources/arm64
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/DerivedSources
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_auth -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseAuth
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCore -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCoreDiagnostics
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseDatabase -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseInstanceID
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransport
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransportCCTSupport
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Flutter
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/FirebaseAnalytics/Frameworks -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/GoogleAppMeasurement/Frameworks -include
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/firebase_auth/firebase_auth-prefix.pch -MMD -MT dependencies -MF
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/Objects-normal/arm64/FLTFirebaseAu
thPlugin.d --serialize-diagnostics
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/Objects-normal/arm64/FLTFirebaseAu
thPlugin.dia -c /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m -o
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/Objects-normal/arm64/FLTFirebaseAu
thPlugin.o
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m:522:38: error: no known class method for selector
'credentialWithProviderID:IDToken:rawNonce:accessToken:'
credential = [FIROAuthProvider credentialWithProviderID:provider
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m:531:38: error: no known class method for selector 'credentialWithProviderID:IDToken:rawNonce:'
credential = [FIROAuthProvider credentialWithProviderID:provider
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 errors generated.
CompileC
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/Objects-normal/armv7/FLTFirebaseAuthPl
ugin.o /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target
'firebase_auth' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
export LANG=en_US.US-ASCII
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target armv7-apple-ios8.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack
-fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -gmodules -fmodules-cache-path=/Users/tonydowney/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
-fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/tonydowney/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
-fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -fmodule-name=firebase_auth -Wno-trigraphs -fpascal-strings -Os
-fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage
-Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function
-Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants
-Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32
-Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DPOD_CONFIGURATION_RELEASE=1 -DCOCOAPODS=1 -DLIBRARY_VERSION=@\"0.16.0\"
-DLIBRARY_NAME=@\"flutter-fire-auth\" -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion
-Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/firebase_auth-generated-files.hmap
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/firebase_auth-own-target-headers
.hmap
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/firebase_auth-all-non-framework-
target-headers.hmap -ivfsoverlay
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/all-product-headers.yaml -iquote
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/firebase_auth-project-headers.hmap
-I/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_auth/include -I/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/DerivedSources-normal/armv7
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/DerivedSources/armv7
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/DerivedSources
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_auth -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseAuth
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCore -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCoreDiagnostics
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseDatabase -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseInstanceID
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransport
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransportCCTSupport
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Flutter
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/FirebaseAnalytics/Frameworks -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/GoogleAppMeasurement/Frameworks -include
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/firebase_auth/firebase_auth-prefix.pch -MMD -MT dependencies -MF
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/Objects-normal/armv7/FLTFirebaseAu
thPlugin.d --serialize-diagnostics
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/Objects-normal/armv7/FLTFirebaseAu
thPlugin.dia -c /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m -o
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/Objects-normal/armv7/FLTFirebaseAu
thPlugin.o
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m:171:40: warning: incompatible pointer to integer conversion assigning to 'BOOL' (aka 'signed
char') from 'id _Nullable' [-Wint-conversion]
actionCodeSettings.handleCodeInApp = call.arguments[@"handleCodeInApp"];
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m:174:47: warning: incompatible pointer to integer conversion sending 'id _Nullable' to
parameter of type 'BOOL' (aka 'signed char') [-Wint-conversion]
installIfNotAvailable:call.arguments[@"androidInstallIfNotAvailable"]
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In module 'FirebaseAuth' imported from /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public/Firebase/Firebase.h:26:
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/FirebaseAuth/Firebase/Auth/Source/Public/FIRActionCodeSettings.h:84:39: note: passing argument to parameter 'installIfNotAvailable' here
installIfNotAvailable:(BOOL)installIfNotAvailable
^
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m:522:38: error: no known class method for selector
'credentialWithProviderID:IDToken:rawNonce:accessToken:'
credential = [FIROAuthProvider credentialWithProviderID:provider
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m:531:38: error: no known class method for selector 'credentialWithProviderID:IDToken:rawNonce:'
credential = [FIROAuthProvider credentialWithProviderID:provider
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m:77:1: warning: conflicting return type in implementation of
'application:didReceiveRemoteNotification:fetchCompletionHandler:': 'BOOL' (aka 'signed char') vs 'bool' [-Wmismatched-return-types]
- (bool)application:(UIApplication *)application
^ ~~~~
In module 'Flutter' imported from /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.h:5:
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Flutter/Flutter.framework/Headers/FlutterPlugin.h:91:1: note: previous definition is here
- (BOOL)application:(UIApplication*)application
^ ~~~~
3 warnings and 2 errors generated.
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_database/firebase_database.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/firebase_database/firebase_database-Info.plist (in target 'firebase_database' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/firebase_database/firebase_database-Info.plist -producttype
com.apple.product-type.framework -expandbuildsettings -format binary -platform iphoneos -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_database/firebase_database.framework/Info.plist
CompileC
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/Objects-normal/armv7/FLTFirebaseDa
tabasePlugin.o /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_database-3.1.3/ios/Classes/FLTFirebaseDatabasePlugin.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in
target 'firebase_database' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
export LANG=en_US.US-ASCII
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target armv7-apple-ios8.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack
-fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -gmodules -fmodules-cache-path=/Users/tonydowney/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
-fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/tonydowney/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
-fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -fmodule-name=firebase_database -Wno-trigraphs -fpascal-strings -Os
-fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage
-Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function
-Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants
-Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32
-Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DPOD_CONFIGURATION_RELEASE=1 -DCOCOAPODS=1 -DNS_BLOCK_ASSERTIONS=1
-DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations
-g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/firebase_database-generated-fi
les.hmap
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/firebase_database-own-target
-headers.hmap
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/firebase_database-all-non-fr
amework-target-headers.hmap -ivfsoverlay
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/all-product-headers.yaml
-iquote
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/firebase_database-project-head
ers.hmap -I/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_database/include -I/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/DerivedSources-normal/armv7
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/DerivedSources/armv7
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/DerivedSources
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_database -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseAuth
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCore -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCoreDiagnostics
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseDatabase -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseInstanceID
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransport
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransportCCTSupport
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Flutter
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/FirebaseAnalytics/Frameworks -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/GoogleAppMeasurement/Frameworks -include
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/firebase_database/firebase_database-prefix.pch -MMD -MT dependencies -MF
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/Objects-normal/armv7/FLTFireba
seDatabasePlugin.d --serialize-diagnostics
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/Objects-normal/armv7/FLTFireba
seDatabasePlugin.dia -c /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_database-3.1.3/ios/Classes/FLTFirebaseDatabasePlugin.m -o
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/Objects-normal/armv7/FLTFireba
seDatabasePlugin.o
CompileC
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/Objects-normal/arm64/FLTFirebaseDa
tabasePlugin.o /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_database-3.1.3/ios/Classes/FLTFirebaseDatabasePlugin.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in
target 'firebase_database' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
export LANG=en_US.US-ASCII
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios8.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack
-fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -gmodules -fmodules-cache-path=/Users/tonydowney/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
-fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/tonydowney/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
-fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -fmodule-name=firebase_database -Wno-trigraphs -fpascal-strings -Os
-fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage
-Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function
-Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants
-Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32
-Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DPOD_CONFIGURATION_RELEASE=1 -DCOCOAPODS=1 -DNS_BLOCK_ASSERTIONS=1
-DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations
-g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/firebase_database-generated-fi
les.hmap
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/firebase_database-own-target
-headers.hmap
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/firebase_database-all-non-fr
amework-target-headers.hmap -ivfsoverlay
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/all-product-headers.yaml
-iquote
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/firebase_database-project-head
ers.hmap -I/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_database/include -I/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/DerivedSources-normal/arm64
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/DerivedSources/arm64
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/DerivedSources
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_database -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseAuth
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCore -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCoreDiagnostics
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseDatabase -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseInstanceID
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransport
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransportCCTSupport
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Flutter
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/FirebaseAnalytics/Frameworks -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/GoogleAppMeasurement/Frameworks -include
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/firebase_database/firebase_database-prefix.pch -MMD -MT dependencies -MF
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/Objects-normal/arm64/FLTFireba
seDatabasePlugin.d --serialize-diagnostics
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/Objects-normal/arm64/FLTFireba
seDatabasePlugin.dia -c /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_database-3.1.3/ios/Classes/FLTFirebaseDatabasePlugin.m -o
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/Objects-normal/arm64/FLTFireba
seDatabasePlugin.o
Part 2 of 2:
logs
** BUILD FAILED **
The following build commands failed:
CompileC
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/Objects-normal/arm64/FLTFirebaseAuthP
lugin.o /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
CompileC
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/Objects-normal/armv7/FLTFirebaseAuthP
lugin.o /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
(2 failures)
[ +255 ms] Running Xcode build... (completed in 9,923ms, longer than expected)
[ +3 ms] Xcode build done. 9.9s
[ +8 ms] executing: [/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/] /usr/bin/env xcrun xcodebuild -configuration Release VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner
BUILD_DIR=/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios -sdk iphoneos SCRIPT_OUTPUT_STREAM_FILE=/var/folders/38/8ljj8pq17cg5wyj68k3sp57h0000gn/T/flutter_build_log_pipe.hNRWl3/pipe_to_stdout
FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO -showBuildSettings
[ +1 ms] executing: [/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/] /usr/bin/env xcrun xcodebuild -configuration Release VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner
BUILD_DIR=/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios -sdk iphoneos SCRIPT_OUTPUT_STREAM_FILE=/var/folders/38/8ljj8pq17cg5wyj68k3sp57h0000gn/T/flutter_build_log_pipe.hNRWl3/pipe_to_stdout
FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO -showBuildSettings
[+2409 ms] Build settings from command line:
BUILD_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios
COMPILER_INDEX_STORE_ENABLE = NO
FLUTTER_SUPPRESS_ANALYTICS = true
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/38/8ljj8pq17cg5wyj68k3sp57h0000gn/T/flutter_build_log_pipe.hNRWl3/pipe_to_stdout
SDKROOT = iphoneos13.2
VERBOSE_SCRIPT_LOGGING = YES
Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = NO
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = tonydowney
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
APPLY_RULES_IN_COPY_HEADERS = NO
ARCHS = armv7 arm64
ARCHS_STANDARD = armv7 arm64
ARCHS_STANDARD_32_64_BIT = armv7 arm64
ARCHS_STANDARD_32_BIT = armv7
ARCHS_STANDARD_64_BIT = arm64
ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64
ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios
BUILD_LIBRARY_FOR_DISTRIBUTION = NO
BUILD_ROOT = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Products
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos
CACHE_ROOT = /var/folders/38/8ljj8pq17cg5wyj68k3sp57h0000gn/C/com.apple.DeveloperTools/11.3.1-11C504/Xcode
CCHROOT = /var/folders/38/8ljj8pq17cg5wyj68k3sp57h0000gn/C/com.apple.DeveloperTools/11.3.1-11C504/Xcode
CHMOD = /bin/chmod
CHOWN = /usr/sbin/chown
CLANG_ANALYZER_NONNULL = YES
CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
CLANG_CXX_LIBRARY = libc++
CLANG_ENABLE_MODULES = YES
CLANG_ENABLE_OBJC_ARC = YES
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
CLANG_WARN_BOOL_CONVERSION = YES
CLANG_WARN_COMMA = YES
CLANG_WARN_CONSTANT_CONVERSION = YES
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
CLANG_WARN_EMPTY_BODY = YES
CLANG_WARN_ENUM_CONVERSION = YES
CLANG_WARN_INFINITE_RECURSION = YES
CLANG_WARN_INT_CONVERSION = YES
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
CLANG_WARN_STRICT_PROTOTYPES = YES
CLANG_WARN_SUSPICIOUS_MOVE = YES
CLANG_WARN_UNREACHABLE_CODE = YES
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
CLASS_FILE_DIR = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Runner.build/Release-iphoneos/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/BudGuide.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext
CODE_SIGN_IDENTITY = iPhone Developer
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = NO
COMPOSITE_SDK_DIRS = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Release
CONFIGURATION_BUILD_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos
CONFIGURATION_TEMP_DIR = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Runner.build/Release-iphoneos
CONTENTS_FOLDER_PATH = BudGuide.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk
CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator13.2
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = arm64
CURRENT_PROJECT_VERSION = 70
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_DEXT_INSTALL_PATH = /System/Library/DriverExtensions
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min=
DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_version_min
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2
DERIVED_FILES_DIR = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = en
DEVELOPMENT_TEAM = B6AGE9H89W
DOCUMENTATION_FOLDER_PATH = BudGuide.app/en.lproj/Documentation
DONT_GENERATE_INFOPLIST_FILE = NO
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = BudGuide.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos
EFFECTIVE_PLATFORM_NAME = -iphoneos
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBEDDED_PROFILE_NAME = embedded.mobileprovision
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HARDENED_RUNTIME = NO
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_NS_ASSERTIONS = NO
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = NO
ENTITLEMENTS_ALLOWED = YES
ENTITLEMENTS_DESTINATION = Signature
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = BudGuide.app/Executables
EXECUTABLE_FOLDER_PATH = BudGuide.app
EXECUTABLE_NAME = BudGuide
EXECUTABLE_PATH = BudGuide.app/BudGuide
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Runner.build/Release-iphoneos/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_NAME = 0.2.12
FLUTTER_BUILD_NUMBER = 72
FLUTTER_FRAMEWORK_DIR = /Users/tonydowney/flutter/bin/cache/artifacts/engine/ios-release
FLUTTER_ROOT = /Users/tonydowney/flutter
FLUTTER_SUPPRESS_ANALYTICS = true
FLUTTER_TARGET = lib/main.dart
FRAMEWORKS_FOLDER_PATH = BudGuide.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FMDB"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseAuth" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCore"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCoreDiagnostics"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseDatabase" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseInstanceID"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransport"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransportCCTSupport"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_auth"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_core" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_database"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/geolocator" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/google_api_availability"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/location_permissions"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/path_provider"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/shared_preferences" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/sqflite"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/../Flutter" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/FirebaseAnalytics/Frameworks"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/GoogleAppMeasurement/Frameworks" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FMDB"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseAuth" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCore"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCoreDiagnostics"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseDatabase" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseInstanceID"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransport"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransportCCTSupport"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_auth"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_core" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_database"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/geolocator" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/google_api_availability"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/location_permissions"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/path_provider"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/shared_preferences" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/sqflite"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/../Flutter" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/FirebaseAnalytics/Frameworks"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/GoogleAppMeasurement/Frameworks" /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = BudGuide.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = COCOAPODS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 COCOAPODS=1 COCOAPODS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1
PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1
GCC_SYMBOLS_PRIVATE_EXTERN = YES
GCC_THUMB_SUPPORT = YES
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 20
GROUP = staff
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HEADER_SEARCH_PATHS = "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FMDB/FMDB.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseInstanceID/FirebaseInstanceID.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransport/GoogleDataTransport.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_auth/firebase_auth.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_core/firebase_core.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_database/firebase_database.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/geolocator/geolocator.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/google_api_availability/google_api_availability.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/location_permissions/location_permissions.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb/nanopb.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/path_provider/path_provider.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/shared_preferences/shared_preferences.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/sqflite/sqflite.framework/Headers" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public/Firebase" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public/FirebaseAuthInterop"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public/FirebaseCoreDiagnosticsInterop" /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Firebase/CoreOnly/Sources
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FMDB/FMDB.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseInstanceID/FirebaseInstanceID.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransport/GoogleDataTransport.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_auth/firebase_auth.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_core/firebase_core.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_database/firebase_database.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/geolocator/geolocator.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/google_api_availability/google_api_availability.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/location_permissions/location_permissions.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb/nanopb.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/path_provider/path_provider.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/shared_preferences/shared_preferences.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/sqflite/sqflite.framework/Headers" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public/Firebase" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public/FirebaseAuthInterop"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public/FirebaseCoreDiagnosticsInterop"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FMDB/FMDB.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseInstanceID/FirebaseInstanceID.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransport/GoogleDataTransport.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_auth/firebase_auth.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_core/firebase_core.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_database/firebase_database.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/geolocator/geolocator.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/google_api_availability/google_api_availability.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/location_permissions/location_permissions.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb/nanopb.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/path_provider/path_provider.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/shared_preferences/shared_preferences.framework/Headers"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/sqflite/sqflite.framework/Headers" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public/Firebase" "/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public/FirebaseAuthInterop"
"/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public/FirebaseCoreDiagnosticsInterop" /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Firebase/CoreOnly/Sources
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Firebase/CoreOnly/Sources
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/tonydowney
ICONV = /usr/bin/iconv
INFOPLIST_EXPAND_BUILD_SETTINGS = YES
INFOPLIST_FILE = Runner/Info.plist
INFOPLIST_OUTPUT_FORMAT = binary
INFOPLIST_PATH = BudGuide.app/Info.plist
INFOPLIST_PREPROCESS = NO
INFOSTRINGS_PATH = BudGuide.app/en.lproj/InfoPlist.strings
INLINE_PRIVATE_FRAMEWORKS = NO
INSTALLHDRS_COPY_PHASE = NO
INSTALLHDRS_SCRIPT_PHASE = NO
INSTALL_DIR = /tmp/Runner.dst/Applications
INSTALL_GROUP = staff
INSTALL_MODE_FLAG = u+w,go-w,a+rX
INSTALL_OWNER = tonydowney
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = BudGuide.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE =
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Runner.build/Release-iphoneos/Runner.build/Objects-normal/arm64/BudGuide_dependenc
y_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH =
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Runner.build/Release-iphoneos/Runner.build/BudGuide-LinkMap-normal-arm64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_DEXT_INSTALL_PATH = /Library/DriverExtensions
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_arm64 =
LINK_FILE_LIST_normal_armv7 =
LINK_WITH_STANDARD_LIBRARIES = YES
LLVM_TARGET_TRIPLE_OS_VERSION = ios8.0
LLVM_TARGET_TRIPLE_VENDOR = apple
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = BudGuide.app/en.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFCopyLocalizedString
LOCALIZED_STRING_SWIFTUI_SUPPORT = YES
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 18G95
MAC_OS_X_VERSION_ACTUAL = 101406
MAC_OS_X_VERSION_MAJOR = 101400
MAC_OS_X_VERSION_MINOR = 1406
MARKETING_VERSION = 0.2.10
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/BudGuide.app
MODULES_FOLDER_PATH = BudGuide.app/Modules
MODULE_CACHE_DIR = /Users/tonydowney/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = NO
NATIVE_ARCH = armv7
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJECT_FILE_DIR = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Runner.build/Release-iphoneos/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Runner.build/Release-iphoneos/Runner.build/Objects-normal
OBJROOT = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex
ONLY_ACTIVE_ARCH = NO
OS = MACOS
OSAC = /usr/bin/osacompile
OTHER_LDFLAGS = -framework Flutter -framework Flutter
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH =
/Applications/Xcode.app/Contents/Developer/usr/bin:/Library/Frameworks/Python.framework/Versions/3.7/bin:/Users/tonydowney/Library/Android/Sdk/tools:/Users/tonydowney/Library/Android/Sdk/tools/bin:/Us
ers/tonydowney/Library/Android/Sdk/platform-tools:/Library/Frameworks/Python.framework/Versions/3.7/bin:/anaconda/bin:/Users/tonydowney/flutter/bin:/Users/tonydowney/google-cloud-sdk/bin:/usr/local/bi
n:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/usr/local/git/bin:/Users/tonydowney/.pub-cache/bin:/Users/tonydowney/.rvm/bin
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers
/Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = BudGuide.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Runner.build/Release-iphoneos/Runner.build/PkgInfo
PKGINFO_PATH = BudGuide.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
PLATFORM_DISPLAY_NAME = iOS
PLATFORM_NAME = iphoneos
PLATFORM_PREFERRED_ARCH = arm64
PLATFORM_PRODUCT_BUILD_VERSION = 17B102
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = BudGuide.app/PlugIns
PODS_BUILD_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios
PODS_CONFIGURATION_BUILD_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos
PODS_PODFILE_DIR_PATH = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/.
PODS_ROOT = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PRIVATE_HEADERS_FOLDER_PATH = BudGuide.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = com.budvue.budvueTabletV3
PRODUCT_BUNDLE_PACKAGE_TYPE = APPL
PRODUCT_MODULE_NAME = BudGuide
PRODUCT_NAME = BudGuide
PRODUCT_SETTINGS_PATH = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Runner.build/DerivedSources
PROJECT_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios
PROJECT_FILE_PATH = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Runner.build
PROJECT_TEMP_ROOT = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex
PROVISIONING_PROFILE_REQUIRED = YES
PUBLIC_HEADERS_FOLDER_PATH = BudGuide.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
RESOURCE_RULES_REQUIRED = YES
REZ_COLLECTOR_DIR =
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR =
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = BudGuide.app/Scripts
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/38/8ljj8pq17cg5wyj68k3sp57h0000gn/T/flutter_build_log_pipe.hNRWl3/pipe_to_stdout
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk
SDK_DIR_iphoneos13_2 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk
SDK_NAME = iphoneos13.2
SDK_NAMES = iphoneos13.2
SDK_PRODUCT_BUILD_VERSION = 17B102
SDK_VERSION = 13.2
SDK_VERSION_ACTUAL = 130200
SDK_VERSION_MAJOR = 130000
SDK_VERSION_MINOR = 200
SED = /usr/bin/sed
SEPARATE_STRIP = NO
SEPARATE_SYMBOL_EDIT = NO
SET_DIR_MODE_OWNER_GROUP = YES
SET_FILE_MODE_OWNER_GROUP = NO
SHALLOW_BUNDLE = YES
SHARED_DERIVED_FILE_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = BudGuide.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/PrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = BudGuide.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios
SRCROOT = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = YES
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphoneos
SUPPORTS_MACCATALYST = NO
SUPPORTS_TEXT_BASED_API = NO
SWIFT_COMPILATION_MODE = wholemodule
SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
SWIFT_OPTIMIZATION_LEVEL = -O
SWIFT_PLATFORM_TARGET_PREFIX = ios
SWIFT_VERSION = 5.0
SYMROOT = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Products
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DEXT_INSTALL_PATH = /System/Library/DriverExtensions
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 2
TARGETNAME = Runner
TARGET_BUILD_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Runner.build/Release-iphoneos/Runner.build
TEMP_DIR = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Runner.build/Release-iphoneos/Runner.build
TEMP_FILES_DIR = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Runner.build/Release-iphoneos/Runner.build
TEMP_FILE_DIR = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Runner.build/Release-iphoneos/Runner.build
TEMP_ROOT = /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 501
UNLOCALIZED_RESOURCES_FOLDER_PATH = BudGuide.app
UNSTRIPPED_PRODUCT = NO
USER = tonydowney
USER_APPS_DIR = /Users/tonydowney/Applications
USER_LIBRARY_DIR = /Users/tonydowney/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
USE_LLVM_TARGET_TRIPLES = YES
USE_LLVM_TARGET_TRIPLES_FOR_CLANG = YES
USE_LLVM_TARGET_TRIPLES_FOR_LD = YES
USE_LLVM_TARGET_TRIPLES_FOR_TAPI = YES
USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
VALIDATE_PRODUCT = YES
VALIDATE_WORKSPACE = NO
VALID_ARCHS = arm64 arm64e armv7 armv7s
VERBOSE_PBXCP = NO
VERBOSE_SCRIPT_LOGGING = YES
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = BudGuide.app/version.plist
VERSION_INFO_BUILDER = tonydowney
VERSION_INFO_FILE = BudGuide_vers.c
VERSION_INFO_STRING = "@(#)PROGRAM:BudGuide PROJECT:Runner-70"
WRAPPER_EXTENSION = app
WRAPPER_NAME = BudGuide.app
WRAPPER_SUFFIX = .app
WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 11C504
XCODE_VERSION_ACTUAL = 1131
XCODE_VERSION_MAJOR = 1100
XCODE_VERSION_MINOR = 1130
XPCSERVICES_FOLDER_PATH = BudGuide.app/XPCServices
YACC = yacc
arch = arm64
variant = normal
[ +40 ms] Failed to build iOS app
[ +1 ms] Error output from Xcode build:
↳
[ +2 ms] ** BUILD FAILED **
The following build commands failed:
CompileC
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/Objects-normal/arm64/FLTFirebaseAuthPlugin.o
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
CompileC
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/Objects-normal/armv7/FLTFirebaseAuthPlugin.o
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
(2 failures)
[ +4 ms] Xcode's output:
↳
[ +83 ms] Build settings from command line:
BUILD_DIR = /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios
COMPILER_INDEX_STORE_ENABLE = NO
FLUTTER_SUPPRESS_ANALYTICS = true
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/38/8ljj8pq17cg5wyj68k3sp57h0000gn/T/flutter_build_log_pipe.hNRWl3/pipe_to_stdout
SDKROOT = iphoneos13.2
VERBOSE_SCRIPT_LOGGING = YES
note: Using new build system
note: Planning build
note: Constructing build description
CreateBuildDirectory /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Products (in target 'nanopb' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-create-build-directory /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Products
CreateBuildDirectory /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex (in target 'nanopb' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-create-build-directory /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex
WriteAuxiliaryFile /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/nanopb.build/nanopb-all-target-headers.hmap
(in target
'nanopb' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/nanopb.build/nanopb-all-target-headers.hmap
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/GoogleUtilities.build/GoogleUtilities-all-target-headers.hmap
(in target
'GoogleUtilities' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/GoogleUtilities.build/GoogleUtilities-all-target-headers.hmap
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/shared_preferences.build/shared_preferences-all-target-headers.hmap (in
target 'shared_preferences' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/shared_preferences.build/shared_preferences-all-target-headers.hmap
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/path_provider.build/path_provider-all-target-headers.hmap (in
target
'path_provider' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/path_provider.build/path_provider-all-target-headers.hmap
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/location_permissions.build/location_permissions-all-target-headers.hmap
(in target 'location_permissions' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/location_permissions.build/location_permissions-all-target-headers.hma
p
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\
Support\ Files/leveldb-library/leveldb-library-Info.plist (in target 'leveldb-library' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/leveldb-library/leveldb-library-Info.plist -producttype com.apple.product-type.framework
-expandbuildsettings -format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Info.plist
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/geolocator.build/geolocator-all-target-headers.hmap (in
target 'geolocator' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/geolocator.build/geolocator-all-target-headers.hmap
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/google_api_availability.build/google_api_availability-all-target-headers.h
map (in target 'google_api_availability' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/google_api_availability.build/google_api_availability-all-target-heade
rs.hmap
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/GoogleDataTransport.build/GoogleDataTransport-all-target-headers.hmap (in
target 'GoogleDataTransport' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/GoogleDataTransport.build/GoogleDataTransport-all-target-headers.hmap
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/GTMSessionFetcher.build/GTMSessionFetcher-all-target-headers.hmap (in
target 'GTMSessionFetcher' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/GTMSessionFetcher.build/GTMSessionFetcher-all-target-headers.hmap
WriteAuxiliaryFile /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FMDB.build/FMDB-all-target-headers.hmap (in
target
'FMDB' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FMDB.build/FMDB-all-target-headers.hmap
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb/nanopb.framework/Info.plist /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\
Support\
Files/nanopb/nanopb-Info.plist (in target 'nanopb' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/nanopb/nanopb-Info.plist -producttype com.apple.product-type.framework -expandbuildsettings
-format binary
-platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb/nanopb.framework/Info.plist
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/GoogleUtilities/GoogleUtilities-Info.plist (in target 'GoogleUtilities' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/GoogleUtilities/GoogleUtilities-Info.plist -producttype com.apple.product-type.framework
-expandbuildsettings -format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Info.plist
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/shared_preferences/shared_preferences.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/shared_preferences/shared_preferences-Info.plist (in target 'shared_preferences' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/shared_preferences/shared_preferences-Info.plist -producttype com.apple.product-type.framework
-expandbuildsettings -format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/shared_preferences/shared_preferences.framework/Info.plist
GenerateDSYMFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library/leveldb.framework.dSYM
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/leveldb (in target 'leveldb-library' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/leveldb
-o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library/leveldb.framework.dSYM
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/path_provider/path_provider.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\
Support\ Files/path_provider/path_provider-Info.plist (in target 'path_provider' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/path_provider/path_provider-Info.plist -producttype com.apple.product-type.framework
-expandbuildsettings
-format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/path_provider/path_provider.framework/Info.plist
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/location_permissions/location_permissions.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/location_permissions/location_permissions-Info.plist (in target 'location_permissions' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/location_permissions/location_permissions-Info.plist -producttype
com.apple.product-type.framework
-expandbuildsettings -format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/location_permissions/location_permissions.framework/Info.plist
GenerateDSYMFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb/nanopb.framework.dSYM
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb/nanopb.framework/nanopb (in target 'nanopb' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb/nanopb.framework/nanopb
-o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb/nanopb.framework.dSYM
GenerateDSYMFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/shared_preferences/shared_preferences.framework.dSYM
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/shared_preferences/shared_preferences.framework/shared_preferences (in target 'shared_preferences' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/shared_preferences/shared_preferences.framework/shared_preferences -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/shared_preferences/shared_preferences.framework.dSYM
GenerateDSYMFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/path_provider/path_provider.framework.dSYM
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/path_provider/path_provider.framework/path_provider (in target 'path_provider' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/path_provider/path_provider.framework/path_provider -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/path_provider/path_provider.framework.dSYM
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/google_api_availability/google_api_availability.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/google_api_availability/google_api_availability-Info.plist (in target 'google_api_availability' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/google_api_availability/google_api_availability-Info.plist -producttype
com.apple.product-type.framework
-expandbuildsettings -format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/google_api_availability/google_api_availability.framework/Info.plist
GenerateDSYMFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework.dSYM
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/GoogleUtilities (in target 'GoogleUtilities' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/GoogleUtilities -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework.dSYM
GenerateDSYMFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/google_api_availability/google_api_availability.framework.dSYM
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/google_api_availability/google_api_availability.framework/google_api_availability (in target 'google_api_availability' from
project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/google_api_availability/google_api_availability.framework/google_api_availability -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/google_api_availability/google_api_availability.framework.dSYM
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/geolocator/geolocator.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\
Files/geolocator/geolocator-Info.plist (in target 'geolocator' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/geolocator/geolocator-Info.plist -producttype com.apple.product-type.framework
-expandbuildsettings -format
binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/geolocator/geolocator.framework/Info.plist
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/GoogleDataTransportCCTSupport.build/GoogleDataTransportCCTSupport-all-targ
et-headers.hmap (in target 'GoogleDataTransportCCTSupport' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/GoogleDataTransportCCTSupport.build/GoogleDataTransportCCTSupport-all-
target-headers.hmap
GenerateDSYMFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/geolocator/geolocator.framework.dSYM
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/geolocator/geolocator.framework/geolocator (in target 'geolocator' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/geolocator/geolocator.framework/geolocator -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/geolocator/geolocator.framework.dSYM
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransport/GoogleDataTransport.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/GoogleDataTransport/GoogleDataTransport-Info.plist (in target 'GoogleDataTransport' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/GoogleDataTransport/GoogleDataTransport-Info.plist -producttype com.apple.product-type.framework
-expandbuildsettings -format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransport/GoogleDataTransport.framework/Info.plist
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/GTMSessionFetcher/GTMSessionFetcher-Info.plist (in target 'GTMSessionFetcher' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/GTMSessionFetcher/GTMSessionFetcher-Info.plist -producttype com.apple.product-type.framework
-expandbuildsettings -format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Info.plist
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FMDB/FMDB.framework/Info.plist /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\
Files/FMDB/FMDB-Info.plist (in target 'FMDB' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/FMDB/FMDB-Info.plist -producttype com.apple.product-type.framework -expandbuildsettings -format
binary
-platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FMDB/FMDB.framework/Info.plist
GenerateDSYMFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework.dSYM
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/GTMSessionFetcher (in target 'GTMSessionFetcher' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/GTMSessionFetcher -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework.dSYM
GenerateDSYMFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FMDB/FMDB.framework.dSYM
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FMDB/FMDB.framework/FMDB (in target 'FMDB' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FMDB/FMDB.framework/FMDB -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FMDB/FMDB.framework.dSYM
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport-Info.plist (in target 'GoogleDataTransportCCTSupport' from
project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport-Info.plist -producttype
com.apple.product-type.framework -expandbuildsettings -format binary -platform iphoneos -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport.framework/Info.plist
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FirebaseCoreDiagnostics.build/FirebaseCoreDiagnostics-all-target-headers.h
map (in target 'FirebaseCoreDiagnostics' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FirebaseCoreDiagnostics.build/FirebaseCoreDiagnostics-all-target-heade
rs.hmap
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics-Info.plist (in target 'FirebaseCoreDiagnostics' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics-Info.plist -producttype
com.apple.product-type.framework
-expandbuildsettings -format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.framework/Info.plist
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FirebaseCore.build/FirebaseCore-all-target-headers.hmap
(in target 'FirebaseCore' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FirebaseCore.build/FirebaseCore-all-target-headers.hmap
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FirebaseInstanceID.build/FirebaseInstanceID-all-target-headers.hmap (in
target 'FirebaseInstanceID' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FirebaseInstanceID.build/FirebaseInstanceID-all-target-headers.hmap
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\
Support\ Files/FirebaseCore/FirebaseCore-Info.plist (in target 'FirebaseCore' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/FirebaseCore/FirebaseCore-Info.plist -producttype com.apple.product-type.framework
-expandbuildsettings
-format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Info.plist
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseInstanceID/FirebaseInstanceID.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/FirebaseInstanceID/FirebaseInstanceID-Info.plist (in target 'FirebaseInstanceID' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/FirebaseInstanceID/FirebaseInstanceID-Info.plist -producttype com.apple.product-type.framework
-expandbuildsettings -format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseInstanceID/FirebaseInstanceID.framework/Info.plist
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FirebaseAuth.build/FirebaseAuth-all-target-headers.hmap
(in target 'FirebaseAuth' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FirebaseAuth.build/FirebaseAuth-all-target-headers.hmap
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\
Support\ Files/FirebaseAuth/FirebaseAuth-Info.plist (in target 'FirebaseAuth' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/FirebaseAuth/FirebaseAuth-Info.plist -producttype com.apple.product-type.framework
-expandbuildsettings
-format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Info.plist
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/sqflite.build/sqflite-all-target-headers.hmap (in
target 'sqflite' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file /Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/sqflite.build/sqflite-all-target-headers.hmap
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FirebaseDatabase.build/FirebaseDatabase-all-target-headers.hmap
(in target
'FirebaseDatabase' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/FirebaseDatabase.build/FirebaseDatabase-all-target-headers.hmap
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/sqflite/sqflite.framework/Info.plist /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\
Support\
Files/sqflite/sqflite-Info.plist (in target 'sqflite' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/sqflite/sqflite-Info.plist -producttype com.apple.product-type.framework -expandbuildsettings
-format
binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/sqflite/sqflite.framework/Info.plist
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/firebase_database-all-target-headers.hmap (in
target 'firebase_database' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/firebase_database-all-target-headers.hmap
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_core.build/firebase_core-all-target-headers.hmap (in
target
'firebase_core' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_core.build/firebase_core-all-target-headers.hmap
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/FirebaseDatabase/FirebaseDatabase-Info.plist (in target 'FirebaseDatabase' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/FirebaseDatabase/FirebaseDatabase-Info.plist -producttype com.apple.product-type.framework
-expandbuildsettings -format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Info.plist
WriteAuxiliaryFile
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/firebase_auth-all-target-headers.hmap (in
target
'firebase_auth' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
write-file
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/firebase_auth-all-target-headers.hmap
GenerateDSYMFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/sqflite/sqflite.framework.dSYM
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/sqflite/sqflite.framework/sqflite (in target 'sqflite' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/sqflite/sqflite.framework/sqflite -o
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/sqflite/sqflite.framework.dSYM
CompileC
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/Objects-normal/arm64/FLTFirebaseAuthPlugin.o
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'firebase_auth'
from project
'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
export LANG=en_US.US-ASCII
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios8.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack
-fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -gmodules -fmodules-cache-path=/Users/tonydowney/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400
-fmodules-prune-after=345600 -fbuild-session-file=/Users/tonydowney/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session
-Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -fmodule-name=firebase_auth -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers
-Wno-missing-prototypes -Werror=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class
-Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable
-Wunused-value
-Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion
-Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector
-Wdeprecated-implementations -DPOD_CONFIGURATION_RELEASE=1 -DCOCOAPODS=1 -DLIBRARY_VERSION=@\"0.16.0\" -DLIBRARY_NAME=@\"flutter-fire-auth\" -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion
-Wcomma
-Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/firebase_auth-generated-files.hmap
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/firebase_auth-own-target-headers.hmap
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/firebase_auth-all-non-framework-target-headers.h
map -ivfsoverlay
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/all-product-headers.yaml -iquote
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/firebase_auth-project-headers.hmap
-I/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_auth/include -I/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/DerivedSources-normal/arm64
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/DerivedSources/arm64
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/DerivedSources
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_auth -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseAuth
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCore -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCoreDiagnostics
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseDatabase -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseInstanceID
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransport
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransportCCTSupport
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Flutter -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/FirebaseAnalytics/Frameworks
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/GoogleAppMeasurement/Frameworks -include /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\
Files/firebase_auth/firebase_auth-prefix.pch -MMD -MT dependencies -MF
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/Objects-normal/arm64/FLTFirebaseAuthPlugin.d
--serialize-diagnostics
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/Objects-normal/arm64/FLTFirebaseAuthPlugin.dia -c
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m -o
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/Objects-normal/arm64/FLTFirebaseAuthPlugin.o
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m:522:38: error: no known class method for selector
'credentialWithProviderID:IDToken:rawNonce:accessToken:'
credential = [FIROAuthProvider credentialWithProviderID:provider
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m:531:38: error: no known class method for selector 'credentialWithProviderID:IDToken:rawNonce:'
credential = [FIROAuthProvider credentialWithProviderID:provider
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 errors generated.
CompileC
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/Objects-normal/armv7/FLTFirebaseAuthPlugin.o
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'firebase_auth'
from project
'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
export LANG=en_US.US-ASCII
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target armv7-apple-ios8.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack
-fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -gmodules -fmodules-cache-path=/Users/tonydowney/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400
-fmodules-prune-after=345600 -fbuild-session-file=/Users/tonydowney/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session
-Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -fmodule-name=firebase_auth -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers
-Wno-missing-prototypes -Werror=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class
-Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable
-Wunused-value
-Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion
-Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector
-Wdeprecated-implementations -DPOD_CONFIGURATION_RELEASE=1 -DCOCOAPODS=1 -DLIBRARY_VERSION=@\"0.16.0\" -DLIBRARY_NAME=@\"flutter-fire-auth\" -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion
-Wcomma
-Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/firebase_auth-generated-files.hmap
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/firebase_auth-own-target-headers.hmap
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/firebase_auth-all-non-framework-target-headers.h
map -ivfsoverlay
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/all-product-headers.yaml -iquote
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/firebase_auth-project-headers.hmap
-I/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_auth/include -I/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/DerivedSources-normal/armv7
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/DerivedSources/armv7
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/DerivedSources
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_auth -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseAuth
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCore -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCoreDiagnostics
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseDatabase -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseInstanceID
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransport
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransportCCTSupport
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Flutter -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/FirebaseAnalytics/Frameworks
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/GoogleAppMeasurement/Frameworks -include /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\
Files/firebase_auth/firebase_auth-prefix.pch -MMD -MT dependencies -MF
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/Objects-normal/armv7/FLTFirebaseAuthPlugin.d
--serialize-diagnostics
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/Objects-normal/armv7/FLTFirebaseAuthPlugin.dia -c
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m -o
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_auth.build/Objects-normal/armv7/FLTFirebaseAuthPlugin.o
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m:171:40: warning: incompatible pointer to integer conversion assigning to 'BOOL' (aka 'signed char')
from 'id
_Nullable' [-Wint-conversion]
actionCodeSettings.handleCodeInApp = call.arguments[@"handleCodeInApp"];
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m:174:47: warning: incompatible pointer to integer conversion sending 'id _Nullable' to parameter of
type 'BOOL'
(aka 'signed char') [-Wint-conversion]
installIfNotAvailable:call.arguments[@"androidInstallIfNotAvailable"]
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In module 'FirebaseAuth' imported from /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public/Firebase/Firebase.h:26:
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/FirebaseAuth/Firebase/Auth/Source/Public/FIRActionCodeSettings.h:84:39: note: passing argument to parameter 'installIfNotAvailable' here
installIfNotAvailable:(BOOL)installIfNotAvailable
^
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m:522:38: error: no known class method for selector
'credentialWithProviderID:IDToken:rawNonce:accessToken:'
credential = [FIROAuthProvider credentialWithProviderID:provider
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m:531:38: error: no known class method for selector 'credentialWithProviderID:IDToken:rawNonce:'
credential = [FIROAuthProvider credentialWithProviderID:provider
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m:77:1: warning: conflicting return type in implementation of
'application:didReceiveRemoteNotification:fetchCompletionHandler:': 'BOOL' (aka 'signed char') vs 'bool' [-Wmismatched-return-types]
- (bool)application:(UIApplication *)application
^ ~~~~
In module 'Flutter' imported from /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.h:5:
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Flutter/Flutter.framework/Headers/FlutterPlugin.h:91:1: note: previous definition is here
- (BOOL)application:(UIApplication*)application
^ ~~~~
3 warnings and 2 errors generated.
ProcessInfoPlistFile /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_database/firebase_database.framework/Info.plist
/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/firebase_database/firebase_database-Info.plist (in target 'firebase_database' from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
builtin-infoPlistUtility /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\ Files/firebase_database/firebase_database-Info.plist -producttype com.apple.product-type.framework
-expandbuildsettings -format binary -platform iphoneos -o /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_database/firebase_database.framework/Info.plist
CompileC
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/Objects-normal/armv7/FLTFirebaseDatabasePlugin.o
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_database-3.1.3/ios/Classes/FLTFirebaseDatabasePlugin.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target
'firebase_database'
from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
export LANG=en_US.US-ASCII
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target armv7-apple-ios8.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack
-fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -gmodules -fmodules-cache-path=/Users/tonydowney/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400
-fmodules-prune-after=345600 -fbuild-session-file=/Users/tonydowney/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session
-Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -fmodule-name=firebase_database -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers
-Wno-missing-prototypes -Werror=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class
-Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable
-Wunused-value
-Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion
-Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector
-Wdeprecated-implementations -DPOD_CONFIGURATION_RELEASE=1 -DCOCOAPODS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion
-Wcomma
-Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/firebase_database-generated-files.hmap
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/firebase_database-own-target-headers.hmap
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/firebase_database-all-non-framework-target-h
eaders.hmap -ivfsoverlay
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/all-product-headers.yaml -iquote
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/firebase_database-project-headers.hmap
-I/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_database/include -I/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/DerivedSources-normal/armv7
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/DerivedSources/armv7
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/DerivedSources
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_database -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseAuth
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCore -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCoreDiagnostics
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseDatabase -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseInstanceID
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransport
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransportCCTSupport
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Flutter -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/FirebaseAnalytics/Frameworks
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/GoogleAppMeasurement/Frameworks -include /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\
Files/firebase_database/firebase_database-prefix.pch -MMD -MT dependencies -MF
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/Objects-normal/armv7/FLTFirebaseDatabasePlugin
.d --serialize-diagnostics
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/Objects-normal/armv7/FLTFirebaseDatabasePlugin
.dia -c /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_database-3.1.3/ios/Classes/FLTFirebaseDatabasePlugin.m -o
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/Objects-normal/armv7/FLTFirebaseDatabasePlugin
.o
CompileC
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/Objects-normal/arm64/FLTFirebaseDatabasePlugin.o
/Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_database-3.1.3/ios/Classes/FLTFirebaseDatabasePlugin.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target
'firebase_database'
from project 'Pods')
cd /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods
export LANG=en_US.US-ASCII
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios8.0 -fmessage-length=0 -fdiagnostics-show-note-include-stack
-fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -gmodules -fmodules-cache-path=/Users/tonydowney/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400
-fmodules-prune-after=345600 -fbuild-session-file=/Users/tonydowney/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session
-Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -fmodule-name=firebase_database -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers
-Wno-missing-prototypes -Werror=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class
-Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable
-Wunused-value
-Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion
-Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector
-Wdeprecated-implementations -DPOD_CONFIGURATION_RELEASE=1 -DCOCOAPODS=1 -DNS_BLOCK_ASSERTIONS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion
-Wcomma
-Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/firebase_database-generated-files.hmap
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/firebase_database-own-target-headers.hmap
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/firebase_database-all-non-framework-target-h
eaders.hmap -ivfsoverlay
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/all-product-headers.yaml -iquote
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/firebase_database-project-headers.hmap
-I/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_database/include -I/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Headers/Public
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/DerivedSources-normal/arm64
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/DerivedSources/arm64
-I/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/DerivedSources
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/firebase_database -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseAuth
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCore -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseCoreDiagnostics
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseDatabase -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/FirebaseInstanceID
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GTMSessionFetcher -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransport
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleDataTransportCCTSupport
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/GoogleUtilities
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/leveldb-library -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/build/ios/Release-iphoneos/nanopb
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Flutter -F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/FirebaseAnalytics/Frameworks
-F/Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/GoogleAppMeasurement/Frameworks -include /Users/tonydowney/LocalDevelopment/budvue_tablet_v3/ios/Pods/Target\ Support\
Files/firebase_database/firebase_database-prefix.pch -MMD -MT dependencies -MF
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/Objects-normal/arm64/FLTFirebaseDatabasePlugin
.d --serialize-diagnostics
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/Objects-normal/arm64/FLTFirebaseDatabasePlugin
.dia -c /Users/tonydowney/.pub-cache/hosted/pub.dartlang.org/firebase_database-3.1.3/ios/Classes/FLTFirebaseDatabasePlugin.m -o
/Users/tonydowney/Library/Developer/Xcode/DerivedData/Runner-amhljjmibsaemrelqenvkqkgspkz/Build/Intermediates.noindex/Pods.build/Release-iphoneos/firebase_database.build/Objects-normal/arm64/FLTFirebaseDatabasePlugin
.o
[ +191 ms] "flutter ios" took 19,320ms.
Encountered error while building for device.
#0 throwToolExit (package:flutter_tools/src/base/common.dart:14:3)
#1 BuildIOSCommand.runCommand (package:flutter_tools/src/commands/build_ios.dart:93:7)
<asynchronous suspension>
#2 FlutterCommand.verifyThenRunCommand (package:flutter_tools/src/runner/flutter_command.dart:722:18)
#3 _rootRunUnary (dart:async/zone.dart:1192:38)
#4 _CustomZone.runUnary (dart:async/zone.dart:1085:19)
#5 _FutureListener.handleValue (dart:async/future_impl.dart:141:18)
#6 Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:682:45)
#7 Future._propagateToListeners (dart:async/future_impl.dart:711:32)
#8 Future._completeWithValue (dart:async/future_impl.dart:526:5)
#9 Future._asyncComplete.<anonymous closure> (dart:async/future_impl.dart:556:7)
#10 _rootRun (dart:async/zone.dart:1184:13)
#11 _CustomZone.run (dart:async/zone.dart:1077:19)
#12 _CustomZone.runGuarded (dart:async/zone.dart:979:7)
#13 _CustomZone.bindCallbackGuarded.<anonymous closure> (dart:async/zone.dart:1019:23)
#14 _microtaskLoop (dart:async/schedule_microtask.dart:43:21)
#15 _startMicrotaskLoop (dart:async/schedule_microtask.dart:52:5)
#16 _runPendingImmediateCallback (dart:isolate-patch/isolate_patch.dart:118:13)
#17 _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:169:5)
To Reproduce:
pubspec.yaml:
name: firebase_auth_bug
description: firebase_auth_bug
version: 1.0.0
environment:
sdk: ">=2.1.0 <3.0.0"
dependencies:
firebase_core: ^0.4.4+3
firebase_auth: ^0.16.0
firebase_database: ^3.1.3
flutter:
sdk: flutter
main.dart:
import 'package:flutter/material.dart';
void main(){
runApp(Container());
}
Build fails on both flutter channel beta and flutter channel stable.
Did some more testing on this, trying to find the regression.
0.15.2 is the last known working version.
0.15.3 through 0.16.0 all fail.
Using Flutter 1.17.1 and firebase_auth 0.16.0, I see 3 warnings generated:
/Users/anthony/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m:171:40: warning:
incompatible pointer to integer conversion assigning to 'BOOL' (aka 'signed char') from 'id _Nullable' [-Wint-conversion]
actionCodeSettings.handleCodeInApp = call.arguments[@"handleCodeInApp"];
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/anthony/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m:174:47: warning:
incompatible pointer to integer conversion sending 'id _Nullable' to parameter of type 'BOOL' (aka 'signed char') [-Wint-conversion]
installIfNotAvailable:call.arguments[@"androidInstallIfNotAvailable"]
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In module 'FirebaseAuth' imported from /Users/anthony/github/owner1/project1/ios/Pods/Headers/Public/Firebase/Firebase.h:26:
/Users/anthony/github/owner1/project1/ios/Pods/FirebaseAuth/FirebaseAuth/Sources/Public/FIRActionCodeSettings.h:84:37: note: passing
argument to parameter 'installIfNotAvailable' here
installIfNotAvailable:(BOOL)installIfNotAvailable
^
/Users/anthony/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.m:77:1: warning:
conflicting return type in implementation of 'application:didReceiveRemoteNotification:fetchCompletionHandler:': 'BOOL' (aka 'signed
char') vs 'bool' [-Wmismatched-return-types]
- (bool)application:(UIApplication *)application
^ ~~~~
In module 'Flutter' imported from
/Users/anthony/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.0/ios/Classes/FLTFirebaseAuthPlugin.h:5:
/Users/anthony/github/owner1/project1/ios/Flutter/Flutter.framework/Headers/FlutterPlugin.h:91:1: note: previous definition is here
- (BOOL)application:(UIApplication*)application
^ ~~~~
3 warnings generated.
I had the same error and fixed it by running pod update on the iOS folder in my flutter project. I manually added the pods to my pod file and then cleaned and built from Xcode once. Seems to be working now.
I encountered the same error. Flutter 1.17.1
I ran the following:
pod update (in my flutter project's ios folder)flutter pub run build_runner build --delete-conflicting-outputsflutter cleanMy app then successfully build and launched on iOS simulator.
There were a ton of new firebase and Google related things installed with the pod update command. The build / launch process kept failing until I ran flutter pub run build_runner build --delete-conflicting-outputs and then flutter clean before trying to build again.
Installing Firebase 6.25.0 (was 6.12.0)
Installing FirebaseAnalytics 6.5.1 (was 6.1.5 and source changed to `https://cdn.cocoapods.org/` from `trunk`)
Installing FirebaseAuth 6.5.3 (was 6.3.1 and source changed to `https://cdn.cocoapods.org/` from `trunk`)
Installing FirebaseAuthInterop 1.1.0 (was 1.0.0 and source changed to `https://cdn.cocoapods.org/` from `trunk`)
Installing FirebaseCore 6.7.1 (was 6.3.3 and source changed to `https://cdn.cocoapods.org/` from `trunk`)
Installing FirebaseCoreDiagnostics 1.3.0 (was 1.1.1 and source changed to `https://cdn.cocoapods.org/` from `trunk`)
Installing FirebaseCoreDiagnosticsInterop 1.2.0 (was 1.1.0 and source changed to `https://cdn.cocoapods.org/` from `trunk`)
Installing FirebaseInstallations (1.2.0)
Installing GTMSessionFetcher 1.4.0 (was 1.3.0)
Installing GoogleAppMeasurement 6.5.1 (was 6.1.5 and source changed to `https://cdn.cocoapods.org/` from `trunk`)
Installing GoogleDataTransport 6.1.1 (was 3.0.1 and source changed to `https://cdn.cocoapods.org/` from `trunk`)
Installing GoogleDataTransportCCTSupport 3.1.0 (was 1.2.1 and source changed to `https://cdn.cocoapods.org/` from `trunk`)
Installing GoogleUtilities 6.6.0 (was 6.3.1)
Installing PromisesObjC (1.2.8)
Installing nanopb 1.30905.0 (was 0.3.9011 and source changed to `https://cdn.cocoapods.org/` from `trunk`)
Removing FirebaseInstanceID
Generating Pods project
Integrating client project
Pod installation complete! There are 12 dependencies from the Podfile and 27 total pods installed.
Hi @mdrideout, I tried with pod update and, as you said, a ton from Google/Firebase updates... then flutter pub run build_runner build --delete-conflicting-outputs outputs:
Could not find package "build_runner". Did you forget to add a dependency? pub finished with exit code 65
Any idea?
@alsedev You can try adding the dependency in your pubspec.yml file
dev_dependencies:
build_runner:
Could not build Objective-C module 'Firebase'
any solution?
@abdullah4one
finally my solution is :
in first, delete ios directory. *should backup
Update new Flutter like 1.17.5
flutter create -i swift . in project directory.
Hey 👋
Our rework of the firebase_auth plugin as part of the FlutterFire roadmap was published over a week ago with a ton of fixes and new features. Please could you try the new version and see if this is still an issue? If it is then please submit a new up to date GitHub issue.
For help migrating to the new plugins please see the new migration guide: https://firebase.flutter.dev/docs/migration
Most helpful comment
Did some more testing on this, trying to find the regression.
0.15.2 is the last known working version.
0.15.3 through 0.16.0 all fail.