Skip to content

[IOS] Autofill on login form works on e-mail field, but not on password field #91354

@TjarcoKerssens

Description

@TjarcoKerssens

When creating a minimal login form with AutofillGroup, the password will only be filled when selecting the e-mail field, not when selecting the password field.

Steps to Reproduce

Below is the minimal code to reproduce the issue:

AutofillGroup(
  child: Column(
    children: const [
      TextField(
        autofillHints: [AutofillHints.email],
      ),
      TextField(
        autofillHints: [AutofillHints.password],
      ),
    ],
  ),
)

In this form, do the following to reproduce the issue:

  1. Select the password field (the bottom one)
  2. Select a password from the password manager (doesn't matter which one)
  3. Only the e-mail field will be filled.

If in step 1 you select the email field (top one) instead of the password field, everything works correctly and both the e-mail and password will be filled.

This outcome does not depend on any properties for the TextField or AutofillGroup, as far as I could tell by trying. Also, wrapping in a Form and using TextFormField widgets does not make a difference.

Expected results:
Both the e-mail and password field filled with the saved password when the password field has focus.

Actual results:
Only the e-mail field gets filled

Logs
                        cd /Users/Name/Development/Flutter/auto_fill_test/ios
                        export DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer
                        export SDKROOT\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk
                        /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -incremental -module-name Runner -Onone -enable-batch-mode -enforce-exclusivity\=checked
                        @/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList -sdk
                        /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -target arm64-apple-ios9.0 -g -module-cache-path /Users/Name/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend
                        -serialize-debugging-options -enable-testing -swift-version 5 -I /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos -F /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos -parse-as-library -c -j8
                        -output-file-map /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-OutputFileMap.json -parseable-output
                        -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap -Xcc -iquote -Xcc
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap -Xcc
                        -I/Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/include -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources-normal/arm64 -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/arm64 -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h -import-objc-header
                        /Users/Name/Development/Flutter/auto_fill_test/ios/Runner/Runner-Bridging-Header.h -pch-output-dir /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/PrecompiledHeaders
                        -working-directory /Users/Name/Development/Flutter/auto_fill_test/ios

                    PrecompileSwiftBridgingHeader normal arm64 (in target 'Runner' from project 'Runner')
                        cd /Users/Name/Development/Flutter/auto_fill_test/ios
                        /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -target arm64-apple-ios9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk
                        /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -I /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos -F
                        /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos -enable-testing -g -module-cache-path /Users/Name/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone
                        -new-driver-path /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /Users/Name/Development/Flutter/auto_fill_test/ios -resource-dir
                        /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap -Xcc -iquote -Xcc
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap -Xcc
                        -I/Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/include -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources-normal/arm64 -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/arm64 -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header
                        /Users/Name/Development/Flutter/auto_fill_test/ios/Runner/Runner-Bridging-Header.h -module-name Runner -target-sdk-version 15.0.0 -serialize-diagnostics-path
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/PrecompiledHeaders/Runner-Bridging-Header-4whjbkp8j0kr.dia
                        /Users/Name/Development/Flutter/auto_fill_test/ios/Runner/Runner-Bridging-Header.h -emit-pch -pch-output-dir /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/PrecompiledHeaders

                    CompileSwift normal arm64 /Users/Name/Development/Flutter/auto_fill_test/ios/Runner/AppDelegate.swift (in target 'Runner' from project 'Runner')
                        cd /Users/Name/Development/Flutter/auto_fill_test/ios
                        /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/Name/Development/Flutter/auto_fill_test/ios/Runner/AppDelegate.swift -emit-module-path
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate\~partial.swiftmodule -emit-module-doc-path
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate\~partial.swiftdoc -emit-module-source-info-path
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate\~partial.swiftsourceinfo -emit-dependencies-path
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.d -emit-reference-dependencies-path
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.swiftdeps -serialize-diagnostics-path
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.dia -target arm64-apple-ios9.0 -Xllvm -aarch64-use-tbi
                        -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -I /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos -F
                        /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos -enable-testing -g -module-cache-path /Users/Name/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone
                        -new-driver-path /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-driver -serialize-debugging-options -Xcc -working-directory -Xcc /Users/Name/Development/Flutter/auto_fill_test/ios -resource-dir
                        /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap -Xcc -iquote -Xcc
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap -Xcc
                        -I/Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/include -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources-normal/arm64 -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/arm64 -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header
                        /Users/Name/Development/Flutter/auto_fill_test/ios/Runner/Runner-Bridging-Header.h -pch-output-dir /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/PrecompiledHeaders
                        -pch-disable-validation -module-name Runner -target-sdk-version 15.0.0 -parse-as-library -o
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate.o

                    MergeSwiftModule normal arm64 (in target 'Runner' from project 'Runner')
                        cd /Users/Name/Development/Flutter/auto_fill_test/ios
                        /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -merge-modules -emit-module
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/AppDelegate\~partial.swiftmodule -parse-as-library
                        -disable-diagnostic-passes -disable-sil-perf-optzns -target arm64-apple-ios9.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -I
                        /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos -F /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos -enable-testing -g -module-cache-path
                        /Users/Name/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -new-driver-path /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-driver
                        -serialize-debugging-options -Xcc -working-directory -Xcc /Users/Name/Development/Flutter/auto_fill_test/ios -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift
                        -enable-anonymous-context-mangled-names -Xcc -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap -Xcc -iquote -Xcc
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap -Xcc
                        -I/Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/include -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources-normal/arm64 -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/arm64 -Xcc
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources -Xcc -DDEBUG\=1 -import-objc-header
                        /Users/Name/Development/Flutter/auto_fill_test/ios/Runner/Runner-Bridging-Header.h -module-name Runner -target-sdk-version 15.0.0 -emit-module-doc-path
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftdoc -emit-module-source-info-path
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftsourceinfo -emit-objc-header-path
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner-Swift.h -o
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule

                    CompileC /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o
                    /Users/Name/Development/Flutter/auto_fill_test/ios/Runner/GeneratedPluginRegistrant.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Runner' from project 'Runner')
                        cd /Users/Name/Development/Flutter/auto_fill_test/ios
                        export LANG\=en_US.US-ASCII
                        /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios9.0 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc
                        -fmodules -gmodules -fmodules-cache-path\=/Users/Name/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600
                        -fbuild-session-file\=/Users/Name/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 -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -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
                        -DDEBUG\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion
                        -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -iquote
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-generated-files.hmap
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-own-target-headers.hmap
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-all-target-headers.hmap -iquote
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-project-headers.hmap
                        -I/Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/include
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources-normal/arm64
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources/arm64
                        -I/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources -F/Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos
                        -MMD -MT dependencies -MF /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.d
                        --serialize-diagnostics /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.dia -c
                        /Users/Name/Development/Flutter/auto_fill_test/ios/Runner/GeneratedPluginRegistrant.m -o
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/GeneratedPluginRegistrant.o

                    Ld /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Runner normal (in target 'Runner' from project 'Runner')
                        cd /Users/Name/Development/Flutter/auto_fill_test/ios
                        /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -target arm64-apple-ios9.0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk
                        -L/Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos -F/Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos -filelist
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker
                        -rpath -Xlinker @executable_path/Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate
                        -fobjc-arc -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.swiftmodule -Xlinker -no_adhoc_codesign -Xlinker -dependency_info
                        -Xlinker /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat -o
                        /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Runner

                    PhaseScriptExecution Thin\ Binary /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh (in target 'Runner' from
                    project 'Runner')
                        cd /Users/Name/Development/Flutter/auto_fill_test/ios
                        export ACTION\=build
                        export AD_HOC_CODE_SIGNING_ALLOWED\=NO
                        export ALLOW_TARGET_PLATFORM_SPECIALIZATION\=NO
                        export ALTERNATE_GROUP\=staff
                        export ALTERNATE_MODE\=u+w,go-w,a+rX
                        export ALTERNATE_OWNER\=Name
                        export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES\=NO
                        export ALWAYS_SEARCH_USER_PATHS\=NO
                        export ALWAYS_USE_SEPARATE_HEADERMAPS\=NO
                        export APPLE_INTERNAL_DEVELOPER_DIR\=/AppleInternal/Developer
                        export APPLE_INTERNAL_DIR\=/AppleInternal
                        export APPLE_INTERNAL_DOCUMENTATION_DIR\=/AppleInternal/Documentation
                        export APPLE_INTERNAL_LIBRARY_DIR\=/AppleInternal/Library
                        export APPLE_INTERNAL_TOOLS\=/AppleInternal/Developer/Tools
                        export APPLICATION_EXTENSION_API_ONLY\=NO
                        export APPLY_RULES_IN_COPY_FILES\=NO
                        export APPLY_RULES_IN_COPY_HEADERS\=NO
                        export ARCHS\=arm64
                        export ARCHS_STANDARD\=arm64\ armv7
                        export ARCHS_STANDARD_32_64_BIT\=armv7\ arm64
                        export ARCHS_STANDARD_32_BIT\=armv7
                        export ARCHS_STANDARD_64_BIT\=arm64
                        export ARCHS_STANDARD_INCLUDING_64_BIT\=arm64\ armv7
                        export ARCHS_UNIVERSAL_IPHONE_OS\=armv7\ arm64
                        export ASSETCATALOG_COMPILER_APPICON_NAME\=AppIcon
                        export AVAILABLE_PLATFORMS\=appletvos\ appletvsimulator\ iphoneos\ iphonesimulator\ macosx\ watchos\ watchsimulator
                        export AppIdentifierPrefix\=4HC4N2JMMP.
                        export BITCODE_GENERATION_MODE\=marker
                        export BUILD_ACTIVE_RESOURCES_ONLY\=NO
                        export BUILD_COMPONENTS\=headers\ build
                        export BUILD_DIR\=/Users/Name/Development/Flutter/auto_fill_test/build/ios
                        export BUILD_LIBRARY_FOR_DISTRIBUTION\=NO
                        export BUILD_ROOT\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Products
                        export BUILD_STYLE\=
                        export BUILD_VARIANTS\=normal
                        export BUILT_PRODUCTS_DIR\=/Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos
                        export BUNDLE_CONTENTS_FOLDER_PATH_deep\=Contents/
                        export BUNDLE_EXECUTABLE_FOLDER_NAME_deep\=MacOS
                        export BUNDLE_FORMAT\=shallow
                        export BUNDLE_FRAMEWORKS_FOLDER_PATH\=Frameworks
                        export BUNDLE_PLUGINS_FOLDER_PATH\=PlugIns
                        export BUNDLE_PRIVATE_HEADERS_FOLDER_PATH\=PrivateHeaders
                        export BUNDLE_PUBLIC_HEADERS_FOLDER_PATH\=Headers
                        export CACHE_ROOT\=/var/folders/39/8_1_jynj18l_vlp21rrft29w0000gn/C/com.apple.DeveloperTools/13.0-13A233/Xcode
                        export CCHROOT\=/var/folders/39/8_1_jynj18l_vlp21rrft29w0000gn/C/com.apple.DeveloperTools/13.0-13A233/Xcode
                        export CHMOD\=/bin/chmod
                        export CHOWN\=/usr/sbin/chown
                        export CLANG_ANALYZER_NONNULL\=YES
                        export CLANG_CXX_LANGUAGE_STANDARD\=gnu++0x
                        export CLANG_CXX_LIBRARY\=libc++
                        export CLANG_ENABLE_MODULES\=YES
                        export CLANG_ENABLE_OBJC_ARC\=YES
                        export CLANG_MODULES_BUILD_SESSION_FILE\=/Users/Name/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
                        export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING\=YES
                        export CLANG_WARN_BOOL_CONVERSION\=YES
                        export CLANG_WARN_COMMA\=YES
                        export CLANG_WARN_CONSTANT_CONVERSION\=YES
                        export CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS\=YES
                        export CLANG_WARN_DIRECT_OBJC_ISA_USAGE\=YES_ERROR
                        export CLANG_WARN_EMPTY_BODY\=YES
                        export CLANG_WARN_ENUM_CONVERSION\=YES
                        export CLANG_WARN_INFINITE_RECURSION\=YES
                        export CLANG_WARN_INT_CONVERSION\=YES
                        export CLANG_WARN_NON_LITERAL_NULL_CONVERSION\=YES
                        export CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF\=YES
                        export CLANG_WARN_OBJC_LITERAL_CONVERSION\=YES
                        export CLANG_WARN_OBJC_ROOT_CLASS\=YES_ERROR
                        export CLANG_WARN_RANGE_LOOP_ANALYSIS\=YES
                        export CLANG_WARN_STRICT_PROTOTYPES\=YES
                        export CLANG_WARN_SUSPICIOUS_MOVE\=YES
                        export CLANG_WARN_UNREACHABLE_CODE\=YES
                        export CLANG_WARN__DUPLICATE_METHOD_MATCH\=YES
                        export CLASS_FILE_DIR\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/JavaClasses
                        export CLEAN_PRECOMPS\=YES
                        export CLONE_HEADERS\=NO
                        export COCOAPODS_PARALLEL_CODE_SIGN\=true
                        export CODESIGNING_FOLDER_PATH\=/Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app
                        export CODE_SIGNING_ALLOWED\=YES
                        export CODE_SIGNING_REQUIRED\=YES
                        export CODE_SIGN_CONTEXT_CLASS\=XCiPhoneOSCodeSignContext
                        export CODE_SIGN_IDENTITY\=iPhone\ Developer
                        export CODE_SIGN_INJECT_BASE_ENTITLEMENTS\=YES
                        export COLOR_DIAGNOSTICS\=NO
                        export COMBINE_HIDPI_IMAGES\=NO
                        export COMPILER_INDEX_STORE_ENABLE\=NO
                        export COMPOSITE_SDK_DIRS\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/CompositeSDKs
                        export COMPRESS_PNG_FILES\=YES
                        export CONFIGURATION\=Debug
                        export CONFIGURATION_BUILD_DIR\=/Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos
                        export CONFIGURATION_TEMP_DIR\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos
                        export CONTENTS_FOLDER_PATH\=Runner.app
                        export COPYING_PRESERVES_HFS_DATA\=NO
                        export COPY_HEADERS_RUN_UNIFDEF\=NO
                        export COPY_PHASE_STRIP\=NO
                        export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS\=YES
                        export CORRESPONDING_SIMULATOR_PLATFORM_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
                        export CORRESPONDING_SIMULATOR_PLATFORM_NAME\=iphonesimulator
                        export CORRESPONDING_SIMULATOR_SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk
                        export CORRESPONDING_SIMULATOR_SDK_NAME\=iphonesimulator15.0
                        export CP\=/bin/cp
                        export CREATE_INFOPLIST_SECTION_IN_BINARY\=NO
                        export CURRENT_ARCH\=undefined_arch
                        export CURRENT_PROJECT_VERSION\=1
                        export CURRENT_VARIANT\=normal
                        export DART_DEFINES\=RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ\=\=
                        export DART_OBFUSCATION\=false
                        export DEAD_CODE_STRIPPING\=YES
                        export DEBUGGING_SYMBOLS\=YES
                        export DEBUG_INFORMATION_FORMAT\=dwarf
                        export DEFAULT_COMPILER\=com.apple.compilers.llvm.clang.1_0
                        export DEFAULT_DEXT_INSTALL_PATH\=/System/Library/DriverExtensions
                        export DEFAULT_KEXT_INSTALL_PATH\=/System/Library/Extensions
                        export DEFINES_MODULE\=NO
                        export DEPLOYMENT_LOCATION\=NO
                        export DEPLOYMENT_POSTPROCESSING\=NO
                        export DEPLOYMENT_TARGET_CLANG_ENV_NAME\=IPHONEOS_DEPLOYMENT_TARGET
                        export DEPLOYMENT_TARGET_CLANG_FLAG_NAME\=miphoneos-version-min
                        export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX\=-miphoneos-version-min\=
                        export DEPLOYMENT_TARGET_LD_ENV_NAME\=IPHONEOS_DEPLOYMENT_TARGET
                        export DEPLOYMENT_TARGET_LD_FLAG_NAME\=ios_version_min
                        export DEPLOYMENT_TARGET_SETTING_NAME\=IPHONEOS_DEPLOYMENT_TARGET
                        export DEPLOYMENT_TARGET_SUGGESTED_VALUES\=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\ 13.3\ 13.4\ 13.5\ 13.6\ 14.0\ 14.1\ 14.2\ 14.3\ 14.4\ 14.5\ 14.6\ 14.7\ 15.0
                        export DERIVED_FILES_DIR\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources
                        export DERIVED_FILE_DIR\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources
                        export DERIVED_SOURCES_DIR\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources
                        export DERIVE_MACCATALYST_PRODUCT_BUNDLE_IDENTIFIER\=NO
                        export DEVELOPER_APPLICATIONS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications
                        export DEVELOPER_BIN_DIR\=/Applications/Xcode.app/Contents/Developer/usr/bin
                        export DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer
                        export DEVELOPER_FRAMEWORKS_DIR\=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
                        export DEVELOPER_FRAMEWORKS_DIR_QUOTED\=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
                        export DEVELOPER_LIBRARY_DIR\=/Applications/Xcode.app/Contents/Developer/Library
                        export DEVELOPER_SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
                        export DEVELOPER_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Tools
                        export DEVELOPER_USR_DIR\=/Applications/Xcode.app/Contents/Developer/usr
                        export DEVELOPMENT_LANGUAGE\=en
                        export DEVELOPMENT_TEAM\=4HC4N2JMMP
                        export DOCUMENTATION_FOLDER_PATH\=Runner.app/en.lproj/Documentation
                        export DONT_GENERATE_INFOPLIST_FILE\=NO
                        export DO_HEADER_SCANNING_IN_JAM\=NO
                        export DSTROOT\=/tmp/Runner.dst
                        export DT_TOOLCHAIN_DIR\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
                        export DWARF_DSYM_FILE_NAME\=Runner.app.dSYM
                        export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT\=NO
                        export DWARF_DSYM_FOLDER_PATH\=/Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos
                        export EFFECTIVE_PLATFORM_NAME\=-iphoneos
                        export EMBEDDED_CONTENT_CONTAINS_SWIFT\=NO
                        export EMBEDDED_PROFILE_NAME\=embedded.mobileprovision
                        export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE\=NO
                        export ENABLE_APP_SANDBOX\=NO
                        export ENABLE_BITCODE\=NO
                        export ENABLE_DEFAULT_HEADER_SEARCH_PATHS\=YES
                        export ENABLE_HARDENED_RUNTIME\=NO
                        export ENABLE_HEADER_DEPENDENCIES\=YES
                        export ENABLE_ON_DEMAND_RESOURCES\=YES
                        export ENABLE_PREVIEWS\=NO
                        export ENABLE_STRICT_OBJC_MSGSEND\=YES
                        export ENABLE_TESTABILITY\=YES
                        export ENABLE_TESTING_SEARCH_PATHS\=NO
                        export ENTITLEMENTS_ALLOWED\=YES
                        export ENTITLEMENTS_DESTINATION\=Signature
                        export ENTITLEMENTS_REQUIRED\=YES
                        export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS\=.DS_Store\ .svn\ .git\ .hg\ CVS
                        export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES\=\*.nib\ \*.lproj\ \*.framework\ \*.gch\ \*.xcode\*\ \*.xcassets\ \(\*\)\ .DS_Store\ CVS\ .svn\ .git\ .hg\ \*.pbproj\ \*.pbxproj
                        export EXECUTABLES_FOLDER_PATH\=Runner.app/Executables
                        export EXECUTABLE_FOLDER_PATH\=Runner.app
                        export EXECUTABLE_NAME\=Runner
                        export EXECUTABLE_PATH\=Runner.app/Runner
                        export EXPANDED_CODE_SIGN_IDENTITY\=08E5D87CEF9C2896D5F44752DD544F73618220E6
                        export EXPANDED_CODE_SIGN_IDENTITY_NAME\=Apple\ Development:\ Circle\ CI\ \(9Q5JUQNKQ5\)
                        export EXPANDED_PROVISIONING_PROFILE\=30de9e45-f52e-4103-b634-de26dfe5d8b4
                        export FILE_LIST\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects/LinkFileList
                        export FIXED_FILES_DIR\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/FixedFiles
                        export FLUTTER_APPLICATION_PATH\=/Users/Name/Development/Flutter/auto_fill_test
                        export FLUTTER_BUILD_DIR\=build
                        export FLUTTER_BUILD_NAME\=1.0.0
                        export FLUTTER_BUILD_NUMBER\=1
                        export FLUTTER_ROOT\=/Users/Name/bin/Flutter
                        export FLUTTER_SUPPRESS_ANALYTICS\=true
                        export FLUTTER_TARGET\=/Users/Name/Development/Flutter/auto_fill_test/lib/main.dart
                        export FRAMEWORKS_FOLDER_PATH\=Runner.app/Frameworks
                        export FRAMEWORK_FLAG_PREFIX\=-framework
                        export FRAMEWORK_SEARCH_PATHS\=/Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos\ 
                        export FRAMEWORK_VERSION\=A
                        export FULL_PRODUCT_NAME\=Runner.app
                        export GCC3_VERSION\=3.3
                        export GCC_C_LANGUAGE_STANDARD\=gnu99
                        export GCC_DYNAMIC_NO_PIC\=NO
                        export GCC_INLINES_ARE_PRIVATE_EXTERN\=YES
                        export GCC_NO_COMMON_BLOCKS\=YES
                        export GCC_OPTIMIZATION_LEVEL\=0
                        export GCC_PFE_FILE_C_DIALECTS\=c\ objective-c\ c++\ objective-c++
                        export GCC_PREPROCESSOR_DEFINITIONS\=DEBUG\=1\ 
                        export GCC_SYMBOLS_PRIVATE_EXTERN\=NO
                        export GCC_THUMB_SUPPORT\=YES
                        export GCC_TREAT_WARNINGS_AS_ERRORS\=NO
                        export GCC_VERSION\=com.apple.compilers.llvm.clang.1_0
                        export GCC_VERSION_IDENTIFIER\=com_apple_compilers_llvm_clang_1_0
                        export GCC_WARN_64_TO_32_BIT_CONVERSION\=YES
                        export GCC_WARN_ABOUT_RETURN_TYPE\=YES_ERROR
                        export GCC_WARN_UNDECLARED_SELECTOR\=YES
                        export GCC_WARN_UNINITIALIZED_AUTOS\=YES_AGGRESSIVE
                        export GCC_WARN_UNUSED_FUNCTION\=YES
                        export GCC_WARN_UNUSED_VARIABLE\=YES
                        export GENERATED_MODULEMAP_DIR\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos
                        export GENERATE_INFOPLIST_FILE\=NO
                        export GENERATE_MASTER_OBJECT_FILE\=NO
                        export GENERATE_PKGINFO_FILE\=YES
                        export GENERATE_PROFILING_CODE\=NO
                        export GENERATE_TEXT_BASED_STUBS\=NO
                        export GID\=20
                        export GROUP\=staff
                        export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT\=YES
                        export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES\=YES
                        export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS\=YES
                        export HEADERMAP_INCLUDES_PROJECT_HEADERS\=YES
                        export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES\=YES
                        export HEADERMAP_USES_VFS\=NO
                        export HEADER_SEARCH_PATHS\=/Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/include\ 
                        export HIDE_BITCODE_SYMBOLS\=YES
                        export HOME\=/Users/Name
                        export ICONV\=/usr/bin/iconv
                        export INFOPLIST_EXPAND_BUILD_SETTINGS\=YES
                        export INFOPLIST_FILE\=Runner/Info.plist
                        export INFOPLIST_OUTPUT_FORMAT\=binary
                        export INFOPLIST_PATH\=Runner.app/Info.plist
                        export INFOPLIST_PREPROCESS\=NO
                        export INFOSTRINGS_PATH\=Runner.app/en.lproj/InfoPlist.strings
                        export INLINE_PRIVATE_FRAMEWORKS\=NO
                        export INSTALLHDRS_COPY_PHASE\=NO
                        export INSTALLHDRS_SCRIPT_PHASE\=NO
                        export INSTALL_DIR\=/tmp/Runner.dst/Applications
                        export INSTALL_GROUP\=staff
                        export INSTALL_MODE_FLAG\=u+w,go-w,a+rX
                        export INSTALL_OWNER\=Name
                        export INSTALL_PATH\=/Applications
                        export INSTALL_ROOT\=/tmp/Runner.dst
                        export IPHONEOS_DEPLOYMENT_TARGET\=9.0
                        export JAVAC_DEFAULT_FLAGS\=-J-Xms64m\ -J-XX:NewSize\=4M\ -J-Dfile.encoding\=UTF8
                        export JAVA_APP_STUB\=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
                        export JAVA_ARCHIVE_CLASSES\=YES
                        export JAVA_ARCHIVE_TYPE\=JAR
                        export JAVA_COMPILER\=/usr/bin/javac
                        export JAVA_FOLDER_PATH\=Runner.app/Java
                        export JAVA_FRAMEWORK_RESOURCES_DIRS\=Resources
                        export JAVA_JAR_FLAGS\=cv
                        export JAVA_SOURCE_SUBDIR\=.
                        export JAVA_USE_DEPENDENCIES\=YES
                        export JAVA_ZIP_FLAGS\=-urg
                        export JIKES_DEFAULT_FLAGS\=+E\ +OLDCSO
                        export KASAN_DEFAULT_CFLAGS\=-DKASAN\=1\ -fsanitize\=address\ -mllvm\ -asan-globals-live-support\ -mllvm\ -asan-force-dynamic-shadow
                        export KEEP_PRIVATE_EXTERNS\=NO
                        export LD_DEPENDENCY_INFO_FILE\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat
                        export LD_GENERATE_MAP_FILE\=NO
                        export LD_MAP_FILE_PATH\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-LinkMap-normal-undefined_arch.txt
                        export LD_NO_PIE\=NO
                        export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER\=YES
                        export LD_RUNPATH_SEARCH_PATHS\=\ @executable_path/Frameworks
                        export LEGACY_DEVELOPER_DIR\=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
                        export LEX\=lex
                        export LIBRARY_DEXT_INSTALL_PATH\=/Library/DriverExtensions
                        export LIBRARY_FLAG_NOSPACE\=YES
                        export LIBRARY_FLAG_PREFIX\=-l
                        export LIBRARY_KEXT_INSTALL_PATH\=/Library/Extensions
                        export LIBRARY_SEARCH_PATHS\=/Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos\ 
                        export LINKER_DISPLAYS_MANGLED_NAMES\=NO
                        export LINK_FILE_LIST_normal_arm64\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.LinkFileList
                        export LINK_WITH_STANDARD_LIBRARIES\=YES
                        export LLVM_TARGET_TRIPLE_OS_VERSION\=ios9.0
                        export LLVM_TARGET_TRIPLE_VENDOR\=apple
                        export LOCALIZATION_EXPORT_SUPPORTED\=YES
                        export LOCALIZED_RESOURCES_FOLDER_PATH\=Runner.app/en.lproj
                        export LOCALIZED_STRING_MACRO_NAMES\=NSLocalizedString\ CFCopyLocalizedString
                        export LOCALIZED_STRING_SWIFTUI_SUPPORT\=YES
                        export LOCAL_ADMIN_APPS_DIR\=/Applications/Utilities
                        export LOCAL_APPS_DIR\=/Applications
                        export LOCAL_DEVELOPER_DIR\=/Library/Developer
                        export LOCAL_LIBRARY_DIR\=/Library
                        export LOCROOT\=/Users/Name/Development/Flutter/auto_fill_test/ios
                        export LOCSYMROOT\=/Users/Name/Development/Flutter/auto_fill_test/ios
                        export MACH_O_TYPE\=mh_execute
                        export MAC_OS_X_PRODUCT_BUILD_VERSION\=20G165
                        export MAC_OS_X_VERSION_ACTUAL\=110600
                        export MAC_OS_X_VERSION_MAJOR\=110000
                        export MAC_OS_X_VERSION_MINOR\=110600
                        export METAL_LIBRARY_FILE_BASE\=default
                        export METAL_LIBRARY_OUTPUT_DIR\=/Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app
                        export MODULES_FOLDER_PATH\=Runner.app/Modules
                        export MODULE_CACHE_DIR\=/Users/Name/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
                        export MTL_ENABLE_DEBUG_INFO\=YES
                        export NATIVE_ARCH\=arm64
                        export NATIVE_ARCH_32_BIT\=arm
                        export NATIVE_ARCH_64_BIT\=arm64
                        export NATIVE_ARCH_ACTUAL\=arm64
                        export NO_COMMON\=YES
                        export OBJECT_FILE_DIR\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects
                        export OBJECT_FILE_DIR_normal\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal
                        export OBJROOT\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex
                        export ONLY_ACTIVE_ARCH\=NO
                        export OS\=MACOS
                        export OSAC\=/usr/bin/osacompile
                        export PACKAGE_CONFIG\=/Users/Name/Development/Flutter/auto_fill_test/.dart_tool/package_config.json
                        export PACKAGE_TYPE\=com.apple.package-type.wrapper.application
                        export PASCAL_STRINGS\=YES
                        export
                        PATH\=/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/XcodeDef
                        ault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iP
                        honeOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/
                        bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/Users/Name/bin/Flutter/bin:/Users/Name/bin/Flutter/.pub-cache/bin:/Users/Name/bin:/Users/Name/Library/Android/sdk/emulator:/Users/Name/Library/Android/sdk/tools:/Users/Name/Libra
                        ry/Android/sdk/platform-tools
                        export 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
                        export PBDEVELOPMENTPLIST_PATH\=Runner.app/pbdevelopment.plist
                        export PER_ARCH_OBJECT_FILE_DIR\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch
                        export PER_VARIANT_OBJECT_FILE_DIR\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal
                        export PKGINFO_FILE_PATH\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/PkgInfo
                        export PKGINFO_PATH\=Runner.app/PkgInfo
                        export PLATFORM_DEVELOPER_APPLICATIONS_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
                        export PLATFORM_DEVELOPER_BIN_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
                        export PLATFORM_DEVELOPER_LIBRARY_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library
                        export PLATFORM_DEVELOPER_SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
                        export PLATFORM_DEVELOPER_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
                        export PLATFORM_DEVELOPER_USR_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
                        export PLATFORM_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
                        export PLATFORM_DISPLAY_NAME\=iOS
                        export PLATFORM_FAMILY_NAME\=iOS
                        export PLATFORM_NAME\=iphoneos
                        export PLATFORM_PREFERRED_ARCH\=arm64
                        export PLATFORM_PRODUCT_BUILD_VERSION\=19A339
                        export PLIST_FILE_OUTPUT_FORMAT\=binary
                        export PLUGINS_FOLDER_PATH\=Runner.app/PlugIns
                        export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR\=YES
                        export PRECOMP_DESTINATION_DIR\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/PrefixHeaders
                        export PRESERVE_DEAD_CODE_INITS_AND_TERMS\=NO
                        export PRIVATE_HEADERS_FOLDER_PATH\=Runner.app/PrivateHeaders
                        export PRODUCT_BUNDLE_IDENTIFIER\=com.example.autoFillTest
                        export PRODUCT_BUNDLE_PACKAGE_TYPE\=APPL
                        export PRODUCT_MODULE_NAME\=Runner
                        export PRODUCT_NAME\=Runner
                        export PRODUCT_SETTINGS_PATH\=/Users/Name/Development/Flutter/auto_fill_test/ios/Runner/Info.plist
                        export PRODUCT_TYPE\=com.apple.product-type.application
                        export PROFILING_CODE\=NO
                        export PROJECT\=Runner
                        export PROJECT_DERIVED_FILE_DIR\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/DerivedSources
                        export PROJECT_DIR\=/Users/Name/Development/Flutter/auto_fill_test/ios
                        export PROJECT_FILE_PATH\=/Users/Name/Development/Flutter/auto_fill_test/ios/Runner.xcodeproj
                        export PROJECT_NAME\=Runner
                        export PROJECT_TEMP_DIR\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build
                        export PROJECT_TEMP_ROOT\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex
                        export PROVISIONING_PROFILE_REQUIRED\=YES
                        export PUBLIC_HEADERS_FOLDER_PATH\=Runner.app/Headers
                        export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS\=YES
                        export REMOVE_CVS_FROM_RESOURCES\=YES
                        export REMOVE_GIT_FROM_RESOURCES\=YES
                        export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES\=YES
                        export REMOVE_HG_FROM_RESOURCES\=YES
                        export REMOVE_SVN_FROM_RESOURCES\=YES
                        export RESOURCE_RULES_REQUIRED\=YES
                        export REZ_COLLECTOR_DIR\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources
                        export REZ_OBJECTS_DIR\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources/Objects
                        export REZ_SEARCH_PATHS\=/Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos\ 
                        export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES\=NO
                        export SCRIPTS_FOLDER_PATH\=Runner.app/Scripts
                        export SCRIPT_INPUT_FILE_COUNT\=0
                        export SCRIPT_INPUT_FILE_LIST_COUNT\=0
                        export SCRIPT_OUTPUT_FILE_COUNT\=0
                        export SCRIPT_OUTPUT_FILE_LIST_COUNT\=0
                        export SCRIPT_OUTPUT_STREAM_FILE\=/var/folders/39/8_1_jynj18l_vlp21rrft29w0000gn/T/flutter_tools.p0RyLX/flutter_build_log_pipe.B4w8n4/pipe_to_stdout
                        export SDKROOT\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk
                        export SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk
                        export SDK_DIR_iphoneos\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk
                        export SDK_DIR_iphoneos15_0\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk
                        export SDK_NAME\=iphoneos15.0
                        export SDK_NAMES\=iphoneos15.0
                        export SDK_PRODUCT_BUILD_VERSION\=19A339
                        export SDK_VERSION\=15.0
                        export SDK_VERSION_ACTUAL\=150000
                        export SDK_VERSION_MAJOR\=150000
                        export SDK_VERSION_MINOR\=150000
                        export SED\=/usr/bin/sed
                        export SEPARATE_STRIP\=NO
                        export SEPARATE_SYMBOL_EDIT\=NO
                        export SET_DIR_MODE_OWNER_GROUP\=YES
                        export SET_FILE_MODE_OWNER_GROUP\=NO
                        export SHALLOW_BUNDLE\=YES
                        export SHARED_DERIVED_FILE_DIR\=/Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/DerivedSources
                        export SHARED_FRAMEWORKS_FOLDER_PATH\=Runner.app/SharedFrameworks
                        export SHARED_PRECOMPS_DIR\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/PrecompiledHeaders
                        export SHARED_SUPPORT_FOLDER_PATH\=Runner.app/SharedSupport
                        export SKIP_INSTALL\=NO
                        export SOURCE_ROOT\=/Users/Name/Development/Flutter/auto_fill_test/ios
                        export SRCROOT\=/Users/Name/Development/Flutter/auto_fill_test/ios
                        export STRINGSDATA_DIR\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/undefined_arch
                        export STRINGSDATA_ROOT\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build
                        export STRINGS_FILE_INFOPLIST_RENAME\=YES
                        export STRINGS_FILE_OUTPUT_ENCODING\=binary
                        export STRIP_BITCODE_FROM_COPIED_FILES\=YES
                        export STRIP_INSTALLED_PRODUCT\=NO
                        export STRIP_STYLE\=all
                        export STRIP_SWIFT_SYMBOLS\=YES
                        export SUPPORTED_DEVICE_FAMILIES\=1,2
                        export SUPPORTED_PLATFORMS\=iphoneos\ iphonesimulator
                        export SUPPORTS_MACCATALYST\=NO
                        export SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD\=YES
                        export SUPPORTS_TEXT_BASED_API\=NO
                        export SWIFT_EMIT_LOC_STRINGS\=NO
                        export SWIFT_OBJC_BRIDGING_HEADER\=Runner/Runner-Bridging-Header.h
                        export SWIFT_OPTIMIZATION_LEVEL\=-Onone
                        export SWIFT_PLATFORM_TARGET_PREFIX\=ios
                        export SWIFT_RESPONSE_FILE_PATH_normal_arm64\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner.SwiftFileList
                        export SWIFT_VERSION\=5.0
                        export SYMROOT\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Products
                        export SYSTEM_ADMIN_APPS_DIR\=/Applications/Utilities
                        export SYSTEM_APPS_DIR\=/Applications
                        export SYSTEM_CORE_SERVICES_DIR\=/System/Library/CoreServices
                        export SYSTEM_DEMOS_DIR\=/Applications/Extras
                        export SYSTEM_DEVELOPER_APPS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications
                        export SYSTEM_DEVELOPER_BIN_DIR\=/Applications/Xcode.app/Contents/Developer/usr/bin
                        export SYSTEM_DEVELOPER_DEMOS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built\ Examples
                        export SYSTEM_DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer
                        export SYSTEM_DEVELOPER_DOC_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library
                        export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Graphics\ Tools
                        export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Java\ Tools
                        export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Performance\ Tools
                        export SYSTEM_DEVELOPER_RELEASENOTES_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/releasenotes
                        export SYSTEM_DEVELOPER_TOOLS\=/Applications/Xcode.app/Contents/Developer/Tools
                        export SYSTEM_DEVELOPER_TOOLS_DOC_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/documentation/DeveloperTools
                        export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/releasenotes/DeveloperTools
                        export SYSTEM_DEVELOPER_USR_DIR\=/Applications/Xcode.app/Contents/Developer/usr
                        export SYSTEM_DEVELOPER_UTILITIES_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
                        export SYSTEM_DEXT_INSTALL_PATH\=/System/Library/DriverExtensions
                        export SYSTEM_DOCUMENTATION_DIR\=/Library/Documentation
                        export SYSTEM_KEXT_INSTALL_PATH\=/System/Library/Extensions
                        export SYSTEM_LIBRARY_DIR\=/System/Library
                        export TAPI_VERIFY_MODE\=ErrorsOnly
                        export TARGETED_DEVICE_FAMILY\=1,2
                        export TARGETNAME\=Runner
                        export TARGET_BUILD_DIR\=/Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos
                        export TARGET_NAME\=Runner
                        export TARGET_TEMP_DIR\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build
                        export TEMP_DIR\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build
                        export TEMP_FILES_DIR\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build
                        export TEMP_FILE_DIR\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build
                        export TEMP_ROOT\=/Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex
                        export TEST_FRAMEWORK_SEARCH_PATHS\=\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks\
                        /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/Developer/Library/Frameworks
                        export TEST_LIBRARY_SEARCH_PATHS\=\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib
                        export TOOLCHAINS\=com.apple.dt.toolchain.XcodeDefault
                        export TOOLCHAIN_DIR\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
                        export TRACK_WIDGET_CREATION\=true
                        export TREAT_MISSING_BASELINES_AS_TEST_FAILURES\=NO
                        export TREE_SHAKE_ICONS\=false
                        export TeamIdentifierPrefix\=4HC4N2JMMP.
                        export UID\=501
                        export UNLOCALIZED_RESOURCES_FOLDER_PATH\=Runner.app
                        export UNSTRIPPED_PRODUCT\=NO
                        export USER\=Name
                        export USER_APPS_DIR\=/Users/Name/Applications
                        export USER_LIBRARY_DIR\=/Users/Name/Library
                        export USE_DYNAMIC_NO_PIC\=YES
                        export USE_HEADERMAP\=YES
                        export USE_HEADER_SYMLINKS\=NO
                        export USE_LLVM_TARGET_TRIPLES\=YES
                        export USE_LLVM_TARGET_TRIPLES_FOR_CLANG\=YES
                        export USE_LLVM_TARGET_TRIPLES_FOR_LD\=YES
                        export USE_LLVM_TARGET_TRIPLES_FOR_TAPI\=YES
                        export VALIDATE_DEVELOPMENT_ASSET_PATHS\=YES_ERROR
                        export VALIDATE_PRODUCT\=NO
                        export VALIDATE_WORKSPACE\=YES_ERROR
                        export VALID_ARCHS\=arm64\ arm64e\ armv7\ armv7s
                        export VERBOSE_PBXCP\=NO
                        export VERBOSE_SCRIPT_LOGGING\=YES
                        export VERSIONING_SYSTEM\=apple-generic
                        export VERSIONPLIST_PATH\=Runner.app/version.plist
                        export VERSION_INFO_BUILDER\=Name
                        export VERSION_INFO_FILE\=Runner_vers.c
                        export VERSION_INFO_STRING\=\"@\(\#\)PROGRAM:Runner\ \ PROJECT:Runner-1\"
                        export WRAPPER_EXTENSION\=app
                        export WRAPPER_NAME\=Runner.app
                        export WRAPPER_SUFFIX\=.app
                        export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES\=NO
                        export XCODE_APP_SUPPORT_DIR\=/Applications/Xcode.app/Contents/Developer/Library/Xcode
                        export XCODE_PRODUCT_BUILD_VERSION\=13A233
                        export XCODE_VERSION_ACTUAL\=1300
                        export XCODE_VERSION_MAJOR\=1300
                        export XCODE_VERSION_MINOR\=1300
                        export XPCSERVICES_FOLDER_PATH\=Runner.app/XPCServices
                        export YACC\=yacc
                        export arch\=undefined_arch
                        export variant\=normal
                        /bin/sh -c /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh

                    ProcessInfoPlistFile /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Info.plist /Users/Name/Development/Flutter/auto_fill_test/ios/Runner/Info.plist (in target 'Runner' from project 'Runner')
                        cd /Users/Name/Development/Flutter/auto_fill_test/ios
                        builtin-infoPlistUtility /Users/Name/Development/Flutter/auto_fill_test/ios/Runner/Info.plist -producttype com.apple.product-type.application -genpkginfo /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/PkgInfo
                        -expandbuildsettings -format binary -platform iphoneos -additionalcontentfile
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist -additionalcontentfile
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Base.lproj/Main-SBPartialInfo.plist -additionalcontentfile
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/assetcatalog_generated_info.plist -requiredArchitecture arm64 -o
                        /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Info.plist

                    CopySwiftLibs /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app (in target 'Runner' from project 'Runner')
                        cd /Users/Name/Development/Flutter/auto_fill_test/ios
                        export CODESIGN_ALLOCATE\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
                        export DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer
                        export SDKROOT\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk
                        builtin-swiftStdLibTool --copy --verbose --sign 08E5D87CEF9C2896D5F44752DD544F73618220E6 --scan-executable /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Runner --scan-folder
                        /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks --scan-folder /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/PlugIns --platform iphoneos --toolchain
                        /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks --strip-bitcode --strip-bitcode-tool
                        /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/SwiftStdLibToolInputDependencies.dep
                    libswiftFoundation.dylib is up to date at /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib
                    libswiftCore.dylib is up to date at /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib
                    libswiftQuartzCore.dylib is up to date at /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib
                    libswiftCoreMedia.dylib is up to date at /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib
                    libswiftDispatch.dylib is up to date at /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib
                    libswiftCoreFoundation.dylib is up to date at /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib
                    libswiftUIKit.dylib is up to date at /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib
                    libswiftCoreGraphics.dylib is up to date at /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib
                    libswiftCoreImage.dylib is up to date at /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib
                    libswiftObjectiveC.dylib is up to date at /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib
                    libswiftMetal.dylib is up to date at /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib
                    libswiftCoreAudio.dylib is up to date at /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib
                    libswiftDarwin.dylib is up to date at /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib
                    libswiftos.dylib is up to date at /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib
                    Codesigning /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib
                    /usr/bin/codesign --force --sign 08E5D87CEF9C2896D5F44752DD544F73618220E6 --verbose /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib
                    Codesigning /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib
                    /usr/bin/codesign --force --sign 08E5D87CEF9C2896D5F44752DD544F73618220E6 --verbose /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib
                    Codesigning /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib
                    /usr/bin/codesign --force --sign 08E5D87CEF9C2896D5F44752DD544F73618220E6 --verbose /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib
                    Codesigning /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib
                    /usr/bin/codesign --force --sign 08E5D87CEF9C2896D5F44752DD544F73618220E6 --verbose /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib
                    Codesigning /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib
                    /usr/bin/codesign --force --sign 08E5D87CEF9C2896D5F44752DD544F73618220E6 --verbose /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib
                    Codesigning /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib
                    /usr/bin/codesign --force --sign 08E5D87CEF9C2896D5F44752DD544F73618220E6 --verbose /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib
                    Codesigning /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib
                    /usr/bin/codesign --force --sign 08E5D87CEF9C2896D5F44752DD544F73618220E6 --verbose /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib
                    Codesigning /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib
                    /usr/bin/codesign --force --sign 08E5D87CEF9C2896D5F44752DD544F73618220E6 --verbose /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib
                    Codesigning /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib
                    /usr/bin/codesign --force --sign 08E5D87CEF9C2896D5F44752DD544F73618220E6 --verbose /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib
                    Codesigning /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib
                    /usr/bin/codesign --force --sign 08E5D87CEF9C2896D5F44752DD544F73618220E6 --verbose /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib
                    Codesigning /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib
                    /usr/bin/codesign --force --sign 08E5D87CEF9C2896D5F44752DD544F73618220E6 --verbose /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib
                    Codesigning /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib
                    /usr/bin/codesign --force --sign 08E5D87CEF9C2896D5F44752DD544F73618220E6 --verbose /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib
                    Codesigning /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib
                    /usr/bin/codesign --force --sign 08E5D87CEF9C2896D5F44752DD544F73618220E6 --verbose /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib
                    Codesigning /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib
                    /usr/bin/codesign --force --sign 08E5D87CEF9C2896D5F44752DD544F73618220E6 --verbose /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib
                    Probing signature of /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib
                    /usr/bin/codesign -r- --display /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib

                    CodeSign /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app (in target 'Runner' from project 'Runner')
                        cd /Users/Name/Development/Flutter/auto_fill_test/ios
                        export CODESIGN_ALLOCATE\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate

                        Signing Identity:     "Apple Development: Circle CI (9Q5JUQNKQ5)"
                        Provisioning Profile: "iOS Team Provisioning Profile: *"
                                              (30de9e45-f52e-4103-b634-de26dfe5d8b4)

                        /usr/bin/codesign --force --sign 08E5D87CEF9C2896D5F44752DD544F73618220E6 --entitlements
                        /Users/Name/Library/Developer/Xcode/DerivedData/Runner-fpgsyzpccygueddrrhfvfpftrbco/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner.app.xcent --timestamp\=none --generate-entitlement-der
                        /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app

                    Validate /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app (in target 'Runner' from project 'Runner')
                        cd /Users/Name/Development/Flutter/auto_fill_test/ios
                        builtin-validationUtility /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app

                    ** BUILD SUCCEEDED **


                    2021-10-06 11:18:39.986 xcodebuild[80592:8711591] CFURLRequestSetHTTPCookieStorageAcceptPolicy_block_invoke: no longer implemented and should not be called
                    --- xcodebuild: WARNING: Using the first of multiple matching destinations:
                    { platform:iOS, id:dvtdevice-DVTiPhonePlaceholder-iphoneos:placeholder, name:Any iOS Device }
                    { platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:00008103-000D098422A1001E }
                    { platform:iOS Simulator, id:dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder, name:Any iOS Simulator Device }
                    { platform:iOS Simulator, id:4427ABAE-694B-4AA9-A57F-E68DEAB7567C, OS:15.0, name:iPad (9th generation) }
                    { platform:iOS Simulator, id:7EAD90F6-F7A3-426E-B515-90FD6EE7F9F3, OS:15.0, name:iPad Air (4th generation) }
                    { platform:iOS Simulator, id:84F59731-42AD-4648-A874-339645A796F8, OS:15.0, name:iPad Pro (9.7-inch) }
                    { platform:iOS Simulator, id:9E1D005A-685D-46FD-B41E-EBC08ED29134, OS:15.0, name:iPad Pro (11-inch) (3rd generation) }
                    { platform:iOS Simulator, id:DE29F768-AE04-4EDE-AAD3-5A521610534C, OS:15.0, name:iPad Pro (12.9-inch) (5th generation) }
                    { platform:iOS Simulator, id:FF5B58DB-813B-4C43-B1E0-8C35DD476390, OS:15.0, name:iPad mini (6th generation) }
                    { platform:iOS Simulator, id:78B69EF2-3291-4961-BFCF-31A6D0D745D4, OS:15.0, name:iPhone 8 }
                    { platform:iOS Simulator, id:6795333D-AC30-4771-B32B-D2ADC7AED6EA, OS:15.0, name:iPhone 8 Plus }
                    { platform:iOS Simulator, id:A809D96B-2DCD-462B-9ACC-F0B8F2441123, OS:15.0, name:iPhone 11 }
                    { platform:iOS Simulator, id:DC42D14D-2796-4109-A58E-BC999A394152, OS:15.0, name:iPhone 11 Pro }
                    { platform:iOS Simulator, id:04642E8B-D253-4ACA-82A6-B5A433F910B9, OS:15.0, name:iPhone 11 Pro Max }
                    { platform:iOS Simulator, id:B2EF5044-0D08-47E4-AAA8-07AE1A7E62E6, OS:15.0, name:iPhone 12 }
                    { platform:iOS Simulator, id:94296DC1-6755-47A4-823C-95BE9AE9B97C, OS:15.0, name:iPhone 12 Pro }
                    { platform:iOS Simulator, id:FAFA8E81-D71A-4366-87F6-02C97260087F, OS:15.0, name:iPhone 12 Pro Max }
                    { platform:iOS Simulator, id:8FD4748A-6C09-4DE3-8B50-0B0534A078E4, OS:15.0, name:iPhone 12 mini }
                    { platform:iOS Simulator, id:6B361475-AFC6-4A35-B49A-568CA6F34244, OS:15.0, name:iPhone 13 }
                    { platform:iOS Simulator, id:5E9D1ABE-7478-458D-B4F4-634575D9C8E2, OS:15.0, name:iPhone 13 Pro }
                    { platform:iOS Simulator, id:33A43D8C-86EA-4A85-8B6D-655325B3C446, OS:15.0, name:iPhone 13 Pro Max }
                    { platform:iOS Simulator, id:C34962C1-994D-4506-A7DF-36A918209275, OS:15.0, name:iPhone 13 mini }
                    { platform:iOS Simulator, id:F56A3E6A-6140-4552-8C11-DB894E6BFD21, OS:15.0, name:iPhone SE (2nd generation) }
                    { platform:iOS Simulator, id:5E25D224-02DF-458A-A1BA-9E26338DFF84, OS:15.0, name:iPod touch (7th generation) }
[ +107 ms]  └─Compiling, linking and signing... (completed in 7.4s)
[   +4 ms] Xcode build done.                                           33.6s
[  +21 ms] executing: rsync -av --delete /Users/Name/Development/Flutter/auto_fill_test/build/ios/Debug-iphoneos/Runner.app /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos
[+1181 ms] building file list ... done
                    Runner.app/
                    Runner.app/Info.plist
                    Runner.app/PkgInfo
                    Runner.app/Runner
                    Runner.app/embedded.mobileprovision
                    Runner.app/Frameworks/
                    Runner.app/Frameworks/libswiftCore.dylib
                    Runner.app/Frameworks/libswiftCoreAudio.dylib
                    Runner.app/Frameworks/libswiftCoreFoundation.dylib
                    Runner.app/Frameworks/libswiftCoreGraphics.dylib
                    Runner.app/Frameworks/libswiftCoreImage.dylib
                    Runner.app/Frameworks/libswiftCoreMedia.dylib
                    Runner.app/Frameworks/libswiftDarwin.dylib
                    Runner.app/Frameworks/libswiftDispatch.dylib
                    Runner.app/Frameworks/libswiftFoundation.dylib
                    Runner.app/Frameworks/libswiftMetal.dylib
                    Runner.app/Frameworks/libswiftObjectiveC.dylib
                    Runner.app/Frameworks/libswiftQuartzCore.dylib
                    Runner.app/Frameworks/libswiftUIKit.dylib
                    Runner.app/Frameworks/libswiftos.dylib
                    Runner.app/Frameworks/App.framework/
                    Runner.app/Frameworks/App.framework/App
                    Runner.app/Frameworks/App.framework/_CodeSignature/CodeResources
                    Runner.app/Frameworks/App.framework/flutter_assets/AssetManifest.json
                    Runner.app/Frameworks/App.framework/flutter_assets/FontManifest.json
                    Runner.app/Frameworks/App.framework/flutter_assets/NOTICES.Z
                    Runner.app/Frameworks/App.framework/flutter_assets/kernel_blob.bin
                    Runner.app/Frameworks/Flutter.framework/
                    Runner.app/Frameworks/Flutter.framework/Flutter
                    Runner.app/Frameworks/Flutter.framework/_CodeSignature/CodeResources
                    Runner.app/_CodeSignature/CodeResources

                    sent 114561924 bytes  received 638 bytes  76375041.33 bytes/sec
                    total size is 121927867  speedup is 1.06
[   +5 ms] Installing and launching...
[        ] Debugging is enabled, connecting to observatory
[   +7 ms] executing: script -t 0 /dev/null /Users/Name/bin/Flutter/bin/cache/artifacts/ios-deploy/ios-deploy --id 00008030-00120C803AE0802E --bundle build/ios/iphoneos/Runner.app --app_deltas build/ios/app-delta --debug --no-wifi --args --enable-dart-profiling
--disable-service-auth-codes --enable-checked-mode --verify-entry-points
[ +116 ms] [....] Waiting for iOS device to be connected
[  +27 ms] [....] Using 00008030-00120C803AE0802E (N104AP, iPhone 11, iphoneos, arm64e) a.k.a. 'Name’s iPhone'.
[        ] ------ Install phase ------
[        ] [  0%] Found 00008030-00120C803AE0802E (N104AP, iPhone 11, iphoneos, arm64e) a.k.a. 'Name’s iPhone' connected through USB, beginning install
[ +183 ms] [  5%] TransferringPackage
[        ] [  5%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/META-INF/ to device
[        ] [  5%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/META-INF/com.apple.ZipMetadata.plist to device
[        ] [  5%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/_CodeSignature/ to device
[        ] [  5%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/_CodeSignature/CodeResources to device
[   +6 ms] [  5%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/[email protected] to device
[   +1 ms] [  6%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/[email protected] to device
[   +4 ms] [  6%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/AppIcon29x29.png to device
[   +6 ms] [  6%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/[email protected] to device
[        ] [  6%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Runner to device
[   +4 ms] [  7%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/[email protected] to device
[   +2 ms] [  7%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/[email protected] to device
[   +1 ms] [  7%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/AppIcon29x29~ipad.png to device
[   +2 ms] [  7%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/[email protected] to device
[   +1 ms] [  8%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/[email protected] to device
[        ] [  8%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/[email protected] to device
[   +1 ms] [  8%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Base.lproj/ to device
[        ] [  8%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/ to device
[   +3 ms] [  9%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib to device
[        ] [  9%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib to device
[        ] [  9%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/Info.plist to device
[        ] [  9%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/ to device
[        ] [ 10%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib to device
[        ] [ 10%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib to device
[        ] [ 10%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/Info.plist to device
[        ] [ 10%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Assets.car to device
[   +7 ms] [ 10%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/AppFrameworkInfo.plist to device
[   +1 ms] [ 11%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/AppIcon40x40@2x~ipad.png to device
[   +1 ms] [ 11%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/AppIcon76x76@2x~ipad.png to device
[   +1 ms] [ 11%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/AppIcon83.5x83.5@2x~ipad.png to device
[        ] [ 11%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/AppIcon29x29@2x~ipad.png to device
[   +1 ms] [ 12%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/AppIcon40x40~ipad.png to device
[        ] [ 12%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/ to device
[        ] [ 12%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib to device
[   +6 ms] [ 12%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib to device
[ +209 ms] [ 13%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/libswiftCore.dylib to device
[+3312 ms] [ 17%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib to device
[  +61 ms] [ 18%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib to device
[ +186 ms] [ 18%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/libswiftMetal.dylib to device
[  +35 ms] [ 18%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib to device
[ +247 ms] [ 19%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/libswiftos.dylib to device
[  +54 ms] [ 19%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib to device
[  +36 ms] [ 19%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/ to device
[        ] [ 20%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/_CodeSignature/ to device
[        ] [ 20%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/_CodeSignature/CodeResources to device
[  +17 ms] [ 20%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/icudtl.dat to device
[ +262 ms] [ 21%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter to device
[+4518 ms] [ 27%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Headers/ to device
[        ] [ 28%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Headers/FlutterEngine.h to device
[   +6 ms] [ 28%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Headers/FlutterChannels.h to device
[  +12 ms] [ 28%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Headers/FlutterPlugin.h to device
[        ] [ 28%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Headers/FlutterAppDelegate.h to device
[        ] [ 29%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Headers/FlutterTexture.h to device
[        ] [ 29%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Headers/FlutterEngineGroup.h to device
[        ] [ 29%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Headers/FlutterPlatformViews.h to device
[        ] [ 29%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Headers/FlutterHeadlessDartRunner.h to device
[        ] [ 30%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Headers/FlutterCodecs.h to device
[        ] [ 30%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Headers/Flutter.h to device
[        ] [ 30%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Headers/FlutterViewController.h to device
[        ] [ 30%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Headers/FlutterMacros.h to device
[        ] [ 31%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Headers/FlutterDartProject.h to device
[        ] [ 31%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Headers/FlutterPluginAppLifeCycleDelegate.h to device
[        ] [ 31%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Headers/FlutterBinaryMessenger.h to device
[        ] [ 31%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Headers/FlutterCallbackCache.h to device
[        ] [ 31%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Modules/ to device
[        ] [ 32%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Modules/module.modulemap to device
[        ] [ 32%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Info.plist to device
[        ] [ 32%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/App.framework/ to device
[        ] [ 32%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/App.framework/_CodeSignature/ to device
[        ] [ 33%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/App.framework/_CodeSignature/CodeResources to device
[        ] [ 33%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/App.framework/App to device
[   +1 ms] [ 33%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/ to device
[        ] [ 33%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/NOTICES.Z to device
[   +5 ms] [ 34%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/vm_snapshot_data to device
[        ] [ 34%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/isolate_snapshot_data to device
[ +674 ms] [ 35%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/AssetManifest.json to device
[  +18 ms] [ 35%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/kernel_blob.bin to device
[+3460 ms] [ 42%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/FontManifest.json to device
[        ] [ 43%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/packages/ to device
[        ] [ 43%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/packages/cupertino_icons/ to device
[   +2 ms] [ 43%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/packages/cupertino_icons/assets/ to device
[   +5 ms] [ 43%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf to device
[  +13 ms] [ 44%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/fonts/ to device
[   +9 ms] [ 44%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/fonts/MaterialIcons-Regular.otf to device
[ +160 ms] [ 44%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/App.framework/Info.plist to device
[        ] [ 44%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib to device
[  +39 ms] [ 45%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib to device
[  +78 ms] [ 45%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib to device
[  +31 ms] [ 45%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib to device
[+1169 ms] [ 48%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib to device
[  +35 ms] [ 48%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/AppIcon20x20~ipad.png to device
[        ] [ 48%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/embedded.mobileprovision to device
[   +9 ms] [ 49%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/AppIcon20x20@2x~ipad.png to device
[        ] [ 49%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/Info.plist to device
[   +1 ms] [ 49%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/PkgInfo to device
[  +13 ms] [ 49%] Copying /Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app/AppIcon76x76~ipad.png to device
[ +194 ms] [ 52%] CreatingStagingDirectory
[        ] [ 57%] ExtractingPackage
[   +2 ms] [ 60%] InspectingPackage
[  +38 ms] [ 60%] TakingInstallLock
[  +56 ms] [ 65%] PreflightingApplication
[  +53 ms] [ 65%] InstallingEmbeddedProfile
[ +101 ms] [ 70%] VerifyingApplication
[ +297 ms] [ 75%] CreatingContainer
[  +14 ms] [ 80%] InstallingApplication
[  +26 ms] [ 85%] PostflightingApplication
[  +17 ms] [ 90%] SandboxingApplication
[  +36 ms] [ 95%] GeneratingApplicationMap
[ +449 ms] [100%] Installed package build/ios/iphoneos/Runner.app
[  +78 ms] ------ Debug phase ------
[   +2 ms] Starting debug of 00008030-00120C803AE0802E (N104AP, iPhone 11, iphoneos, arm64e) a.k.a. 'Name’s iPhone' connected through USB...
[ +149 ms] [  0%] Looking up developer disk image
[   +9 ms] [ 95%] Developer disk image mounted successfully
[ +824 ms] [100%] Connecting to remote debug server
[        ] -------------------------
[ +490 ms] (lldb) command source -s 0 '/tmp/FD651EA1-8E86-445B-B302-63F8719088E0/fruitstrap-lldb-prep-cmds-00008030_00120C803AE0802E'
[        ] Executing commands in '/tmp/FD651EA1-8E86-445B-B302-63F8719088E0/fruitstrap-lldb-prep-cmds-00008030_00120C803AE0802E'.
[        ] (lldb)     platform select remote-ios --sysroot '/Users/Name/Library/Developer/Xcode/iOS DeviceSupport/15.0 (19A346) arm64e/Symbols'
[        ]   Platform: remote-ios
[        ]  Connected: no
[        ]   SDK Path: "/Users/Name/Library/Developer/Xcode/iOS DeviceSupport/15.0 (19A346) arm64e/Symbols"
[        ] (lldb)     target create "/Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app"
[+5838 ms] Current executable set to '/Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos/Runner.app' (arm64).
[        ] (lldb)     script fruitstrap_device_app="/private/var/containers/Bundle/Application/694B8F57-375E-46E5-9236-04CC628DFED9/Runner.app"
[ +656 ms] (lldb)     script fruitstrap_connect_url="connect://127.0.0.1:58969"
[        ] (lldb)     script fruitstrap_output_path=""
[        ] (lldb)     script fruitstrap_error_path=""
[        ] (lldb)     target modules search-paths add /usr "/Users/Name/Library/Developer/Xcode/iOS DeviceSupport/15.0 (19A346) arm64e/Symbols/usr" /System "/Users/Name/Library/Developer/Xcode/iOS DeviceSupport/15.0 (19A346) arm64e/Symbols/System"
"/private/var/containers/Bundle/Application/694B8F57-375E-46E5-9236-04CC628DFED9" "/Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos" "/var/containers/Bundle/Application/694B8F57-375E-46E5-9236-04CC628DFED9"
"/Users/Name/Development/Flutter/auto_fill_test/build/ios/iphoneos" /Developer "/Users/Name/Library/Developer/Xcode/iOS DeviceSupport/15.0 (19A346) arm64e/Symbols/Developer"
[   +8 ms] (lldb)     command script import "/tmp/FD651EA1-8E86-445B-B302-63F8719088E0/fruitstrap_00008030_00120C803AE0802E.py"
[   +2 ms] (lldb)     command script add -f fruitstrap_00008030_00120C803AE0802E.connect_command connect
[        ] (lldb)     command script add -s asynchronous -f fruitstrap_00008030_00120C803AE0802E.run_command run
[        ] (lldb)     command script add -s asynchronous -f fruitstrap_00008030_00120C803AE0802E.autoexit_command autoexit
[        ] (lldb)     command script add -s asynchronous -f fruitstrap_00008030_00120C803AE0802E.safequit_command safequit
[        ] (lldb)     connect
[  +41 ms] (lldb)     run
[ +252 ms] success
[        ] Application launched on the device. Waiting for observatory url.
[+3927 ms] (lldb) 2021-10-06 11:19:41.738720+0200 Runner[3561:673682] Writing analzed variants.
[   +6 ms] Warning: Unable to create restoration in progress marker file
[  +66 ms] Observatory URL on device: http://127.0.0.1:55065/
[  +15 ms] Attempting to forward device port 55065 to host port 58995
[   +1 ms] executing: /Users/Name/bin/Flutter/bin/cache/artifacts/usbmuxd/iproxy 58995:55065 --udid 00008030-00120C803AE0802E
[ +345 ms] fopen failed for data file: errno = 2 (No such file or directory)
[   +1 ms] Errors found! Invalidating cache...
[ +212 ms] fopen failed for data file: errno = 2 (No such file or directory)
[        ] Errors found! Invalidating cache...
[ +491 ms] Forwarded port ForwardedPort HOST:58995 to DEVICE:55065
[        ] Forwarded host port 58995 to device port 55065 for Observatory
[   +6 ms] Installing and launching... (completed in 29.8s)
[   +2 ms] Caching compiled dill
[  +61 ms] Connecting to service protocol: http://127.0.0.1:58995/
[ +193 ms] Launching a Dart Developer Service (DDS) instance at http://127.0.0.1:0, connecting to VM service at http://127.0.0.1:58995/.
[ +195 ms] DDS is listening at http://127.0.0.1:58999/SAcLvku3QMk=/.
[ +101 ms] Successfully connected to service protocol: http://127.0.0.1:58995/
[  +34 ms] DevFS: Creating new filesystem on the device (null)
[  +32 ms] DevFS: Created new filesystem on the device (file:///private/var/mobile/Containers/Data/Application/81B3206D-51BF-405C-8B5F-E3AE343962F7/tmp/auto_fill_testQxFszn/auto_fill_test/)
[   +2 ms] Updating assets
[ +152 ms] Syncing files to device Name’s iPhone...
[   +2 ms] <- reset
[        ] Compiling dart to kernel with 0 updated files
[   +8 ms] <- recompile package:auto_fill_test/main.dart 75ea371f-9b1b-4590-b1b3-fe2411dcf606
[        ] <- 75ea371f-9b1b-4590-b1b3-fe2411dcf606
[ +161 ms] Updating files.
[        ] DevFS: Sync finished
[   +6 ms] Syncing files to device Name’s iPhone... (completed in 173ms)
[        ] Synced 0.0MB.
[   +2 ms] <- accept
[  +42 ms] Connected to _flutterView/0x105847620.
[   +8 ms] Flutter run key commands.
[   +2 ms] r Hot reload. 🔥🔥🔥
[   +1 ms] R Hot restart.
[        ] h List all available interactive commands.
[        ] d Detach (terminate "flutter run" but leave application running).
[        ] c Clear the screen
[        ] q Quit (terminate the application on the device).
[        ] 💪 Running with sound null safety 💪
[   +1 ms] An Observatory debugger and profiler on Name’s iPhone is available at: http://127.0.0.1:58999/SAcLvku3QMk=/
[ +374 ms] Activating Dart DevTools...
[+5209 ms] Activating Dart DevTools... (completed in 5.2s)
[ +805 ms] The Flutter DevTools debugger and profiler on Name’s iPhone is available at: http://127.0.0.1:9102?uri=http://127.0.0.1:58999/SAcLvku3QMk=/
[ +398 ms] Writing analzed variants.
[+5697 ms] Keyboard cannot present view controllers (attempted to present <UIKeyboardHiddenViewController_Autofill: 0x104758ce0>)
Analyzing auto_fill_test...                                             
No issues found! (ran in 11.5s)
[✓] Flutter (Channel stable, 2.5.2, on macOS 11.6 20G165 darwin-arm, locale en-NL)
    • Flutter version 2.5.2 at /Users/tjarco/bin/Flutter
    • Upstream repository https://github.com/flutter/flutter.git
    • Framework revision 3595343e20 (6 days ago), 2021-09-30 12:58:18 -0700
    • Engine revision 6ac856380f
    • Dart version 2.14.3

[✓] Android toolchain - develop for Android devices (Android SDK version 30.0.3)
    • Android SDK at /Users/tjarco/Library/Android/sdk
    • Platform android-30, build-tools 30.0.3
    • ANDROID_SDK_ROOT = /Users/tjarco/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_242-release-1644-b3-6915495)
    • All Android licenses accepted.

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

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

[✓] Android Studio (version 4.1)
    • Android Studio at /Applications/Android Studio.app/Contents
    • Flutter plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/9212-flutter
    • Dart plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/6351-dart
    • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6915495)

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

[✓] Connected device (4 available)
    • sdk gphone64 arm64 (mobile)                    • emulator-5554                        • android-arm64  • Android 11 (API 30) (emulator)
    • iPhone 12 mini (mobile)                        • 8FD4748A-6C09-4DE3-8B50-0B0534A078E4 • ios            •
      com.apple.CoreSimulator.SimRuntime.iOS-15-0 (simulator)
    • iPad Pro (12.9-inch) (5th generation) (mobile) • DE29F768-AE04-4EDE-AAD3-5A521610534C • ios            •
      com.apple.CoreSimulator.SimRuntime.iOS-15-0 (simulator)
    • Chrome (web)                                   • chrome                               • web-javascript • Google Chrome 94.0.4606.71

• No issues found!

Metadata

Metadata

Labels

P1High-priority issues at the top of the work lista: text inputEntering text in a text field or keyboard related problemsframeworkflutter/packages/flutter repository. See also f: labels.platform-iosiOS applications specificallyr: fixedIssue is closed as already fixed in a newer version

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions