flutter run -d macos fails when arm64 is excluded in Xcode's EXCLUDED_ARCHS in arm64 Mac machines, while Xcode builds succeed
- Dominant language
- Dart
- Stars
- 179k
- Forks
- 31.1k
- PR merge metrics
- PR metrics pending
Description
### Steps to reproduce
1. Create a new Flutter project: (use a arm64 machine)
```sh
flutter create arch_test && cd arch_test
```
2. Open macOS workspace in Xcode:
```sh
open macOS/Runner.xcworkspace
```
3. Configure architecture exclusion:
- Select Runner target → Build Settings
- Find Excluded Architectures (EXCLUDED_ARCHS)
- Add arm64 for Debug configuration
4. Attempt to run via Flutter CLI:
```sh
flutter run -d macOS
```
5. Expected: App builds and runs under Rosetta 2 (x86_64)
Actual: Build fails with destination resolution error
6. Verification: Build directly in Xcode (Product → Run) → Succeeds
```sh
$ flutter run -d macos
Launching lib/main.dart on macOS in debug mode...
2026-02-06 11:53:50.532 xcodebuild[21683:2059272] Writing error result bundle to /var/folders/g4/7pksdyp505n__w33gtvc17g40000gn/T/ResultBundle_2026-06-02_11-53-0050.xcresult
xcodebuild: error: Unable to find a destination matching the provided destination specifier:
{ platform:macOS, arch:arm64 }
Available destinations for the "Runner" scheme:
{ platform:macOS, arch:x86_64, id:00006000-0012305411D2XXXX, name:My Mac }
{ platform:macOS, name:Any Mac }
Error: Build process failed
```
### Actual results
Flutter CLI hardcodes arch:`arm64` destination for Apple Silicon Macs, ignoring the `EXCLUDED_ARCHS` build setting. This prevents running debug mode when projects need to force `x86_64` execution (e.g., for C/Rust libraries without Apple Silicon support). The same configuration works correctly when building directly in Xcode.
Usecase: There are some in-built C and Rust libraries which don’t have support for arm64, so We had to exclude arm64 for Mac.
Now with arm64 in Excluded arch, we are not able to debug mac app but we are able to build via Xcode.
Here are tools versions used for the sample reproducible app.
Flutter SDK: `3.38.9`
macOs : `26.1 (25B78)`
Xcode: `Version 26.0 (17A324)`
The issues persist with macOs 26.2 and Xcode 26.2 (both universal and apple silicon based) and also tried with the x64 arch of Flutter sdk. But none of them resolves this.
As I remember it worked when Xcode 16.4 was set as Command Line Tool.
### Logs
Logs
flutter run -d macos --verbose > flutter_run_verbose.log 2>&1
```console
[ +52 ms] executing: sysctl hw.optional.arm64
[ +7 ms] Exit code 0 from: sysctl hw.optional.arm64
[ ] hw.optional.arm64: 1
[ +5 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update.
[ ] Artifact Instance of 'GradleWrapper' 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.
[ +1 ms] Artifact Instance of 'LegacyCanvasKitRemover' 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.
[ ] 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 'IosUsbArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'PubDependencies' is not required, skipping update.
[ ] executing: [/Users/km/fvm/versions/3.38.9/] git -c log.showSignature=false log HEAD -n 1 --pretty=format:%ad --date=iso
[ +118 ms] Exit code 0 from: git -c log.showSignature=false log HEAD -n 1 --pretty=format:%ad --date=iso
[ ] 2026-01-28 13:43:12 -0800
[ +24 ms] executing: sysctl hw.optional.arm64
[ +3 ms] Exit code 0 from: sysctl hw.optional.arm64
[ ] hw.optional.arm64: 1
[ ] executing: /usr/bin/arch -arm64e xcrun xcodebuild -version
[ +249 ms] Exit code 0 from: /usr/bin/arch -arm64e xcrun xcodebuild -version
[ ] Xcode 26.0
Build version 17A324
[ ] executing: /usr/bin/arch -arm64e xcrun xcdevice list --timeout 5
[ +2 ms] 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.
[ ] Artifact Instance of 'FlutterEngineStamp' is not required, skipping update.
[ ] Artifact Instance of 'LegacyCanvasKitRemover' is not required, skipping update.
[ +2 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.
[ +56 ms] 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.
[ ] Artifact Instance of 'FlutterEngineStamp' is not required, skipping update.
[ ] Artifact Instance of 'LegacyCanvasKitRemover' is not required, skipping update.
[ ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[ +1 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.
[ +19 ms] executing: [/Users/km/Projects/flutter_application/] /Users/km/fvm/versions/3.38.9/bin/cache/dart-sdk/bin/dart pub --suppress-analytics --directory . get --example
Resolving dependencies...
Downloading packages...
characters 1.4.0 (1.4.1 available)
matcher 0.12.17 (0.12.18 available)
material_color_utilities 0.11.1 (0.13.0 available)
meta 1.17.0 (1.18.1 available)
test_api 0.7.7 (0.7.9 available)
Got dependencies!
5 packages have newer versions incompatible with dependency constraints.
Try `flutter pub outdated` for more information.
[ +161 ms] Skipping generating web_plugin_registrant.dart because it is up-to-date.
[ +19 ms] Generating /Users/km/Projects/flutter_application/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java
[ +2 ms] Skipping generating GeneratedPluginRegistrant.java because it is up-to-date.
[ +1 ms] Skipping generating generated_plugin_registrant.h because it is up-to-date.
[ ] Skipping generating generated_plugin_registrant.cc because it is up-to-date.
[ +2 ms] Skipping generating generated_plugins.cmake because it is up-to-date.
[ ] Skipping generating generated_plugin_registrant.h because it is up-to-date.
[ ] Skipping generating generated_plugin_registrant.cc because it is up-to-date.
[ +1 ms] Skipping generating generated_plugins.cmake because it is up-to-date.
[ ] Skipping generating GeneratedPluginRegistrant.h because it is up-to-date.
[ ] Skipping generating GeneratedPluginRegistrant.m because it is up-to-date.
[ ] Skipping generating GeneratedPluginRegistrant.swift because it is up-to-date.
[ +43 ms] executing: sw_vers -productName
[ +26 ms] Exit code 0 from: sw_vers -productName
[ ] macOS
[ ] executing: sw_vers -productVersion
[ +13 ms] Exit code 0 from: sw_vers -productVersion
[ ] 26.1
[ ] executing: sw_vers -buildVersion
[ +11 ms] Exit code 0 from: sw_vers -buildVersion
[ ] 25B78
[ ] executing: uname -m
[ +4 ms] Exit code 0 from: uname -m
[ ] arm64
[ +46 ms] Initializing file store
[ +6 ms] Skipping target: gen_localizations
[ +1 ms] gen_dart_plugin_registrant: Starting due to {InvalidatedReasonKind.inputChanged: The following inputs have updated contents: /Users/km/Projects/flutter_application/.dart_tool/package_config.json}
[ +22 ms] gen_dart_plugin_registrant: Complete
[ +1 ms] Skipping target: _composite
[ ] complete
[ +2 ms] Launching lib/main.dart on macOS in debug mode...
[ +1 ms] /Users/km/fvm/versions/3.38.9/bin/cache/dart-sdk/bin/dartaotruntime /Users/km/fvm/versions/3.38.9/bin/cache/dart-sdk/bin/snapshots/frontend_server_aot.dart.snapshot --sdk-root /Users/km/fvm/versions/3.38.9/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --target=flutter --experimental-emit-debug-metadata -DFLUTTER_VERSION=3.38.9 -DFLUTTER_CHANNEL=stable -DFLUTTER_GIT_URL=https://github.com/flutter/flutter.git -DFLUTTER_FRAMEWORK_REVISION=67323de285 -DFLUTTER_ENGINE_REVISION=587c18f873 -DFLUTTER_DART_VERSION=3.10.8 --output-dill /var/folders/g4/7pksdyp505n__w33gtvc17g40000gn/T/flutter_tools.8Iy7er/flutter_tool.E8OiKN/app.dill --packages /Users/km/Projects/flutter_application/.dart_tool/package_config.json -Ddart.vm.profile=false -Ddart.vm.product=false --enable-asserts --track-widget-creation --filesystem-scheme org-dartlang-root --initialize-from-dill build/f537d389bd7fe17e116f8b847863fcdd.cache.dill.track.dill --verbosity=error --enable-experiment=alternative-invalidation-strategy
[ +11 ms] Podfile not found, skipping global platform macOS version migration.
[ +10 ms] executing: /usr/bin/plutil -convert xml1 -o - /Users/km/Projects/flutter_application/macos/Runner/Info.plist
[ +10 ms] Exit code 0 from: /usr/bin/plutil -convert xml1 -o - /Users/km/Projects/flutter_application/macos/Runner/Info.plist
[ ]
CFBundleDevelopmentRegion
$(DEVELOPMENT_LANGUAGE)
CFBundleExecutable
$(EXECUTABLE_NAME)
CFBundleIconFile
CFBundleIdentifier
$(PRODUCT_BUNDLE_IDENTIFIER)
CFBundleInfoDictionaryVersion
6.0
CFBundleName
$(PRODUCT_NAME)
CFBundlePackageType
APPL
CFBundleShortVersionString
$(FLUTTER_BUILD_NAME)
CFBundleVersion
$(FLUTTER_BUILD_NUMBER)
LSMinimumSystemVersion
$(MACOSX_DEPLOYMENT_TARGET)
NSHumanReadableCopyright
$(PRODUCT_COPYRIGHT)
NSMainNibFile
MainMenu
NSPrincipalClass
NSApplication
[ +34 ms] The Swift Package Manager feature is off. Skipping the migration that adds Swift Package Manager integration...
[ +3 ms] executing: [/Users/km/Projects/flutter_application/macos/] /usr/bin/arch -arm64e xcrun xcodebuild -list -project Runner.xcodeproj
[ +11 ms] <- compile package:flutter_application/main.dart
[+1435 ms] Command line invocation:
/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -list -project Runner.xcodeproj
Information about project "Runner":
Targets:
Runner
RunnerTests
Flutter Assemble
Build Configurations:
Debug
Release
Profile
If no build configuration is specified and -scheme is not passed then "Release" is used.
Schemes:
Flutter Assemble
Runner
[ +2 ms] executing: [/Users/km/Projects/flutter_application/macos/] /usr/bin/arch -arm64e xcrun xcodebuild -list
[ +815 ms] Command line invocation:
/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -list
Information about project "Runner":
Targets:
Runner
RunnerTests
Flutter Assemble
Build Configurations:
Debug
Release
Profile
If no build configuration is specified and -scheme is not passed then "Release" is used.
Schemes:
Flutter Assemble
Runner
[ +2 ms] executing: [/Users/km/Projects/flutter_application/macos/Runner.xcodeproj/] /usr/bin/arch -arm64e xcrun xcodebuild -project /Users/km/Projects/flutter_application/macos/Runner.xcodeproj -scheme Runner -configuration Debug -destination generic/platform=macOS -showBuildSettings BUILD_DIR=/Users/km/Projects/flutter_application/build/macos
[ ] executing: [/Users/km/Projects/flutter_application/macos/Runner.xcodeproj/] /usr/bin/arch -arm64e xcrun xcodebuild -project /Users/km/Projects/flutter_application/macos/Runner.xcodeproj -scheme Runner -configuration Debug -destination generic/platform=macOS -showBuildSettings BUILD_DIR=/Users/km/Projects/flutter_application/build/macos
[+1102 ms] Command line invocation:
/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -project /Users/km/Projects/flutter_application/macos/Runner.xcodeproj -scheme Runner -configuration Debug -destination generic/platform=macOS -showBuildSettings BUILD_DIR=/Users/km/Projects/flutter_application/build/macos
Build settings from command line:
BUILD_DIR = /Users/km/Projects/flutter_application/build/macos
Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = YES
AGGREGATE_TRACKED_DOMAINS = YES
ALLOW_BUILD_REQUEST_OVERRIDES = NO
ALLOW_TARGET_PLATFORM_SPECIALIZATION = NO
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = km
ALTERNATIVE_DISTRIBUTION_WEB = NO
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
ANDROID_DEPLOYMENT_TARGET = 21.0
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
APPLY_RULES_IN_COPY_HEADERS = NO
APP_SHORTCUTS_ENABLE_FLEXIBLE_MATCHING = YES
ARCHS = x86_64
ARCHS_STANDARD = arm64 x86_64
ARCHS_STANDARD_32_64_BIT = arm64 x86_64 i386
ARCHS_STANDARD_32_BIT = i386
ARCHS_STANDARD_64_BIT = arm64 x86_64
ARCHS_STANDARD_INCLUDING_64_BIT = arm64 x86_64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES
AUTOMATICALLY_MERGE_DEPENDENCIES = NO
AUTOMATION_APPLE_EVENTS = NO
AVAILABLE_PLATFORMS = android appletvos appletvsimulator driverkit iphoneos iphonesimulator macosx qnx watchos watchsimulator webassembly xros xrsimulator
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/km/Projects/flutter_application/build/macos
BUILD_LIBRARY_FOR_DISTRIBUTION = NO
BUILD_ROOT = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Products
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/km/Projects/flutter_application/build/macos/Debug
BUNDLE_CONTENTS_FOLDER_PATH = Contents/
BUNDLE_CONTENTS_FOLDER_PATH_deep = Contents/
BUNDLE_EXECUTABLE_FOLDER_NAME_deep = MacOS
BUNDLE_EXECUTABLE_FOLDER_PATH = Contents/MacOS
BUNDLE_EXTENSIONS_FOLDER_PATH = Contents/Extensions
BUNDLE_FORMAT = deep
BUNDLE_FRAMEWORKS_FOLDER_PATH = Contents/Frameworks
BUNDLE_PLUGINS_FOLDER_PATH = Contents/PlugIns
BUNDLE_PRIVATE_HEADERS_FOLDER_PATH = Contents/PrivateHeaders
BUNDLE_PUBLIC_HEADERS_FOLDER_PATH = Contents/Headers
CACHE_ROOT = /var/folders/g4/7pksdyp505n__w33gtvc17g40000gn/C/com.apple.DeveloperTools/26.0-17A324/Xcode
CCHROOT = /var/folders/g4/7pksdyp505n__w33gtvc17g40000gn/C/com.apple.DeveloperTools/26.0-17A324/Xcode
CHMOD = /bin/chmod
CHOWN = /usr/sbin/chown
CLANG_ANALYZER_NONNULL = YES
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE
CLANG_CACHE_FINE_GRAINED_OUTPUTS = YES
CLANG_CXX_LANGUAGE_STANDARD = gnu++14
CLANG_CXX_LIBRARY = libc++
CLANG_ENABLE_EXPLICIT_MODULES = YES
CLANG_ENABLE_MODULES = YES
CLANG_ENABLE_OBJC_ARC = YES
CLANG_MODULES_BUILD_SESSION_FILE = /Users/km/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = 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_DOCUMENTATION_COMMENTS = YES
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_REPEATED_USE_OF_WEAK = YES
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
CLANG_WARN_PRAGMA_PACK = YES
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
CLANG_WARN_STRICT_PROTOTYPES = YES
CLANG_WARN_SUSPICIOUS_MOVE = YES
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE
CLANG_WARN_UNREACHABLE_CODE = YES
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
CLASS_FILE_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
COCOAPODS_PARALLEL_CODE_SIGN = true
CODESIGNING_FOLDER_PATH = /Users/km/Projects/flutter_application/build/macos/Debug/flutter_application.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements
CODE_SIGN_IDENTITY = -
CODE_SIGN_IDENTITY_NO = Apple Development
CODE_SIGN_IDENTITY_YES = -
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
CODE_SIGN_STYLE = Automatic
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = YES
COMPILATION_CACHE_CAS_PATH = /Users/km/Library/Developer/Xcode/DerivedData/CompilationCache.noindex
COMPILATION_CACHE_KEEP_CAS_DIRECTORY = YES
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/CompositeSDKs
COMPRESS_PNG_FILES = NO
CONFIGURATION = Debug
CONFIGURATION_BUILD_DIR = /Users/km/Projects/flutter_application/build/macos/Debug
CONFIGURATION_TEMP_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug
CONTENTS_FOLDER_PATH = flutter_application.app/Contents
CONTENTS_FOLDER_PATH_SHALLOW_BUNDLE_NO = flutter_application.app/Contents
CONTENTS_FOLDER_PATH_SHALLOW_BUNDLE_YES = flutter_application.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = undefined_arch
CURRENT_VARIANT = normal
DART_DEFINES = RkxVVFRFUl9WRVJTSU9OPTMuMzguOQ==,RkxVVFRFUl9DSEFOTkVMPXN0YWJsZQ==,RkxVVFRFUl9HSVRfVVJMPWh0dHBzOi8vZ2l0aHViLmNvbS9mbHV0dGVyL2ZsdXR0ZXIuZ2l0,RkxVVFRFUl9GUkFNRVdPUktfUkVWSVNJT049NjczMjNkZTI4NQ==,RkxVVFRFUl9FTkdJTkVfUkVWSVNJT049NTg3YzE4Zjg3Mw==,RkxVVFRFUl9EQVJUX1ZFUlNJT049My4xMC44
DART_OBFUSCATION = false
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf
DEBUG_INFORMATION_VERSION = compiler-default
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_SETTING_NAME = MACOSX_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 10.13 10.14 10.15 11.0 11.1 11.2 11.3 11.4 11.5 12.0 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 14.0 14.1 14.2 14.3 14.4 14.5 14.6 15.0 15.1 15.2 15.3 15.4 15.5 15.6 26.0
DERIVED_FILES_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/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
DIAGNOSE_MISSING_TARGET_DEPENDENCIES = YES
DIFF = /usr/bin/diff
DOCUMENTATION_FOLDER_PATH = flutter_application.app/Contents/Resources/en.lproj/Documentation
DONT_GENERATE_INFOPLIST_FILE = NO
DRIVERKIT_DEPLOYMENT_TARGET = 25.0
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = flutter_application.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/km/Projects/flutter_application/build/macos/Debug
DYNAMIC_LIBRARY_EXTENSION = dylib
EAGER_COMPILATION_ALLOW_SCRIPTS = NO
EAGER_LINKING = NO
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBEDDED_PROFILE_NAME = embedded.provisionprofile
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_APP_SANDBOX = NO
ENABLE_CODE_COVERAGE = YES
ENABLE_CPLUSPLUS_BOUNDS_SAFE_BUFFERS = NO
ENABLE_C_BOUNDS_SAFETY = NO
ENABLE_DEBUG_DYLIB = YES
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_DEFAULT_SEARCH_PATHS = YES
ENABLE_ENHANCED_SECURITY = NO
ENABLE_HARDENED_RUNTIME = NO
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_INCOMING_NETWORK_CONNECTIONS = NO
ENABLE_ON_DEMAND_RESOURCES = NO
ENABLE_OUTGOING_NETWORK_CONNECTIONS = NO
ENABLE_POINTER_AUTHENTICATION = NO
ENABLE_RESOURCE_ACCESS_AUDIO_INPUT = NO
ENABLE_RESOURCE_ACCESS_BLUETOOTH = NO
ENABLE_RESOURCE_ACCESS_CALENDARS = NO
ENABLE_RESOURCE_ACCESS_CAMERA = NO
ENABLE_RESOURCE_ACCESS_CONTACTS = NO
ENABLE_RESOURCE_ACCESS_LOCATION = NO
ENABLE_RESOURCE_ACCESS_PHOTO_LIBRARY = NO
ENABLE_RESOURCE_ACCESS_PRINTING = NO
ENABLE_RESOURCE_ACCESS_USB = NO
ENABLE_SDK_IMPORTS = NO
ENABLE_SECURITY_COMPILER_WARNINGS = NO
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = YES
ENABLE_TESTING_SEARCH_PATHS = NO
ENABLE_USER_SCRIPT_SANDBOXING = NO
ENFORCE_VALID_ARCHS = YES
ENTITLEMENTS_ALLOWED = YES
ENTITLEMENTS_DESTINATION = Signature
ENTITLEMENTS_REQUIRED = NO
EXCLUDED_ARCHS = arm64
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets *.icon (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = flutter_application.app/Contents/Executables
EXECUTABLE_FOLDER_PATH = flutter_application.app/Contents/MacOS
EXECUTABLE_FOLDER_PATH_SHALLOW_BUNDLE_NO = flutter_application.app/Contents/MacOS
EXECUTABLE_FOLDER_PATH_SHALLOW_BUNDLE_YES = flutter_application.app/Contents
EXECUTABLE_NAME = flutter_application
EXECUTABLE_PATH = flutter_application.app/Contents/MacOS/flutter_application
EXTENSIONS_FOLDER_PATH = flutter_application.app/Contents/Extensions
FILE_LIST = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/km/Projects/flutter_application
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_NAME = 0.1.0
FLUTTER_BUILD_NUMBER = 0.1.0
FLUTTER_ROOT = /Users/km/fvm/versions/3.38.9
FLUTTER_TARGET = /Users/km/Projects/flutter_application/lib/main.dart
FRAMEWORKS_FOLDER_PATH = flutter_application.app/Contents/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = /Users/km/Projects/flutter_application/build/macos/Debug
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = flutter_application.app
FUSE_BUILD_PHASES = YES
FUSE_BUILD_SCRIPT_PHASES = NO
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu11
GCC_DYNAMIC_NO_PIC = NO
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_OPTIMIZATION_LEVEL = 0
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1
GCC_SYMBOLS_PRIVATE_EXTERN = NO
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_SHADOW = YES
GCC_WARN_STRICT_SELECTOR_MATCH = YES
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATED_MODULEMAP_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/GeneratedModuleMaps
GENERATE_INFOPLIST_FILE = NO
GENERATE_INTERMEDIATE_TEXT_BASED_STUBS = YES
GENERATE_PKGINFO_FILE = YES
GENERATE_PRELINK_OBJECT_FILE = NO
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_FRAMEWORK_ENTRIES_FOR_TARGETS_NOT_BEING_BUILT = 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/km/Projects/flutter_application/build/macos/Debug/include
HOME = /Users/km
HOST_ARCH = arm64
HOST_PLATFORM = macosx
ICONV = /usr/bin/iconv
IMPLICIT_DEPENDENCY_DOMAIN = default
INFOPLIST_ENABLE_CFBUNDLEICONS_MERGE = YES
INFOPLIST_EXPAND_BUILD_SETTINGS = YES
INFOPLIST_FILE = Runner/Info.plist
INFOPLIST_OUTPUT_FORMAT = same-as-input
INFOPLIST_PATH = flutter_application.app/Contents/Info.plist
INFOPLIST_PREPROCESS = NO
INFOSTRINGS_PATH = flutter_application.app/Contents/Resources/en.lproj/InfoPlist.strings
INLINE_PRIVATE_FRAMEWORKS = NO
INSTALLAPI_IGNORE_SKIP_INSTALL = YES
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 = km
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IOS_UNZIPPERED_TWIN_PREFIX_PATH = /System/iOSSupport
IPHONEOS_DEPLOYMENT_TARGET = 26.0
IS_MACCATALYST = NO
IS_UNOPTIMIZED_BUILD = YES
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 = flutter_application.app/Contents/Resources/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_CFLAGS_CLASSIC = -DKASAN=1 -DKASAN_CLASSIC=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow
KASAN_CFLAGS_TBI = -DKASAN=1 -DKASAN_TBI=1 -fsanitize=kernel-hwaddress -mllvm -hwasan-recover=0 -mllvm -hwasan-instrument-atomics=0 -mllvm -hwasan-instrument-stack=1 -mllvm -hwasan-generate-tags-with-calls=1 -mllvm -hwasan-instrument-with-calls=1 -mllvm -hwasan-use-short-granules=0 -mllvm -hwasan-memory-access-callback-prefix=__asan_
KASAN_DEFAULT_CFLAGS = -DKASAN=1 -DKASAN_CLASSIC=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/undefined_arch/flutter_application_dependency_info.dat
LD_EXPORT_SYMBOLS = YES
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/flutter_application-LinkMap-normal-undefined_arch.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = @executable_path/../Frameworks
LD_RUNPATH_SEARCH_PATHS_YES = @loader_path/../Frameworks
LD_SHARED_CACHE_ELIGIBLE = Automatic
LD_WARN_DUPLICATE_LIBRARIES = NO
LD_WARN_UNUSED_DYLIBS = NO
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/km/Projects/flutter_application/build/macos/Debug
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_x86_64 = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/flutter_application.LinkFileList
LINK_OBJC_RUNTIME = YES
LINK_WITH_STANDARD_LIBRARIES = YES
LLVM_TARGET_TRIPLE_OS_VERSION = macos10.15
LLVM_TARGET_TRIPLE_OS_VERSION_NO = macos10.15
LLVM_TARGET_TRIPLE_OS_VERSION_YES = macos26.0
LLVM_TARGET_TRIPLE_VENDOR = apple
LM_AUX_CONST_METADATA_LIST_PATH_normal_x86_64 = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/flutter_application.SwiftConstValuesFileList
LOCALIZATION_EXPORT_SUPPORTED = YES
LOCALIZATION_PREFERS_STRING_CATALOGS = NO
LOCALIZED_RESOURCES_FOLDER_PATH = flutter_application.app/Contents/Resources/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 = /Users/km/Projects/flutter_application/macos
LOCSYMROOT = /Users/km/Projects/flutter_application/macos
MACH_O_TYPE = mh_execute
MACOSX_DEPLOYMENT_TARGET = 10.15
MAC_OS_X_PRODUCT_BUILD_VERSION = 25B78
MAC_OS_X_VERSION_ACTUAL = 260100
MAC_OS_X_VERSION_MAJOR = 260000
MAC_OS_X_VERSION_MINOR = 260100
MAKE_MERGEABLE = NO
MERGEABLE_LIBRARY = NO
MERGED_BINARY_TYPE = none
MERGE_LINKED_LIBRARIES = NO
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/km/Projects/flutter_application/build/macos/Debug/flutter_application.app/Contents/Resources
MODULES_FOLDER_PATH = flutter_application.app/Contents/Modules
MODULE_CACHE_DIR = /Users/km/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = YES
NATIVE_ARCH = arm64
NATIVE_ARCH_32_BIT = arm
NATIVE_ARCH_64_BIT = arm64
NATIVE_ARCH_ACTUAL = arm64
NO_COMMON = YES
OBJECT_FILE_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal
OBJROOT = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex
ONLY_ACTIVE_ARCH = NO
OS = MACOS
OSAC = /usr/bin/osacompile
PACKAGE_CONFIG = /Users/km/Projects/flutter_application/.dart_tool/package_config.json
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Users/km/.antigravity/antigravity/bin:/opt/homebrew/opt/sqlite/bin:/Users/km/.bun/bin:/Users/km/.antigravity/extensions/vadimcn.vscode-lldb-1.12.1/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Users/km/.cargo/bin:/Users/km/.pub-cache/bin:/Users/km/go/bin:/Users/km/fvm/default/bin:/Users/km/fvm/default/bin/cache/dart-sdk/bin:/Users/km/Library/Android/sdk/emulator:/Users/km/Library/Android/sdk/platform-tools
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 = flutter_application.app/Contents/pbdevelopment.plist
PER_ARCH_MODULE_FILE_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/undefined_arch
PER_ARCH_OBJECT_FILE_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/undefined_arch
PER_VARIANT_OBJECT_FILE_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal
PKGINFO_FILE_PATH = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/PkgInfo
PKGINFO_PATH = flutter_application.app/Contents/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform
PLATFORM_DISPLAY_NAME = macOS
PLATFORM_FAMILY_NAME = macOS
PLATFORM_NAME = macosx
PLATFORM_PREFERRED_ARCH = x86_64
PLATFORM_PRODUCT_BUILD_VERSION = 25A352
PLATFORM_REQUIRES_SWIFT_AUTOLINK_EXTRACT = NO
PLATFORM_REQUIRES_SWIFT_MODULEWRAP = NO
PLIST_FILE_OUTPUT_FORMAT = same-as-input
PLUGINS_FOLDER_PATH = flutter_application.app/Contents/PlugIns
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/PrefixHeaders
PRIVATE_HEADERS_FOLDER_PATH = flutter_application.app/Contents/PrivateHeaders
PROCESSED_INFOPLIST_PATH = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/undefined_arch/Processed-Info.plist
PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterApplication
PRODUCT_BUNDLE_PACKAGE_TYPE = APPL
PRODUCT_COPYRIGHT = Copyright © 2026 com.example. All rights reserved.
PRODUCT_MODULE_NAME = flutter_application
PRODUCT_NAME = flutter_application
PRODUCT_SETTINGS_PATH = /Users/km/Projects/flutter_application/macos/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/DerivedSources
PROJECT_DIR = /Users/km/Projects/flutter_application/macos
PROJECT_FILE_PATH = /Users/km/Projects/flutter_application/macos/Runner.xcodeproj
PROJECT_GUID = 18c1723432283e0cc55f10a6dcfd9e02
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build
PROJECT_TEMP_ROOT = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex
PROVISIONING_PROFILE_REQUIRED = NO
PROVISIONING_PROFILE_REQUIRED_YES_YES = YES
PROVISIONING_PROFILE_SUPPORTED = YES
PUBLIC_HEADERS_FOLDER_PATH = flutter_application.app/Contents/Headers
RECOMMENDED_MACOSX_DEPLOYMENT_TARGET = 11.0
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_STATIC_EXECUTABLES_FROM_EMBEDDED_BUNDLES = YES
REMOVE_SVN_FROM_RESOURCES = YES
RESCHEDULE_INDEPENDENT_HEADERS_PHASES = YES
REZ_COLLECTOR_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/ResourceManagerResources/Objects
REZ_SEARCH_PATHS = /Users/km/Projects/flutter_application/build/macos/Debug
RUNTIME_EXCEPTION_ALLOW_DYLD_ENVIRONMENT_VARIABLES = NO
RUNTIME_EXCEPTION_ALLOW_JIT = NO
RUNTIME_EXCEPTION_ALLOW_UNSIGNED_EXECUTABLE_MEMORY = NO
RUNTIME_EXCEPTION_DEBUGGING_TOOL = NO
RUNTIME_EXCEPTION_DISABLE_EXECUTABLE_PAGE_PROTECTION = NO
RUNTIME_EXCEPTION_DISABLE_LIBRARY_VALIDATION = NO
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = flutter_application.app/Contents/Resources/Scripts
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk
SDK_DIR_macosx = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk
SDK_DIR_macosx26_0 = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk
SDK_NAME = macosx26.0
SDK_NAMES = macosx26.0
SDK_PRODUCT_BUILD_VERSION = 25A352
SDK_STAT_CACHE_DIR = /Users/km/Library/Developer/Xcode/DerivedData
SDK_STAT_CACHE_ENABLE = YES
SDK_STAT_CACHE_PATH = /Users/km/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/macosx26.0-25A352-28806144b0707e398aac92880fa50324.sdkstatcache
SDK_VERSION = 26.0
SDK_VERSION_ACTUAL = 260000
SDK_VERSION_MAJOR = 260000
SDK_VERSION_MINOR = 260000
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 = NO
SHALLOW_BUNDLE_PLATFORM = NO
SHALLOW_BUNDLE_TRIPLE = macos
SHALLOW_BUNDLE_ios_macabi = NO
SHALLOW_BUNDLE_macos = NO
SHARED_DERIVED_FILE_DIR = /Users/km/Projects/flutter_application/build/macos/Debug/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = flutter_application.app/Contents/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/PrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = flutter_application.app/Contents/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/km/Projects/flutter_application/macos
SRCROOT = /Users/km/Projects/flutter_application/macos
STRINGSDATA_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/undefined_arch
STRINGSDATA_ROOT = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build
STRINGS_FILE_INFOPLIST_RENAME = YES
STRINGS_FILE_OUTPUT_ENCODING = UTF-16
STRING_CATALOG_GENERATE_SYMBOLS = NO
STRIP_BITCODE_FROM_COPIED_FILES = NO
STRIP_INSTALLED_PRODUCT = NO
STRIP_PNG_TEXT = NO
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_PLATFORMS = macosx
SUPPORTS_MACCATALYST = NO
SUPPORTS_ON_DEMAND_RESOURCES = NO
SUPPORTS_TEXT_BASED_API = NO
SUPPRESS_WARNINGS = NO
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG
SWIFT_EMIT_CONST_VALUE_PROTOCOLS = AppIntent EntityQuery AppEntity TransientEntity AppEnum AppShortcutProviding AppShortcutsProvider AnyResolverProviding AppIntentsPackage DynamicOptionsProvider _IntentValueRepresentable _AssistantIntentsProvider _GenerativeFunctionExtractable IntentValueQuery Resolver AppExtension ExtensionPointDefining
SWIFT_EMIT_LOC_STRINGS = NO
SWIFT_ENABLE_EXPLICIT_MODULES = YES
SWIFT_OPTIMIZATION_LEVEL = -Onone
SWIFT_PLATFORM_TARGET_PREFIX = macos
SWIFT_RESPONSE_FILE_PATH_normal_x86_64 = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build/Objects-normal/x86_64/flutter_application.SwiftFileList
SWIFT_VERSION = 5.0
SYMROOT = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/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_EXTENSIONS_FOLDER_PATH = flutter_application.app/Contents/Library/SystemExtensions
SYSTEM_EXTENSIONS_FOLDER_PATH_SHALLOW_BUNDLE_NO = flutter_application.app/Contents/Library/SystemExtensions
SYSTEM_EXTENSIONS_FOLDER_PATH_SHALLOW_BUNDLE_YES = flutter_application.app/Contents/SystemExtensions
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_DEMANGLE = YES
TAPI_ENABLE_PROJECT_HEADERS = NO
TAPI_LANGUAGE = objective-c
TAPI_LANGUAGE_STANDARD = compiler-default
TAPI_USE_SRCROOT = YES
TAPI_VERIFY_MODE = Pedantic
TARGETNAME = Runner
TARGET_BUILD_DIR = /Users/km/Projects/flutter_application/build/macos/Debug
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build
TEMP_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build
TEMP_FILES_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build
TEMP_FILE_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/Runner.build/Debug/Runner.build
TEMP_ROOT = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex
TEMP_SANDBOX_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/TemporaryTaskSandboxes
TEST_FRAMEWORK_SEARCH_PATHS = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks
TEST_LIBRARY_SEARCH_PATHS = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib
TOOLCHAINS = com.apple.dt.toolchain.XcodeDefault
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TRACK_WIDGET_CREATION = true
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
TREAT_MISSING_SCRIPT_PHASE_OUTPUTS_AS_ERRORS = NO
TREE_SHAKE_ICONS = false
TVOS_DEPLOYMENT_TARGET = 26.0
UID = 501
UNINSTALLED_PRODUCTS_DIR = /Users/km/Library/Developer/Xcode/DerivedData/Runner-aiwesnpaydpoxvcyvecyvnsrsceu/Build/Intermediates.noindex/UninstalledProducts
UNLOCALIZED_RESOURCES_FOLDER_PATH = flutter_application.app/Contents/Resources
UNLOCALIZED_RESOURCES_FOLDER_PATH_SHALLOW_BUNDLE_NO = flutter_application.app/Contents/Resources
UNLOCALIZED_RESOURCES_FOLDER_PATH_SHALLOW_BUNDLE_YES = flutter_application.app/Contents
UNSTRIPPED_PRODUCT = NO
USER = km
USER_APPS_DIR = /Users/km/Applications
USER_LIBRARY_DIR = /Users/km/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
VALIDATE_DEVELOPMENT_ASSET_PATHS = YES_ERROR
VALIDATE_PRODUCT = NO
VALID_ARCHS = arm64 arm64e i386 x86_64
VERBOSE_PBXCP = NO
VERSIONPLIST_PATH = flutter_application.app/Contents/version.plist
VERSION_INFO_BUILDER = km
VERSION_INFO_FILE = flutter_application_vers.c
VERSION_INFO_STRING = "@(#)PROGRAM:flutter_application PROJECT:Runner-"
WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings
WATCHOS_DEPLOYMENT_TARGET = 26.0
WORKSPACE_DIR = /Users/km/Projects/flutter_application/macos/Runner.xcodeproj
WRAPPER_EXTENSION = app
WRAPPER_NAME = flutter_application.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 = 17A324
XCODE_VERSION_ACTUAL = 2600
XCODE_VERSION_MAJOR = 2600
XCODE_VERSION_MINOR = 2600
XPCSERVICES_FOLDER_PATH = flutter_application.app/Contents/XPCServices
XROS_DEPLOYMENT_TARGET = 26.0
YACC = yacc
_BOOL_ = NO
_BOOL_NO = NO
_BOOL_YES = YES
_DEVELOPMENT_TEAM_IS_EMPTY = YES
_DISCOVER_COMMAND_LINE_LINKER_INPUTS = YES
_DISCOVER_COMMAND_LINE_LINKER_INPUTS_INCLUDE_WL = YES
_IS_EMPTY_ = YES
_LD_MULTIARCH = YES
_MACOSX_DEPLOYMENT_TARGET_IS_EMPTY = NO
_WRAPPER_CONTENTS_DIR = /Contents
_WRAPPER_CONTENTS_DIR_SHALLOW_BUNDLE_NO = /Contents
_WRAPPER_PARENT_PATH = /..
_WRAPPER_PARENT_PATH_SHALLOW_BUNDLE_NO = /..
_WRAPPER_RESOURCES_DIR = /Resources
_WRAPPER_RESOURCES_DIR_SHALLOW_BUNDLE_NO = /Resources
__DIAGNOSE_DEPRECATED_ARCHS = YES
__IS_NOT_MACOS = NO
__IS_NOT_MACOS_macosx = NO
__IS_NOT_SIMULATOR = YES
__IS_NOT_SIMULATOR_simulator = NO
arch = undefined_arch
variant = normal
[ +32 ms] Building macOS application...
[ ] executing: /usr/bin/env xcrun xcodebuild -workspace /Users/km/Projects/flutter_application/macos/Runner.xcworkspace -configuration Debug -scheme Runner -derivedDataPath /Users/km/Projects/flutter_application/build/macos -destination platform=macOS,arch=arm64 OBJROOT=/Users/km/Projects/flutter_application/build/macos/Build/Intermediates.noindex SYMROOT=/Users/km/Projects/flutter_application/build/macos/Build/Products VERBOSE_SCRIPT_LOGGING=YES COMPILER_INDEX_STORE_ENABLE=NO
[ +513 ms] Command line invocation:
[ ] /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -workspace /Users/km/Projects/flutter_application/macos/Runner.xcworkspace -configuration Debug -scheme Runner -derivedDataPath /Users/km/Projects/flutter_application/build/macos -destination platform=macOS,arch=arm64 OBJROOT=/Users/km/Projects/flutter_application/build/macos/Build/Intermediates.noindex SYMROOT=/Users/km/Projects/flutter_application/build/macos/Build/Products VERBOSE_SCRIPT_LOGGING=YES COMPILER_INDEX_STORE_ENABLE=NO
[ ] Build settings from command line:
[ ] COMPILER_INDEX_STORE_ENABLE = NO
[ ] OBJROOT = /Users/km/Projects/flutter_application/build/macos/Build/Intermediates.noindex
[ ] SYMROOT = /Users/km/Projects/flutter_application/build/macos/Build/Products
[ ] VERBOSE_SCRIPT_LOGGING = YES
[ +297 ms] 2026-02-06 13:59:35.961 xcodebuild[60686:2376538] Writing error result bundle to /var/folders/g4/7pksdyp505n__w33gtvc17g40000gn/T/ResultBundle_2026-06-02_13-59-0035.xcresult
[ +58 ms] xcodebuild: error: Unable to find a destination matching the provided destination specifier:
[ ] { platform:macOS, arch:arm64 }
[ ] Available destinations for the "Runner" scheme:
[ ] { platform:macOS, arch:x86_64, id:00006000-0012305411D2801E, name:My Mac }
[ ] { platform:macOS, name:Any Mac }
[ +4 ms] Building macOS application... (completed in 876ms)
[ +1 ms] Error: Build process failed
[ ] "flutter run" took 5,078ms.
[ +46 ms]
#0 throwToolExit (package:flutter_tools/src/base/common.dart:34:3)
#1 RunCommand.runCommand (package:flutter_tools/src/commands/run.dart:897:9)
#2 FlutterCommand.run. (package:flutter_tools/src/runner/flutter_command.dart:1559:27)
#3 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19)
#4 CommandRunner.runCommand (package:args/command_runner.dart:212:13)
#5 FlutterCommandRunner.runCommand. (package:flutter_tools/src/runner/flutter_command_runner.dart:487:9)
#6 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19)
#7 FlutterCommandRunner.runCommand (package:flutter_tools/src/runner/flutter_command_runner.dart:422:5)
#8 run.. (package:flutter_tools/runner.dart:104:11)
#9 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19)
#10 main (package:flutter_tools/executable.dart:103:3)
[ +3 ms] Running 3 shutdown hooks
[ +4 ms] Shutdown hooks complete
[ +139 ms] exiting with code 1
```
### Flutter Doctor output
Doctor output
```console
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 3.38.4, on macOS 26.1 25B78 darwin-arm64, locale en-AE)
[✓] Android toolchain - develop for Android devices (Android SDK version 36.0.0)
[✓] Xcode - develop for iOS and macOS (Xcode 26.0)
[✓] Chrome - develop for the web
[✓] Connected device (5 available)
[✓] Network resources
• No issues found!
```
Contributor guide
Assessment
This issue has not been assessed yet.