Skip to content

Height constrained expandable TextField's border pushed out of parent container #26343

@kikuchy

Description

@kikuchy

Steps to Reproduce

I want to make TextField has max height.

  1. Set maxLines of TextField widget null to expand TextField vertically.
  2. Wrap TextField with ConstrainedBox to set constraints.
  3. Run app, put new lines in TextField and contents of TextField will pushed out of ConstrainedBox. 😕
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: ConstrainedBox(
        constraints: BoxConstraints(maxHeight: 80),
        child: Container(  // for illustrating height 80
          decoration: BoxDecoration(color: Colors.lightGreen),
          child: TextField(
            maxLines: null,
            decoration: InputDecoration(  // for illustrating border of TextField
              border: OutlineInputBorder(borderSide: BorderSide(color: Colors.lightBlue))
            ),
          ),
        ),
      ),
    );
  }

simulator screen shot - iphone xr - 2019-01-10 at 13 09 39

I expect TextField fits in ConstrainedBox.

A part of TextField out of ConstrainedBox is not touchable.

Logs

$ flutter run --verbose -d 50B7F70D-CA9C-41AB-9C6D-77706A51A266

[  +28 ms] executing: [/Users/kikuchy/SDK/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[  +68 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[        ] origin/beta
[        ] executing: [/Users/kikuchy/SDK/flutter/] git rev-parse --abbrev-ref HEAD
[  +25 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[        ] beta
[        ] executing: [/Users/kikuchy/SDK/flutter/] git ls-remote --get-url origin
[  +23 ms] Exit code 0 from: git ls-remote --get-url origin
[        ] https://github.com/flutter/flutter.git
[        ] executing: [/Users/kikuchy/SDK/flutter/] git log -n 1 --pretty=format:%H
[  +21 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[        ] 5391447fae6209bb21a89e6a5a6583cac1af9b4b
[        ] executing: [/Users/kikuchy/SDK/flutter/] git log -n 1 --pretty=format:%ar
[  +19 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[   +2 ms] 6 weeks ago
[        ] executing: [/Users/kikuchy/SDK/flutter/] git describe --match v*.*.* --first-parent --long --tags
[  +39 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[        ] v1.0.0-0-g5391447fa
[ +306 ms] executing: /Users/kikuchy/Library/Android/sdk/platform-tools/adb devices -l
[  +10 ms] Exit code 0 from: /Users/kikuchy/Library/Android/sdk/platform-tools/adb devices -l
[        ] List of devices attached
           emulator-5554          device product:sdk_gphone_x86 model:Android_SDK_built_for_x86 device:generic_x86 transport_id:1
[  +11 ms] executing: idevice_id -h
[  +36 ms] /usr/bin/xcrun simctl list --json devices
[+1230 ms] Launching lib/main.dart on iPhone XR in debug mode...
[  +11 ms] executing: /usr/bin/defaults read /Users/kikuchy/tmp/textfieldsample/ios/Runner/Info CFBundleIdentifier
[  +44 ms] Exit code 0 from: /usr/bin/defaults read /Users/kikuchy/tmp/textfieldsample/ios/Runner/Info CFBundleIdentifier
[        ] $(PRODUCT_BUNDLE_IDENTIFIER)
[  +14 ms] Building Runner.app for 50B7F70D-CA9C-41AB-9C6D-77706A51A266.
[   +8 ms] executing: script /dev/null /usr/bin/log stream --style syslog --predicate processImagePath CONTAINS "50B7F70D-CA9C-41AB-9C6D-77706A51A266"
[  +33 ms] [DEVICE LOG] Filtering the log data using "processImagePath CONTAINS "50B7F70D-CA9C-41AB-9C6D-77706A51A266""
[   +4 ms] [DEVICE LOG] Timestamp                       (process)[PID]    
[ +230 ms] Skipping kernel compilation. Fingerprint match.
[ +168 ms] Building bundle
[        ] Writing asset files to build/flutter_assets
[  +45 ms] Wrote build/flutter_assets
[   +9 ms] Using legacy Xcode build system.
[  +20 ms] executing: [/Users/kikuchy/tmp/textfieldsample/ios/] /usr/bin/xcodebuild -list
[+1283 ms] Exit code 0 from: /usr/bin/xcodebuild -list
[        ] Information about project "Runner":
               Targets:
                   Runner
           Build Configurations:
               Debug
               Release
               Profile

           If no build configuration is specified and -scheme is not passed then "Release" is used.

           Schemes:
               Runner

[ +2 ms] Trying to resolve native pub services.
[ +2 ms] Looking for YAML at 'pubspec.yaml'
[ +1 ms] No services specified in the manifest
[ ] Found 0 service definition(s).
[ ] Copying service frameworks to '/Users/kikuchy/tmp/textfieldsample/ios/Frameworks'.
[ ] Creating service definitions manifest at '/Users/kikuchy/tmp/textfieldsample/ios/ServiceDefinitions.json'
[ +49 ms] Starting Xcode build...
[ +1 ms] executing: [/Users/kikuchy/tmp/textfieldsample/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/kikuchy/tmp/textfieldsample/build/ios -sdk iphonesimulator -arch x86_64
[+5272 ms] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/kikuchy/tmp/textfieldsample/build/ios
SDKROOT = iphonesimulator12.1
VERBOSE_SCRIPT_LOGGING = YES

       Prepare build
       note: Using legacy build system

       === BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION Debug ===

       Check dependencies

       ProcessProductPackaging "" /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin"


       Entitlements:

       {
           "application-identifier" = "YPUB7S9AV8.com.example.textfieldsample";
           "keychain-access-groups" =     (
               "YPUB7S9AV8.com.example.textfieldsample"
           );
       }


           builtin-productPackagingUtility -entitlements -format xml -o /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent

       PhaseScriptExecution Run\ Script /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export ACTION=build
           export AD_HOC_CODE_SIGNING_ALLOWED=YES
           export ALTERNATE_GROUP="DIVERSE-INC\\Domain Users"
           export ALTERNATE_MODE=u+w,go-w,a+rX
           export ALTERNATE_OWNER=kikuchy
           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 ARCHS=x86_64
           export ARCHS_STANDARD="i386 x86_64"
           export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
           export ARCHS_STANDARD_32_BIT=i386
           export ARCHS_STANDARD_64_BIT=x86_64
           export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
           export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
           export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
           export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
           export BITCODE_GENERATION_MODE=marker
           export BUILD_ACTIVE_RESOURCES_ONLY=YES
           export BUILD_COMPONENTS="headers build"
           export BUILD_DIR=/Users/kikuchy/tmp/textfieldsample/build/ios
           export BUILD_ROOT=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Products
           export BUILD_STYLE=
           export BUILD_VARIANTS=normal
           export BUILT_PRODUCTS_DIR=/Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator
           export CACHE_ROOT=/var/folders/nx/hp6tjtcd4c7f2_tqkdz378lwqp2rv_/C/com.apple.DeveloperTools/10.1-10B61/Xcode
           export CCHROOT=/var/folders/nx/hp6tjtcd4c7f2_tqkdz378lwqp2rv_/C/com.apple.DeveloperTools/10.1-10B61/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/kikuchy/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_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_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/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
           export CLEAN_PRECOMPS=YES
           export CLONE_HEADERS=NO
           export CODESIGNING_FOLDER_PATH=/Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app
           export CODE_SIGNING_ALLOWED=YES
           export CODE_SIGNING_REQUIRED=YES
           export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
           export CODE_SIGN_IDENTITY=-
           export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
           export COLOR_DIAGNOSTICS=NO
           export COMBINE_HIDPI_IMAGES=NO
           export COMMAND_MODE=legacy
           export COMPILER_INDEX_STORE_ENABLE=Default
           export COMPOSITE_SDK_DIRS=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/CompositeSDKs
           export COMPRESS_PNG_FILES=YES
           export CONFIGURATION=Debug
           export CONFIGURATION_BUILD_DIR=/Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator
           export CONFIGURATION_TEMP_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
           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_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
           export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
           export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.1.sdk
           export CORRESPONDING_DEVICE_SDK_NAME=iphoneos12.1
           export CP=/bin/cp
           export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
           export CURRENT_ARCH=x86_64
           export CURRENT_PROJECT_VERSION=1
           export CURRENT_VARIANT=normal
           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_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=mios-simulator-version-min
           export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
           export DEPLOYMENT_TARGET_LD_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
           export DEPLOYMENT_TARGET_LD_FLAG_NAME=ios_simulator_version_min
           export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
           export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1"
           export DERIVED_FILES_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
           export DERIVED_FILE_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
           export DERIVED_SOURCES_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
           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=English
           export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
           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/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator
           export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
           export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
           export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
           export ENABLE_BITCODE=NO
           export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
           export ENABLE_HEADER_DEPENDENCIES=YES
           export ENABLE_ON_DEMAND_RESOURCES=YES
           export ENABLE_STRICT_OBJC_MSGSEND=YES
           export ENABLE_TESTABILITY=YES
           export ENTITLEMENTS_DESTINATION=__entitlements
           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=-
           export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
           export EXPANDED_PROVISIONING_PROFILE=
           export FILE_LIST=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
           export FIXED_FILES_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
           export FLUTTER_APPLICATION_PATH=/Users/kikuchy/tmp/textfieldsample
           export FLUTTER_BUILD_DIR=build
           export FLUTTER_BUILD_NAME=1.0.0
           export FLUTTER_BUILD_NUMBER=1
           export FLUTTER_FRAMEWORK_DIR=/Users/kikuchy/SDK/flutter/bin/cache/artifacts/engine/ios
           export FLUTTER_ROOT=/Users/kikuchy/SDK/flutter
           export FLUTTER_TARGET=/Users/kikuchy/tmp/textfieldsample/lib/main.dart
           export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
           export FRAMEWORK_FLAG_PREFIX=-framework
           export FRAMEWORK_SEARCH_PATHS="/Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator  /Users/kikuchy/tmp/textfieldsample/ios/Flutter"
           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_OBJC_LEGACY_DISPATCH=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_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 GENERATE_MASTER_OBJECT_FILE=NO
           export GENERATE_PKGINFO_FILE=YES
           export GENERATE_PROFILING_CODE=NO
           export GENERATE_TEXT_BASED_STUBS=NO
           export GID=325802232
           export GROUP="DIVERSE-INC\\Domain Users"
           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/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/include "
           export HIDE_BITCODE_SYMBOLS=YES
           export HOME=/Users/kikuchy
           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/English.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="DIVERSE-INC\\Domain Users"
           export INSTALL_MODE_FLAG=u+w,go-w,a+rX
           export INSTALL_OWNER=kikuchy
           export INSTALL_PATH=/Applications
           export INSTALL_ROOT=/tmp/Runner.dst
           export IPHONEOS_DEPLOYMENT_TARGET=8.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 KEEP_PRIVATE_EXTERNS=NO
           export LD_DEPENDENCY_INFO_FILE=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
           export LD_GENERATE_MAP_FILE=NO
           export LD_MAP_FILE_PATH=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.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_FLAG_NOSPACE=YES
           export LIBRARY_FLAG_PREFIX=-l
           export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
           export LIBRARY_SEARCH_PATHS="/Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator  /Users/kikuchy/tmp/textfieldsample/ios/Flutter"
           export LINKER_DISPLAYS_MANGLED_NAMES=NO
           export LINK_FILE_LIST_normal_x86_64=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
           export LINK_WITH_STANDARD_LIBRARIES=YES
           export LLVM_TARGET_TRIPLE_SUFFIX=-simulator
           export LOCALIZABLE_CONTENT_DIR=
           export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
           export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString"
           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=
           export LOCSYMROOT=
           export MACH_O_TYPE=mh_execute
           export MAC_OS_X_PRODUCT_BUILD_VERSION=17G4015
           export MAC_OS_X_VERSION_ACTUAL=101306
           export MAC_OS_X_VERSION_MAJOR=101300
           export MAC_OS_X_VERSION_MINOR=1306
           export METAL_LIBRARY_FILE_BASE=default
           export METAL_LIBRARY_OUTPUT_DIR=/Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app
           export MODULE_CACHE_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
           export MTL_ENABLE_DEBUG_INFO=YES
           export NATIVE_ARCH=i386
           export NATIVE_ARCH_32_BIT=i386
           export NATIVE_ARCH_64_BIT=x86_64
           export NATIVE_ARCH_ACTUAL=x86_64
           export NO_COMMON=YES
           export OBJC_ABI_VERSION=2
           export OBJECT_FILE_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
           export OBJECT_FILE_DIR_normal=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
           export OBJROOT=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex
           export ONLY_ACTIVE_ARCH=YES
           export OS=MACOS
           export OSAC=/usr/bin/osacompile
           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/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Users/kikuchy/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/.pub-cache/bin"
           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 PFE_FILE_C_DIALECTS=objective-c
           export PKGINFO_FILE_PATH=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
           export PKGINFO_PATH=Runner.app/PkgInfo
           export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
           export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
           export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
           export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
           export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
           export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
           export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
           export PLATFORM_DISPLAY_NAME="iOS Simulator"
           export PLATFORM_NAME=iphonesimulator
           export PLATFORM_PREFERRED_ARCH=x86_64
           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/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/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.textfieldsample
           export PRODUCT_MODULE_NAME=Runner
           export PRODUCT_NAME=Runner
           export PRODUCT_SETTINGS_PATH=/Users/kikuchy/tmp/textfieldsample/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/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/DerivedSources
           export PROJECT_DIR=/Users/kikuchy/tmp/textfieldsample/ios
           export PROJECT_FILE_PATH=/Users/kikuchy/tmp/textfieldsample/ios/Runner.xcodeproj
           export PROJECT_NAME=Runner
           export PROJECT_TEMP_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build
           export PROJECT_TEMP_ROOT=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex
           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 REZ_COLLECTOR_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
           export REZ_OBJECTS_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
           export REZ_SEARCH_PATHS="/Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator "
           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 SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
           export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
           export SDK_DIR_iphonesimulator12_1=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
           export SDK_NAME=iphonesimulator12.1
           export SDK_NAMES=iphonesimulator12.1
           export SDK_PRODUCT_BUILD_VERSION=16B91
           export SDK_VERSION=12.1
           export SDK_VERSION_ACTUAL=120100
           export SDK_VERSION_MAJOR=120000
           export SDK_VERSION_MINOR=100
           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/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/DerivedSources
           export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
           export SHARED_PRECOMPS_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/PrecompiledHeaders
           export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
           export SKIP_INSTALL=NO
           export SOURCE_ROOT=/Users/kikuchy/tmp/textfieldsample/ios
           export SRCROOT=/Users/kikuchy/tmp/textfieldsample/ios
           export STRINGS_FILE_OUTPUT_ENCODING=binary
           export STRIP_BITCODE_FROM_COPIED_FILES=NO
           export STRIP_INSTALLED_PRODUCT=YES
           export STRIP_STYLE=all
           export STRIP_SWIFT_SYMBOLS=YES
           export SUPPORTED_DEVICE_FAMILIES=1,2
           export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
           export SUPPORTS_TEXT_BASED_API=NO
           export SWIFT_PLATFORM_TARGET_PREFIX=ios
           export SYMROOT=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/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_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/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator
           export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder"
           export TARGET_NAME=Runner
           export TARGET_TEMP_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
           export TEMP_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
           export TEMP_FILES_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
           export TEMP_FILE_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
           export TEMP_ROOT=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex
           export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
           export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
           export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
           export UID=794911594
           export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
           export UNSTRIPPED_PRODUCT=NO
           export USER=kikuchy
           export USER_APPS_DIR=/Users/kikuchy/Applications
           export USER_LIBRARY_DIR=/Users/kikuchy/Library
           export USE_DYNAMIC_NO_PIC=YES
           export USE_HEADERMAP=YES
           export USE_HEADER_SYMLINKS=NO
           export VALIDATE_PRODUCT=NO
           export VALID_ARCHS="i386 x86_64"
           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=kikuchy
           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=10B61
           export XCODE_VERSION_ACTUAL=1010
           export XCODE_VERSION_MAJOR=1000
           export XCODE_VERSION_MINOR=1010
           export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
           export YACC=yacc
           export arch=x86_64
           export variant=normal
           /bin/sh -c /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
       ♦ mkdir -p -- /Users/kikuchy/tmp/textfieldsample/ios/Flutter
       ♦ rm -rf -- /Users/kikuchy/tmp/textfieldsample/ios/Flutter/App.framework
       ♦ rm -rf -- /Users/kikuchy/tmp/textfieldsample/ios/Flutter/Flutter.framework
       ♦ cp -r -- /Users/kikuchy/SDK/flutter/bin/cache/artifacts/engine/ios/Flutter.framework /Users/kikuchy/tmp/textfieldsample/ios/Flutter
       ♦ find /Users/kikuchy/tmp/textfieldsample/ios/Flutter/Flutter.framework -type f -exec chmod a-w {} ;
       ♦ mkdir -p -- /Users/kikuchy/tmp/textfieldsample/ios/Flutter/App.framework
       ♦ eval 
       ♦ cp -- /Users/kikuchy/tmp/textfieldsample/ios/Flutter/AppFrameworkInfo.plist /Users/kikuchy/tmp/textfieldsample/ios/Flutter/App.framework/Info.plist
       ♦ /Users/kikuchy/SDK/flutter/bin/flutter --suppress-analytics --verbose build bundle --target-platform=ios --target=/Users/kikuchy/tmp/textfieldsample/lib/main.dart --debug --depfile=build/snapshot_blob.bin.d --asset-dir=/Users/kikuchy/tmp/textfieldsample/ios/Flutter/flutter_assets
       [   +7 ms] executing: [/Users/kikuchy/SDK/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
       [  +37 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
       [        ] origin/beta
       [        ] executing: [/Users/kikuchy/SDK/flutter/] git rev-parse --abbrev-ref HEAD
       [  +10 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
       [        ] beta
       [        ] executing: [/Users/kikuchy/SDK/flutter/] git ls-remote --get-url origin
       [  +11 ms] Exit code 0 from: git ls-remote --get-url origin
       [        ] https://github.com/flutter/flutter.git
       [        ] executing: [/Users/kikuchy/SDK/flutter/] git log -n 1 --pretty=format:%H
       [  +15 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
       [        ] 5391447fae6209bb21a89e6a5a6583cac1af9b4b
       [        ] executing: [/Users/kikuchy/SDK/flutter/] git log -n 1 --pretty=format:%ar
       [  +12 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
       [        ] 6 weeks ago
       [        ] executing: [/Users/kikuchy/SDK/flutter/] git describe --match v*.*.* --first-parent --long --tags
       [  +34 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
       [        ] v1.0.0-0-g5391447fa
       [ +631 ms] Skipping kernel compilation. Fingerprint match.
       [ +119 ms] Building bundle
       [        ] Writing asset files to /Users/kikuchy/tmp/textfieldsample/ios/Flutter/flutter_assets
       [  +49 ms] Wrote /Users/kikuchy/tmp/textfieldsample/ios/Flutter/flutter_assets
       [   +7 ms] "flutter bundle" took 674ms.
       Project /Users/kikuchy/tmp/textfieldsample built and packaged successfully.

       CompileC /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o Runner/main.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export LANG=en_US.US-ASCII
           export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin"
           /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/kikuchy/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/kikuchy/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 -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 -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Index/DataStore -iquote /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/include -I/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator -F/Users/kikuchy/tmp/textfieldsample/ios/Flutter -MMD -MT dependencies -MF /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.d --serialize-diagnostics /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.dia -c /Users/kikuchy/tmp/textfieldsample/ios/Runner/main.m -o /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o

       CompileC /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o Runner/AppDelegate.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export LANG=en_US.US-ASCII
           export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin"
           /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/kikuchy/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/kikuchy/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 -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 -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Index/DataStore -iquote /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/include -I/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator -F/Users/kikuchy/tmp/textfieldsample/ios/Flutter -MMD -MT dependencies -MF /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.d --serialize-diagnostics /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.dia -c /Users/kikuchy/tmp/textfieldsample/ios/Runner/AppDelegate.m -o /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o

       CompileC /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export LANG=en_US.US-ASCII
           export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin"
           /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/kikuchy/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/kikuchy/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 -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 -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Index/DataStore -iquote /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/include -I/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator -F/Users/kikuchy/tmp/textfieldsample/ios/Flutter -MMD -MT dependencies -MF /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d --serialize-diagnostics /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.dia -c /Users/kikuchy/tmp/textfieldsample/ios/Runner/GeneratedPluginRegistrant.m -o /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o

       Ld /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export IPHONEOS_DEPLOYMENT_TARGET=8.0
           export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin"
           /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -L/Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator -L/Users/kikuchy/tmp/textfieldsample/ios/Flutter -F/Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator -F/Users/kikuchy/tmp/textfieldsample/ios/Flutter -filelist /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=8.0 -dead_strip -Xlinker -object_path_lto -Xlinker /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent -framework Flutter -framework App -Xlinker -dependency_info -Xlinker /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat -o /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/Runner

       CopyPlistFile /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/AppFrameworkInfo.plist Flutter/AppFrameworkInfo.plist
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin"
           builtin-copyPlist --convert binary1 --outdir /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app -- Flutter/AppFrameworkInfo.plist

       CpResource Flutter/flutter_assets /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/flutter_assets
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin"
           builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/kikuchy/tmp/textfieldsample/ios/Flutter/flutter_assets /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app

       CpResource Flutter/Debug.xcconfig /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/Debug.xcconfig
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin"
           builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/kikuchy/tmp/textfieldsample/ios/Flutter/Debug.xcconfig /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app

       CompileStoryboard Runner/Base.lproj/LaunchScreen.storyboard
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin"
           export XCODE_DEVELOPER_USR_PATH=/Applications/Xcode.app/Contents/Developer/usr/bin/..
           /Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --module Runner --output-partial-info-plist /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist --auto-activate-custom-fonts --target-device iphone --target-device ipad --minimum-deployment-target 8.0 --output-format human-readable-text --compilation-directory /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj /Users/kikuchy/tmp/textfieldsample/ios/Runner/Base.lproj/LaunchScreen.storyboard

       CompileAssetCatalog /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app Runner/Assets.xcassets
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin"
           /Applications/Xcode.app/Contents/Developer/usr/bin/actool --output-format human-readable-text --notices --warnings --export-dependency-info /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_dependencies --output-partial-info-plist /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist --app-icon AppIcon --compress-pngs --enable-on-demand-resources YES --sticker-pack-identifier-prefix com.example.textfieldsample.sticker-pack. --target-device iphone --target-device ipad --minimum-deployment-target 8.0 --platform iphonesimulator --product-type com.apple.product-type.application --compile /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app /Users/kikuchy/tmp/textfieldsample/ios/Runner/Assets.xcassets
       /* com.apple.actool.compilation-results */
       /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/[email protected]
       /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/[email protected]
       /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/AppIcon29x29.png
       /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/[email protected]
       /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/[email protected]
       /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/[email protected]
       /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/[email protected]
       /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/[email protected]
       /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/[email protected]
       /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/AppIcon20x20~ipad.png
       /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/AppIcon20x20@2x~ipad.png
       /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/AppIcon29x29~ipad.png
       /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/AppIcon29x29@2x~ipad.png
       /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/AppIcon40x40~ipad.png
       /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/AppIcon40x40@2x~ipad.png
       /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/AppIcon76x76~ipad.png
       /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/AppIcon76x76@2x~ipad.png
       /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/AppIcon83.5x83.5@2x~ipad.png
       /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/Assets.car
       /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist


       CompileStoryboard Runner/Base.lproj/Main.storyboard
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin"
           export XCODE_DEVELOPER_USR_PATH=/Applications/Xcode.app/Contents/Developer/usr/bin/..
           /Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --module Runner --output-partial-info-plist /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist --auto-activate-custom-fonts --target-device iphone --target-device ipad --minimum-deployment-target 8.0 --output-format human-readable-text --compilation-directory /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj /Users/kikuchy/tmp/textfieldsample/ios/Runner/Base.lproj/Main.storyboard

       ProcessInfoPlistFile /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/Info.plist Runner/Info.plist
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin"
           builtin-infoPlistUtility /Users/kikuchy/tmp/textfieldsample/ios/Runner/Info.plist -genpkginfo /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/PkgInfo -expandbuildsettings -format binary -platform iphonesimulator -additionalcontentfile /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist -additionalcontentfile /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist -additionalcontentfile /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist -o /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/Info.plist

       LinkStoryboards
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin"
           export XCODE_DEVELOPER_USR_PATH=/Applications/Xcode.app/Contents/Developer/usr/bin/..
           /Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --module Runner --target-device iphone --target-device ipad --minimum-deployment-target 8.0 --output-format human-readable-text --link /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main.storyboardc /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen.storyboardc

       PBXCp Flutter/App.framework /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin"
           builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -exclude Headers -exclude PrivateHeaders -exclude Modules -exclude *.tbd -resolve-src-symlinks /Users/kikuchy/tmp/textfieldsample/ios/Flutter/App.framework /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/Frameworks

       PBXCp Flutter/Flutter.framework /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin"
           builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -exclude Headers -exclude PrivateHeaders -exclude Modules -exclude *.tbd -resolve-src-symlinks /Users/kikuchy/tmp/textfieldsample/ios/Flutter/Flutter.framework /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/Frameworks

       ProcessProductPackaging "" /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/App.framework.xcent
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin"


       Entitlements:

       {
           "com.apple.security.get-task-allow" = 1;
       }


           builtin-productPackagingUtility -entitlements -format xml -o /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/App.framework.xcent

       ProcessProductPackaging "" /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Flutter.framework.xcent
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin"


       Entitlements:

       {
           "com.apple.security.get-task-allow" = 1;
       }


           builtin-productPackagingUtility -entitlements -format xml -o /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Flutter.framework.xcent

       CodeSign /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
           export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin"

       Signing Identity:     "-"

           /usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework

       CodeSign /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
           export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin"

       Signing Identity:     "-"

           /usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework

       PhaseScriptExecution Thin\ Binary /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export ACTION=build
           export AD_HOC_CODE_SIGNING_ALLOWED=YES
           export ALTERNATE_GROUP="DIVERSE-INC\\Domain Users"
           export ALTERNATE_MODE=u+w,go-w,a+rX
           export ALTERNATE_OWNER=kikuchy
           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 ARCHS=x86_64
           export ARCHS_STANDARD="i386 x86_64"
           export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
           export ARCHS_STANDARD_32_BIT=i386
           export ARCHS_STANDARD_64_BIT=x86_64
           export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
           export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
           export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
           export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
           export BITCODE_GENERATION_MODE=marker
           export BUILD_ACTIVE_RESOURCES_ONLY=YES
           export BUILD_COMPONENTS="headers build"
           export BUILD_DIR=/Users/kikuchy/tmp/textfieldsample/build/ios
           export BUILD_ROOT=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Products
           export BUILD_STYLE=
           export BUILD_VARIANTS=normal
           export BUILT_PRODUCTS_DIR=/Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator
           export CACHE_ROOT=/var/folders/nx/hp6tjtcd4c7f2_tqkdz378lwqp2rv_/C/com.apple.DeveloperTools/10.1-10B61/Xcode
           export CCHROOT=/var/folders/nx/hp6tjtcd4c7f2_tqkdz378lwqp2rv_/C/com.apple.DeveloperTools/10.1-10B61/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/kikuchy/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_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_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/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
           export CLEAN_PRECOMPS=YES
           export CLONE_HEADERS=NO
           export CODESIGNING_FOLDER_PATH=/Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app
           export CODE_SIGNING_ALLOWED=YES
           export CODE_SIGNING_REQUIRED=YES
           export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
           export CODE_SIGN_IDENTITY=-
           export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
           export COLOR_DIAGNOSTICS=NO
           export COMBINE_HIDPI_IMAGES=NO
           export COMMAND_MODE=legacy
           export COMPILER_INDEX_STORE_ENABLE=Default
           export COMPOSITE_SDK_DIRS=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/CompositeSDKs
           export COMPRESS_PNG_FILES=YES
           export CONFIGURATION=Debug
           export CONFIGURATION_BUILD_DIR=/Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator
           export CONFIGURATION_TEMP_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
           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_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
           export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
           export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.1.sdk
           export CORRESPONDING_DEVICE_SDK_NAME=iphoneos12.1
           export CP=/bin/cp
           export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
           export CURRENT_ARCH=x86_64
           export CURRENT_PROJECT_VERSION=1
           export CURRENT_VARIANT=normal
           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_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=mios-simulator-version-min
           export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
           export DEPLOYMENT_TARGET_LD_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
           export DEPLOYMENT_TARGET_LD_FLAG_NAME=ios_simulator_version_min
           export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
           export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1"
           export DERIVED_FILES_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
           export DERIVED_FILE_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
           export DERIVED_SOURCES_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
           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=English
           export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
           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/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator
           export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
           export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
           export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
           export ENABLE_BITCODE=NO
           export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
           export ENABLE_HEADER_DEPENDENCIES=YES
           export ENABLE_ON_DEMAND_RESOURCES=YES
           export ENABLE_STRICT_OBJC_MSGSEND=YES
           export ENABLE_TESTABILITY=YES
           export ENTITLEMENTS_DESTINATION=__entitlements
           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=-
           export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
           export EXPANDED_PROVISIONING_PROFILE=
           export FILE_LIST=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
           export FIXED_FILES_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
           export FLUTTER_APPLICATION_PATH=/Users/kikuchy/tmp/textfieldsample
           export FLUTTER_BUILD_DIR=build
           export FLUTTER_BUILD_NAME=1.0.0
           export FLUTTER_BUILD_NUMBER=1
           export FLUTTER_FRAMEWORK_DIR=/Users/kikuchy/SDK/flutter/bin/cache/artifacts/engine/ios
           export FLUTTER_ROOT=/Users/kikuchy/SDK/flutter
           export FLUTTER_TARGET=/Users/kikuchy/tmp/textfieldsample/lib/main.dart
           export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
           export FRAMEWORK_FLAG_PREFIX=-framework
           export FRAMEWORK_SEARCH_PATHS="/Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator  /Users/kikuchy/tmp/textfieldsample/ios/Flutter"
           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_OBJC_LEGACY_DISPATCH=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_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 GENERATE_MASTER_OBJECT_FILE=NO
           export GENERATE_PKGINFO_FILE=YES
           export GENERATE_PROFILING_CODE=NO
           export GENERATE_TEXT_BASED_STUBS=NO
           export GID=325802232
           export GROUP="DIVERSE-INC\\Domain Users"
           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/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/include "
           export HIDE_BITCODE_SYMBOLS=YES
           export HOME=/Users/kikuchy
           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/English.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="DIVERSE-INC\\Domain Users"
           export INSTALL_MODE_FLAG=u+w,go-w,a+rX
           export INSTALL_OWNER=kikuchy
           export INSTALL_PATH=/Applications
           export INSTALL_ROOT=/tmp/Runner.dst
           export IPHONEOS_DEPLOYMENT_TARGET=8.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 KEEP_PRIVATE_EXTERNS=NO
           export LD_DEPENDENCY_INFO_FILE=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
           export LD_GENERATE_MAP_FILE=NO
           export LD_MAP_FILE_PATH=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.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_FLAG_NOSPACE=YES
           export LIBRARY_FLAG_PREFIX=-l
           export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
           export LIBRARY_SEARCH_PATHS="/Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator  /Users/kikuchy/tmp/textfieldsample/ios/Flutter"
           export LINKER_DISPLAYS_MANGLED_NAMES=NO
           export LINK_FILE_LIST_normal_x86_64=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
           export LINK_WITH_STANDARD_LIBRARIES=YES
           export LLVM_TARGET_TRIPLE_SUFFIX=-simulator
           export LOCALIZABLE_CONTENT_DIR=
           export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
           export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString"
           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=
           export LOCSYMROOT=
           export MACH_O_TYPE=mh_execute
           export MAC_OS_X_PRODUCT_BUILD_VERSION=17G4015
           export MAC_OS_X_VERSION_ACTUAL=101306
           export MAC_OS_X_VERSION_MAJOR=101300
           export MAC_OS_X_VERSION_MINOR=1306
           export METAL_LIBRARY_FILE_BASE=default
           export METAL_LIBRARY_OUTPUT_DIR=/Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app
           export MODULE_CACHE_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
           export MTL_ENABLE_DEBUG_INFO=YES
           export NATIVE_ARCH=i386
           export NATIVE_ARCH_32_BIT=i386
           export NATIVE_ARCH_64_BIT=x86_64
           export NATIVE_ARCH_ACTUAL=x86_64
           export NO_COMMON=YES
           export OBJC_ABI_VERSION=2
           export OBJECT_FILE_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
           export OBJECT_FILE_DIR_normal=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
           export OBJROOT=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex
           export ONLY_ACTIVE_ARCH=YES
           export OS=MACOS
           export OSAC=/usr/bin/osacompile
           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/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Users/kikuchy/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/.pub-cache/bin"
           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 PFE_FILE_C_DIALECTS=objective-c
           export PKGINFO_FILE_PATH=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
           export PKGINFO_PATH=Runner.app/PkgInfo
           export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
           export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
           export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
           export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
           export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
           export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
           export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
           export PLATFORM_DISPLAY_NAME="iOS Simulator"
           export PLATFORM_NAME=iphonesimulator
           export PLATFORM_PREFERRED_ARCH=x86_64
           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/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/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.textfieldsample
           export PRODUCT_MODULE_NAME=Runner
           export PRODUCT_NAME=Runner
           export PRODUCT_SETTINGS_PATH=/Users/kikuchy/tmp/textfieldsample/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/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/DerivedSources
           export PROJECT_DIR=/Users/kikuchy/tmp/textfieldsample/ios
           export PROJECT_FILE_PATH=/Users/kikuchy/tmp/textfieldsample/ios/Runner.xcodeproj
           export PROJECT_NAME=Runner
           export PROJECT_TEMP_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build
           export PROJECT_TEMP_ROOT=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex
           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 REZ_COLLECTOR_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
           export REZ_OBJECTS_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
           export REZ_SEARCH_PATHS="/Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator "
           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 SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
           export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
           export SDK_DIR_iphonesimulator12_1=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
           export SDK_NAME=iphonesimulator12.1
           export SDK_NAMES=iphonesimulator12.1
           export SDK_PRODUCT_BUILD_VERSION=16B91
           export SDK_VERSION=12.1
           export SDK_VERSION_ACTUAL=120100
           export SDK_VERSION_MAJOR=120000
           export SDK_VERSION_MINOR=100
           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/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/DerivedSources
           export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
           export SHARED_PRECOMPS_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/PrecompiledHeaders
           export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
           export SKIP_INSTALL=NO
           export SOURCE_ROOT=/Users/kikuchy/tmp/textfieldsample/ios
           export SRCROOT=/Users/kikuchy/tmp/textfieldsample/ios
           export STRINGS_FILE_OUTPUT_ENCODING=binary
           export STRIP_BITCODE_FROM_COPIED_FILES=NO
           export STRIP_INSTALLED_PRODUCT=YES
           export STRIP_STYLE=all
           export STRIP_SWIFT_SYMBOLS=YES
           export SUPPORTED_DEVICE_FAMILIES=1,2
           export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
           export SUPPORTS_TEXT_BASED_API=NO
           export SWIFT_PLATFORM_TARGET_PREFIX=ios
           export SYMROOT=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/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_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/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator
           export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder"
           export TARGET_NAME=Runner
           export TARGET_TEMP_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
           export TEMP_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
           export TEMP_FILES_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
           export TEMP_FILE_DIR=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
           export TEMP_ROOT=/Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex
           export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
           export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
           export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
           export UID=794911594
           export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
           export UNSTRIPPED_PRODUCT=NO
           export USER=kikuchy
           export USER_APPS_DIR=/Users/kikuchy/Applications
           export USER_LIBRARY_DIR=/Users/kikuchy/Library
           export USE_DYNAMIC_NO_PIC=YES
           export USE_HEADERMAP=YES
           export USE_HEADER_SYMLINKS=NO
           export VALIDATE_PRODUCT=NO
           export VALID_ARCHS="i386 x86_64"
           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=kikuchy
           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=10B61
           export XCODE_VERSION_ACTUAL=1010
           export XCODE_VERSION_MAJOR=1000
           export XCODE_VERSION_MINOR=1010
           export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
           export YACC=yacc
           export arch=x86_64
           export variant=normal
           /bin/sh -c /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh

       Touch /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin"
           /usr/bin/touch -c /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app

       ProcessProductPackaging "" /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin"


       Entitlements:

       {
           "com.apple.security.get-task-allow" = 1;
       }


           builtin-productPackagingUtility -entitlements -format xml -o /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent

       CodeSign /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app
           cd /Users/kikuchy/tmp/textfieldsample/ios
           export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
           export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin"

       Signing Identity:     "-"

           /usr/bin/codesign --force --sign - --entitlements /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent --timestamp=none /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app

       ** BUILD SUCCEEDED **

[ +14 ms] Starting Xcode build... (completed)
[ +11 ms] Xcode build done. 5.3s
[ ] executing: [/Users/kikuchy/tmp/textfieldsample/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/kikuchy/tmp/textfieldsample/build/ios -sdk iphonesimulator -arch x86_64 -showBuildSettings
[+1086 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/kikuchy/tmp/textfieldsample/build/ios -sdk iphonesimulator -arch x86_64 -showBuildSettings
[ ] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/kikuchy/tmp/textfieldsample/build/ios
SDKROOT = iphonesimulator12.1
VERBOSE_SCRIPT_LOGGING = YES

       Build settings for action build and target Runner:
           ACTION = build
           AD_HOC_CODE_SIGNING_ALLOWED = YES
           ALTERNATE_GROUP = DIVERSE-INC\Domain Users
           ALTERNATE_MODE = u+w,go-w,a+rX
           ALTERNATE_OWNER = kikuchy
           ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
           ALWAYS_SEARCH_USER_PATHS = NO
           ALWAYS_USE_SEPARATE_HEADERMAPS = NO
           APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
           APPLE_INTERNAL_DIR = /AppleInternal
           APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
           APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
           APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
           APPLICATION_EXTENSION_API_ONLY = NO
           APPLY_RULES_IN_COPY_FILES = NO
           ARCHS = x86_64
           ARCHS_STANDARD = i386 x86_64
           ARCHS_STANDARD_32_64_BIT = i386 x86_64
           ARCHS_STANDARD_32_BIT = i386
           ARCHS_STANDARD_64_BIT = x86_64
           ARCHS_STANDARD_INCLUDING_64_BIT = i386 x86_64
           ARCHS_UNIVERSAL_IPHONE_OS = i386 x86_64
           ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
           AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
           BITCODE_GENERATION_MODE = marker
           BUILD_ACTIVE_RESOURCES_ONLY = NO
           BUILD_COMPONENTS = headers build
           BUILD_DIR = /Users/kikuchy/tmp/textfieldsample/build/ios
           BUILD_ROOT = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Products
           BUILD_STYLE = 
           BUILD_VARIANTS = normal
           BUILT_PRODUCTS_DIR = /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator
           CACHE_ROOT = /var/folders/nx/hp6tjtcd4c7f2_tqkdz378lwqp2rv_/C/com.apple.DeveloperTools/10.1-10B61/Xcode
           CCHROOT = /var/folders/nx/hp6tjtcd4c7f2_tqkdz378lwqp2rv_/C/com.apple.DeveloperTools/10.1-10B61/Xcode
           CHMOD = /bin/chmod
           CHOWN = /usr/sbin/chown
           CLANG_ANALYZER_NONNULL = YES
           CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
           CLANG_CXX_LIBRARY = libc++
           CLANG_ENABLE_MODULES = YES
           CLANG_ENABLE_OBJC_ARC = YES
           CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
           CLANG_WARN_BOOL_CONVERSION = YES
           CLANG_WARN_COMMA = YES
           CLANG_WARN_CONSTANT_CONVERSION = YES
           CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
           CLANG_WARN_EMPTY_BODY = YES
           CLANG_WARN_ENUM_CONVERSION = YES
           CLANG_WARN_INFINITE_RECURSION = YES
           CLANG_WARN_INT_CONVERSION = YES
           CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
           CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
           CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
           CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
           CLANG_WARN_STRICT_PROTOTYPES = YES
           CLANG_WARN_SUSPICIOUS_MOVE = YES
           CLANG_WARN_UNREACHABLE_CODE = YES
           CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
           CLASS_FILE_DIR = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
           CLEAN_PRECOMPS = YES
           CLONE_HEADERS = NO
           CODESIGNING_FOLDER_PATH = /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app
           CODE_SIGNING_ALLOWED = YES
           CODE_SIGNING_REQUIRED = YES
           CODE_SIGN_CONTEXT_CLASS = XCiPhoneSimulatorCodeSignContext
           CODE_SIGN_IDENTITY = -
           CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
           COLOR_DIAGNOSTICS = NO
           COMBINE_HIDPI_IMAGES = NO
           COMPILER_INDEX_STORE_ENABLE = Default
           COMPOSITE_SDK_DIRS = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/CompositeSDKs
           COMPRESS_PNG_FILES = YES
           CONFIGURATION = Debug
           CONFIGURATION_BUILD_DIR = /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator
           CONFIGURATION_TEMP_DIR = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
           CONTENTS_FOLDER_PATH = Runner.app
           COPYING_PRESERVES_HFS_DATA = NO
           COPY_HEADERS_RUN_UNIFDEF = NO
           COPY_PHASE_STRIP = NO
           COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
           CORRESPONDING_DEVICE_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
           CORRESPONDING_DEVICE_PLATFORM_NAME = iphoneos
           CORRESPONDING_DEVICE_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.1.sdk
           CORRESPONDING_DEVICE_SDK_NAME = iphoneos12.1
           CP = /bin/cp
           CREATE_INFOPLIST_SECTION_IN_BINARY = NO
           CURRENT_ARCH = x86_64
           CURRENT_PROJECT_VERSION = 1
           CURRENT_VARIANT = normal
           DEAD_CODE_STRIPPING = YES
           DEBUGGING_SYMBOLS = YES
           DEBUG_INFORMATION_FORMAT = dwarf
           DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
           DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
           DEFINES_MODULE = NO
           DEPLOYMENT_LOCATION = NO
           DEPLOYMENT_POSTPROCESSING = NO
           DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
           DEPLOYMENT_TARGET_CLANG_FLAG_NAME = mios-simulator-version-min
           DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -mios-simulator-version-min=
           DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
           DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_simulator_version_min
           DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
           DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1
           DERIVED_FILES_DIR = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
           DERIVED_FILE_DIR = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
           DERIVED_SOURCES_DIR = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
           DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
           DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
           DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
           DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
           DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
           DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
           DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
           DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
           DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
           DEVELOPMENT_LANGUAGE = English
           DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
           DO_HEADER_SCANNING_IN_JAM = NO
           DSTROOT = /tmp/Runner.dst
           DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
           DWARF_DSYM_FILE_NAME = Runner.app.dSYM
           DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
           DWARF_DSYM_FOLDER_PATH = /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator
           EFFECTIVE_PLATFORM_NAME = -iphonesimulator
           EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
           EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
           ENABLE_BITCODE = NO
           ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
           ENABLE_HEADER_DEPENDENCIES = YES
           ENABLE_ON_DEMAND_RESOURCES = YES
           ENABLE_STRICT_OBJC_MSGSEND = YES
           ENABLE_TESTABILITY = YES
           ENTITLEMENTS_DESTINATION = __entitlements
           ENTITLEMENTS_REQUIRED = YES
           EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
           EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
           EXECUTABLES_FOLDER_PATH = Runner.app/Executables
           EXECUTABLE_FOLDER_PATH = Runner.app
           EXECUTABLE_NAME = Runner
           EXECUTABLE_PATH = Runner.app/Runner
           EXPANDED_CODE_SIGN_IDENTITY = 
           EXPANDED_CODE_SIGN_IDENTITY_NAME = 
           EXPANDED_PROVISIONING_PROFILE = 
           FILE_LIST = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
           FIXED_FILES_DIR = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
           FLUTTER_APPLICATION_PATH = /Users/kikuchy/tmp/textfieldsample
           FLUTTER_BUILD_DIR = build
           FLUTTER_BUILD_NAME = 1.0.0
           FLUTTER_BUILD_NUMBER = 1
           FLUTTER_FRAMEWORK_DIR = /Users/kikuchy/SDK/flutter/bin/cache/artifacts/engine/ios
           FLUTTER_ROOT = /Users/kikuchy/SDK/flutter
           FLUTTER_TARGET = /Users/kikuchy/tmp/textfieldsample/lib/main.dart
           FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
           FRAMEWORK_FLAG_PREFIX = -framework
           FRAMEWORK_SEARCH_PATHS =  /Users/kikuchy/tmp/textfieldsample/ios/Flutter
           FRAMEWORK_VERSION = A
           FULL_PRODUCT_NAME = Runner.app
           GCC3_VERSION = 3.3
           GCC_C_LANGUAGE_STANDARD = gnu99
           GCC_DYNAMIC_NO_PIC = NO
           GCC_INLINES_ARE_PRIVATE_EXTERN = YES
           GCC_NO_COMMON_BLOCKS = YES
           GCC_OBJC_LEGACY_DISPATCH = YES
           GCC_OPTIMIZATION_LEVEL = 0
           GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
           GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1 
           GCC_SYMBOLS_PRIVATE_EXTERN = NO
           GCC_TREAT_WARNINGS_AS_ERRORS = NO
           GCC_VERSION = com.apple.compilers.llvm.clang.1_0
           GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
           GCC_WARN_64_TO_32_BIT_CONVERSION = YES
           GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
           GCC_WARN_UNDECLARED_SELECTOR = YES
           GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
           GCC_WARN_UNUSED_FUNCTION = YES
           GCC_WARN_UNUSED_VARIABLE = YES
           GENERATE_MASTER_OBJECT_FILE = NO
           GENERATE_PKGINFO_FILE = YES
           GENERATE_PROFILING_CODE = NO
           GENERATE_TEXT_BASED_STUBS = NO
           GID = 325802232
           GROUP = DIVERSE-INC\Domain Users
           HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
           HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
           HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
           HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
           HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
           HEADERMAP_USES_VFS = NO
           HIDE_BITCODE_SYMBOLS = YES
           HOME = /Users/kikuchy
           ICONV = /usr/bin/iconv
           INFOPLIST_EXPAND_BUILD_SETTINGS = YES
           INFOPLIST_FILE = Runner/Info.plist
           INFOPLIST_OUTPUT_FORMAT = binary
           INFOPLIST_PATH = Runner.app/Info.plist
           INFOPLIST_PREPROCESS = NO
           INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings
           INLINE_PRIVATE_FRAMEWORKS = NO
           INSTALLHDRS_COPY_PHASE = NO
           INSTALLHDRS_SCRIPT_PHASE = NO
           INSTALL_DIR = /tmp/Runner.dst/Applications
           INSTALL_GROUP = DIVERSE-INC\Domain Users
           INSTALL_MODE_FLAG = u+w,go-w,a+rX
           INSTALL_OWNER = kikuchy
           INSTALL_PATH = /Applications
           INSTALL_ROOT = /tmp/Runner.dst
           IPHONEOS_DEPLOYMENT_TARGET = 8.0
           JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
           JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
           JAVA_ARCHIVE_CLASSES = YES
           JAVA_ARCHIVE_TYPE = JAR
           JAVA_COMPILER = /usr/bin/javac
           JAVA_FOLDER_PATH = Runner.app/Java
           JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
           JAVA_JAR_FLAGS = cv
           JAVA_SOURCE_SUBDIR = .
           JAVA_USE_DEPENDENCIES = YES
           JAVA_ZIP_FLAGS = -urg
           JIKES_DEFAULT_FLAGS = +E +OLDCSO
           KEEP_PRIVATE_EXTERNS = NO
           LD_DEPENDENCY_INFO_FILE = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
           LD_GENERATE_MAP_FILE = NO
           LD_MAP_FILE_PATH = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
           LD_NO_PIE = NO
           LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
           LD_RUNPATH_SEARCH_PATHS =  @executable_path/Frameworks
           LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
           LEX = lex
           LIBRARY_FLAG_NOSPACE = YES
           LIBRARY_FLAG_PREFIX = -l
           LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
           LIBRARY_SEARCH_PATHS =  /Users/kikuchy/tmp/textfieldsample/ios/Flutter
           LINKER_DISPLAYS_MANGLED_NAMES = NO
           LINK_FILE_LIST_normal_x86_64 = 
           LINK_WITH_STANDARD_LIBRARIES = YES
           LLVM_TARGET_TRIPLE_SUFFIX = -simulator
           LOCALIZABLE_CONTENT_DIR = 
           LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
           LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString
           LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
           LOCAL_APPS_DIR = /Applications
           LOCAL_DEVELOPER_DIR = /Library/Developer
           LOCAL_LIBRARY_DIR = /Library
           LOCROOT = 
           LOCSYMROOT = 
           MACH_O_TYPE = mh_execute
           MAC_OS_X_PRODUCT_BUILD_VERSION = 17G4015
           MAC_OS_X_VERSION_ACTUAL = 101306
           MAC_OS_X_VERSION_MAJOR = 101300
           MAC_OS_X_VERSION_MINOR = 1306
           METAL_LIBRARY_FILE_BASE = default
           METAL_LIBRARY_OUTPUT_DIR = /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/Runner.app
           MODULE_CACHE_DIR = /Users/kikuchy/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
           MTL_ENABLE_DEBUG_INFO = YES
           NATIVE_ARCH = i386
           NATIVE_ARCH_32_BIT = i386
           NATIVE_ARCH_64_BIT = x86_64
           NATIVE_ARCH_ACTUAL = x86_64
           NO_COMMON = YES
           OBJC_ABI_VERSION = 2
           OBJECT_FILE_DIR = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
           OBJECT_FILE_DIR_normal = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
           OBJROOT = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex
           ONLY_ACTIVE_ARCH = YES
           OS = MACOS
           OSAC = /usr/bin/osacompile
           PACKAGE_TYPE = com.apple.package-type.wrapper.application
           PASCAL_STRINGS = YES
           PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Users/kikuchy/.gem/ruby/2.5.1/bin:/Users/kikuchy/.rubies/ruby-2.5.1/lib/ruby/gems/2.5.0/bin:/Users/kikuchy/.rubies/ruby-2.5.1/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Users/kikuchy/SDK/flutter/bin:/Users/kikuchy/SDK/depot_tools:/Users/kikuchy/SDK/appengine-java/bin:/Users/kikuchy/SDK/google-cloud-sdk/bin:/Users/kikuchy/.pub-cache/bin
           PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms
           PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
           PFE_FILE_C_DIALECTS = objective-c
           PKGINFO_FILE_PATH = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
           PKGINFO_PATH = Runner.app/PkgInfo
           PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
           PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
           PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
           PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
           PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
           PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
           PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
           PLATFORM_DISPLAY_NAME = iOS Simulator
           PLATFORM_NAME = iphonesimulator
           PLATFORM_PREFERRED_ARCH = x86_64
           PLIST_FILE_OUTPUT_FORMAT = binary
           PLUGINS_FOLDER_PATH = Runner.app/PlugIns
           PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
           PRECOMP_DESTINATION_DIR = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
           PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
           PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
           PRODUCT_BUNDLE_IDENTIFIER = com.example.textfieldsample
           PRODUCT_MODULE_NAME = Runner
           PRODUCT_NAME = Runner
           PRODUCT_SETTINGS_PATH = /Users/kikuchy/tmp/textfieldsample/ios/Runner/Info.plist
           PRODUCT_TYPE = com.apple.product-type.application
           PROFILING_CODE = NO
           PROJECT = Runner
           PROJECT_DERIVED_FILE_DIR = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/DerivedSources
           PROJECT_DIR = /Users/kikuchy/tmp/textfieldsample/ios
           PROJECT_FILE_PATH = /Users/kikuchy/tmp/textfieldsample/ios/Runner.xcodeproj
           PROJECT_NAME = Runner
           PROJECT_TEMP_DIR = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build
           PROJECT_TEMP_ROOT = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex
           PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
           RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
           REMOVE_CVS_FROM_RESOURCES = YES
           REMOVE_GIT_FROM_RESOURCES = YES
           REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
           REMOVE_HG_FROM_RESOURCES = YES
           REMOVE_SVN_FROM_RESOURCES = YES
           REZ_COLLECTOR_DIR = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
           REZ_OBJECTS_DIR = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
           SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
           SCRIPTS_FOLDER_PATH = Runner.app/Scripts
           SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
           SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
           SDK_DIR_iphonesimulator12_1 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
           SDK_NAME = iphonesimulator12.1
           SDK_NAMES = iphonesimulator12.1
           SDK_PRODUCT_BUILD_VERSION = 16B91
           SDK_VERSION = 12.1
           SDK_VERSION_ACTUAL = 120100
           SDK_VERSION_MAJOR = 120000
           SDK_VERSION_MINOR = 100
           SED = /usr/bin/sed
           SEPARATE_STRIP = NO
           SEPARATE_SYMBOL_EDIT = NO
           SET_DIR_MODE_OWNER_GROUP = YES
           SET_FILE_MODE_OWNER_GROUP = NO
           SHALLOW_BUNDLE = YES
           SHARED_DERIVED_FILE_DIR = /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator/DerivedSources
           SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
           SHARED_PRECOMPS_DIR = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/PrecompiledHeaders
           SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
           SKIP_INSTALL = NO
           SOURCE_ROOT = /Users/kikuchy/tmp/textfieldsample/ios
           SRCROOT = /Users/kikuchy/tmp/textfieldsample/ios
           STRINGS_FILE_OUTPUT_ENCODING = binary
           STRIP_BITCODE_FROM_COPIED_FILES = NO
           STRIP_INSTALLED_PRODUCT = YES
           STRIP_STYLE = all
           STRIP_SWIFT_SYMBOLS = YES
           SUPPORTED_DEVICE_FAMILIES = 1,2
           SUPPORTED_PLATFORMS = iphonesimulator iphoneos
           SUPPORTS_TEXT_BASED_API = NO
           SWIFT_PLATFORM_TARGET_PREFIX = ios
           SYMROOT = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Products
           SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
           SYSTEM_APPS_DIR = /Applications
           SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
           SYSTEM_DEMOS_DIR = /Applications/Extras
           SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
           SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
           SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
           SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
           SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
           SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
           SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
           SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
           SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
           SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
           SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
           SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
           SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
           SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
           SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
           SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
           SYSTEM_LIBRARY_DIR = /System/Library
           TAPI_VERIFY_MODE = ErrorsOnly
           TARGETED_DEVICE_FAMILY = 1,2
           TARGETNAME = Runner
           TARGET_BUILD_DIR = /Users/kikuchy/tmp/textfieldsample/build/ios/Debug-iphonesimulator
           TARGET_NAME = Runner
           TARGET_TEMP_DIR = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
           TEMP_DIR = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
           TEMP_FILES_DIR = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
           TEMP_FILE_DIR = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
           TEMP_ROOT = /Users/kikuchy/Library/Developer/Xcode/DerivedData/Runner-hkbotrolaxqdhwbjqezdvsnwbdwd/Build/Intermediates.noindex
           TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
           TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
           UID = 794911594
           UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
           UNSTRIPPED_PRODUCT = NO
           USER = kikuchy
           USER_APPS_DIR = /Users/kikuchy/Applications
           USER_LIBRARY_DIR = /Users/kikuchy/Library
           USE_DYNAMIC_NO_PIC = YES
           USE_HEADERMAP = YES
           USE_HEADER_SYMLINKS = NO
           VALIDATE_PRODUCT = NO
           VALID_ARCHS = i386 x86_64
           VERBOSE_PBXCP = NO
           VERBOSE_SCRIPT_LOGGING = YES
           VERSIONING_SYSTEM = apple-generic
           VERSIONPLIST_PATH = Runner.app/version.plist
           VERSION_INFO_BUILDER = kikuchy
           VERSION_INFO_FILE = Runner_vers.c
           VERSION_INFO_STRING = "@(#)PROGRAM:Runner  PROJECT:Runner-1"
           WRAPPER_EXTENSION = app
           WRAPPER_NAME = Runner.app
           WRAPPER_SUFFIX = .app
           WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
           XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode
           XCODE_PRODUCT_BUILD_VERSION = 10B61
           XCODE_VERSION_ACTUAL = 1010
           XCODE_VERSION_MAJOR = 1000
           XCODE_VERSION_MINOR = 1010
           XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
           YACC = yacc
           arch = x86_64
           variant = normal

[ +106 ms] executing: /usr/bin/xcrun simctl install 50B7F70D-CA9C-41AB-9C6D-77706A51A266 /Users/kikuchy/tmp/textfieldsample/build/ios/iphonesimulator/Runner.app
[ +752 ms] executing: /usr/bin/xcrun simctl launch 50B7F70D-CA9C-41AB-9C6D-77706A51A266 com.example.textfieldsample --enable-dart-profiling --enable-checked-mode --observatory-port=0
[ +419 ms] com.example.textfieldsample: 75845
[ ] Waiting for observatory port to be available...
[ +418 ms] [DEVICE LOG] 2019-01-10 13:23:32.596167+0900 localhost Runner[75845]: (libAccessibility.dylib) [com.apple.Accessibility:AccessibilitySupport] Retrieving resting unlock: 0
[ +153 ms] [DEVICE LOG] 2019-01-10 13:23:32.753277+0900 localhost Runner[75845]: (UIKitCore) You've implemented -[ application:performFetchWithCompletionHandler:], but you still need to add "fetch" to the list of your supported UIBackgroundModes in your Info.plist.
[ ] [DEVICE LOG] 2019-01-10 13:23:32.753429+0900 localhost Runner[75845]: (UIKitCore) You've implemented -[ application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add "remote-notification" to the list of your supported UIBackgroundModes in your Info.plist.
[ +48 ms] [DEVICE LOG] 2019-01-10 13:23:32.802212+0900 localhost Runner[75845]: (Flutter) flutter: Observatory listening on http://127.0.0.1:53022/
[ +3 ms] Observatory URL on device: http://127.0.0.1:53022/
[ +3 ms] Connecting to service protocol: http://127.0.0.1:53022/
[ +160 ms] Successfully connected to service protocol: http://127.0.0.1:53022/
[ +14 ms] Sending to VM service: getVM({})
[ +5 ms] Result: {type: VM, name: vm, architectureBits: 64, targetCPU: x64, hostCPU: Intel(R) Core(TM) i7-7920HQ CPU @ 3.10GHz, version: 2.1.0-dev.9.4.flutter-f9ebf21297 (Thu Nov 8 23:00:07 2018 +0100) on "ios_x64", _profilerMode: VM, _nativeZoneMemoryUsage: 0, pi...
[ +4 ms] Sending to VM service: getIsolate({isolateId: isolates/306569061})
[ +3 ms] Sending to VM service: _flutter.listViews({})
[ +3 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x7f8b1fe00408, isolate: {type: @Isolate, fixedId: true, id: isolates/306569061, name: main.dart$main.dart-306569061, number: 306569061}}]}
[ +7 ms] DevFS: Creating new filesystem on the device (null)
[ ] Sending to VM service: _createDevFS({fsName: textfieldsample})
[ +24 ms] Result: {type: Isolate, fixedId: true, id: isolates/306569061, name: main.dart:main.dart(), number: 306569061, _originNumber: 306569061, startTime: 1547094212693, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections: 3, avgCollectionP...
[ +16 ms] Result: {type: FileSystem, name: textfieldsample, uri: file:///Users/kikuchy/Library/Developer/CoreSimulator/Devices/50B7F70D-CA9C-41AB-9C6D-77706A51A266/data/Containers/Data/Application/E7144300-365C-4305-9165-B7080D792521/tmp/textfieldsamplelCj8zu/textf...
[ ] DevFS: Created new filesystem on the device (file:///Users/kikuchy/Library/Developer/CoreSimulator/Devices/50B7F70D-CA9C-41AB-9C6D-77706A51A266/data/Containers/Data/Application/E7144300-365C-4305-9165-B7080D792521/tmp/textfieldsamplelCj8zu/textfieldsample/)
[ +2 ms] Updating assets
[ +226 ms] Syncing files to device iPhone XR...
[ +4 ms] DevFS: Starting sync from LocalDirectory: '/Users/kikuchy/tmp/textfieldsample'
[ ] Scanning project files
[ +5 ms] Scanning package files
[ +90 ms] Scanning asset files
[ ] Scanning for deleted files
[ +9 ms] Compiling dart to kernel with 443 updated files
[ +5 ms] /Users/kikuchy/SDK/flutter/bin/cache/dart-sdk/bin/dart /Users/kikuchy/SDK/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/kikuchy/SDK/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --strong --target=flutter --output-dill build/app.dill --packages /Users/kikuchy/tmp/textfieldsample/.packages --filesystem-scheme org-dartlang-root
[+1605 ms] Updating files
[ +57 ms] DevFS: Sync finished
[ ] Syncing files to device iPhone XR... (completed)
[ ] Synced 0.8MB.
[ ] Sending to VM service: _flutter.listViews({})
[ +4 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x7f8b1fe00408, isolate: {type: @Isolate, fixedId: true, id: isolates/306569061, name: main.dart$main.dart-306569061, number: 306569061}}]}
[ ] Connected to _flutterView/0x7f8b1fe00408.
[ +1 ms] 🔥 To hot reload changes while running, press "r". To hot restart (and rebuild state), press "R".
[ ] An Observatory debugger and profiler on iPhone XR is available at: http://127.0.0.1:53022/
[ ] For a more detailed help message, press "h". To detach, press "d"; to quit, press "q".
[+1614 ms] [DEVICE LOG] 2019-01-10 13:23:36.684232+0900 localhost Runner[75845]: (AggregateDictionary) AggregateDictionary is not supported on this platform
[ +120 ms] [DEVICE LOG] 2019-01-10 13:23:36.805141+0900 localhost Runner[75845]: (CallKit) [com.apple.calls.callkit:Default] Call host has no calls
[ +7 ms] [DEVICE LOG] 2019-01-10 13:23:36.812607+0900 localhost Runner[75845]: (Runner) Created Activity ID: 0xfdba50, Description: Updating Key-Value Observers Of Preferences
[ ] [DEVICE LOG] 2019-01-10 13:23:36.812792+0900 localhost Runner[75845]: (Runner) Created Activity ID: 0xfdba51, Description: Updating Key-Value Observers Of Preferences
[ ] [DEVICE LOG] 2019-01-10 13:23:36.812945+0900 localhost Runner[75845]: (Runner) Created Activity ID: 0xfdba52, Description: Updating Key-Value Observers Of Preferences
[ ] [DEVICE LOG] 2019-01-10 13:23:36.813165+0900 localhost Runner[75845]: (Runner) Created Activity ID: 0xfdba53, Description: Updating Key-Value Observers Of Preferences
[ ] [DEVICE LOG] 2019-01-10 13:23:36.813279+0900 localhost Runner[75845]: (Runner) Created Activity ID: 0xfdba54, Description: Updating Key-Value Observers Of Preferences
[ ] [DEVICE LOG] 2019-01-10 13:23:36.813480+0900 localhost Runner[75845]: (Runner) Created Activity ID: 0xfdba55, Description: Updating Key-Value Observers Of Preferences
[ ] [DEVICE LOG] 2019-01-10 13:23:36.813697+0900 localhost Runner[75845]: (Runner) Created Activity ID: 0xfdba56, Description: Updating Key-Value Observers Of Preferences
[ ] [DEVICE LOG] 2019-01-10 13:23:36.813864+0900 localhost Runner[75845]: (Runner) Created Activity ID: 0xfdba57, Description: Updating Key-Value Observers Of Preferences
[ ] [DEVICE LOG] 2019-01-10 13:23:36.814104+0900 localhost Runner[75845]: (Runner) Created Activity ID: 0xfdba58, Description: Updating Key-Value Observers Of Preferences
[ ] [DEVICE LOG] 2019-01-10 13:23:36.816010+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:FeedbackActivation] activate generator <_UIKeyboardFeedbackGenerator: 0x600002cfc3c0: prepared=1> with style: TurnOn; activationCount: 0 -> 1; styleActivationCount: 0 -> 1
[ ] [DEVICE LOG] 2019-01-10 13:23:36.816098+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] activate engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840>, clientCount: 0 -> 1
[ ] [DEVICE LOG] 2019-01-10 13:23:36.816148+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] activating engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840>
[ ] [DEVICE LOG] 2019-01-10 13:23:36.816308+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840: state=0, numberOfClients=1, prewarmCount=0, _isSuspended=0> state changed: Inactive -> Activating
[ ] [DEVICE LOG] 2019-01-10 13:23:36.816382+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840: state=3, numberOfClients=1, prewarmCount=0, _isSuspended=0> state changed: Activating -> Running
[+1266 ms] [DEVICE LOG] 2019-01-10 13:23:38.083726+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:FeedbackActivation] activate generator <_UIKeyboardFeedbackGenerator: 0x600002cfc3c0: prepared=1> with style: TurnOn; activationCount: 1 -> 2; styleActivationCount: 1 -> 2
[ ] [DEVICE LOG] 2019-01-10 13:23:38.083781+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] activate engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840>, clientCount: 1 -> 2
[ ] [DEVICE LOG] 2019-01-10 13:23:38.084187+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] played feedback <_UICustomDiscreteFeedback: 0x600002cf90e0> with engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840> at time 494701.777769
[ ] [DEVICE LOG] 2019-01-10 13:23:38.084392+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:FeedbackActivation] deactivate generator <_UIKeyboardFeedbackGenerator: 0x600002cfc3c0: prepared=1> with style: TurnOn; activationCount: 2 -> 1; styleActivationCount: 2 -> 1
[ ] [DEVICE LOG] 2019-01-10 13:23:38.084442+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] deactivate engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840>, clientCount: 2 -> 1
[ +977 ms] [DEVICE LOG] 2019-01-10 13:23:39.061028+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:FeedbackActivation] activate generator <_UIKeyboardFeedbackGenerator: 0x600002cfc3c0: prepared=1> with style: TurnOn; activationCount: 1 -> 2; styleActivationCount: 1 -> 2
[ ] [DEVICE LOG] 2019-01-10 13:23:39.061096+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] activate engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840>, clientCount: 1 -> 2
[ ] [DEVICE LOG] 2019-01-10 13:23:39.061368+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] played feedback <_UICustomDiscreteFeedback: 0x600002cf9400> with engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840> at time 494702.755085
[ ] [DEVICE LOG] 2019-01-10 13:23:39.061577+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:FeedbackActivation] deactivate generator <_UIKeyboardFeedbackGenerator: 0x600002cfc3c0: prepared=1> with style: TurnOn; activationCount: 2 -> 1; styleActivationCount: 2 -> 1
[ ] [DEVICE LOG] 2019-01-10 13:23:39.061628+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] deactivate engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840>, clientCount: 2 -> 1
[+1470 ms] [DEVICE LOG] 2019-01-10 13:23:40.533345+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:FeedbackActivation] activate generator <_UIKeyboardFeedbackGenerator: 0x600002cfc3c0: prepared=1> with style: TurnOn; activationCount: 1 -> 2; styleActivationCount: 1 -> 2
[ ] [DEVICE LOG] 2019-01-10 13:23:40.533389+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] activate engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840>, clientCount: 1 -> 2
[ ] [DEVICE LOG] 2019-01-10 13:23:40.533569+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] played feedback <_UICustomDiscreteFeedback: 0x600002cf90e0> with engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840> at time 494704.227367
[ ] [DEVICE LOG] 2019-01-10 13:23:40.533709+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:FeedbackActivation] deactivate generator <_UIKeyboardFeedbackGenerator: 0x600002cfc3c0: prepared=1> with style: TurnOn; activationCount: 2 -> 1; styleActivationCount: 2 -> 1
[ ] [DEVICE LOG] 2019-01-10 13:23:40.533751+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] deactivate engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840>, clientCount: 2 -> 1
[ +722 ms] [DEVICE LOG] 2019-01-10 13:23:41.256041+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:FeedbackActivation] activate generator <_UIKeyboardFeedbackGenerator: 0x600002cfc3c0: prepared=1> with style: TurnOn; activationCount: 1 -> 2; styleActivationCount: 1 -> 2
[ ] [DEVICE LOG] 2019-01-10 13:23:41.256106+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] activate engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840>, clientCount: 1 -> 2
[ ] [DEVICE LOG] 2019-01-10 13:23:41.256399+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] played feedback <_UICustomDiscreteFeedback: 0x600002cf9400> with engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840> at time 494704.950113
[ ] [DEVICE LOG] 2019-01-10 13:23:41.256591+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:FeedbackActivation] deactivate generator <_UIKeyboardFeedbackGenerator: 0x600002cfc3c0: prepared=1> with style: TurnOn; activationCount: 2 -> 1; styleActivationCount: 2 -> 1
[ ] [DEVICE LOG] 2019-01-10 13:23:41.256643+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] deactivate engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840>, clientCount: 2 -> 1
[+1179 ms] [DEVICE LOG] 2019-01-10 13:23:42.437384+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:FeedbackActivation] activate generator <_UIKeyboardFeedbackGenerator: 0x600002cfc3c0: prepared=1> with style: TurnOn; activationCount: 1 -> 2; styleActivationCount: 1 -> 2
[ ] [DEVICE LOG] 2019-01-10 13:23:42.437431+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] activate engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840>, clientCount: 1 -> 2
[ ] [DEVICE LOG] 2019-01-10 13:23:42.437616+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] played feedback <_UICustomDiscreteFeedback: 0x600002cf90e0> with engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840> at time 494706.131411
[ ] [DEVICE LOG] 2019-01-10 13:23:42.437738+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:FeedbackActivation] deactivate generator <_UIKeyboardFeedbackGenerator: 0x600002cfc3c0: prepared=1> with style: TurnOn; activationCount: 2 -> 1; styleActivationCount: 2 -> 1
[ ] [DEVICE LOG] 2019-01-10 13:23:42.437769+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] deactivate engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840>, clientCount: 2 -> 1
[ +803 ms] [DEVICE LOG] 2019-01-10 13:23:43.240833+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:FeedbackActivation] activate generator <_UIKeyboardFeedbackGenerator: 0x600002cfc3c0: prepared=1> with style: TurnOn; activationCount: 1 -> 2; styleActivationCount: 1 -> 2
[ ] [DEVICE LOG] 2019-01-10 13:23:43.240877+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] activate engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840>, clientCount: 1 -> 2
[ ] [DEVICE LOG] 2019-01-10 13:23:43.241113+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] played feedback <_UICustomDiscreteFeedback: 0x600002cf9400> with engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840> at time 494706.934854
[ ] [DEVICE LOG] 2019-01-10 13:23:43.241277+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:FeedbackActivation] deactivate generator <_UIKeyboardFeedbackGenerator: 0x600002cfc3c0: prepared=1> with style: TurnOn; activationCount: 2 -> 1; styleActivationCount: 2 -> 1
[ ] [DEVICE LOG] 2019-01-10 13:23:43.241317+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] deactivate engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840>, clientCount: 2 -> 1
[ +936 ms] [DEVICE LOG] 2019-01-10 13:23:44.179569+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:FeedbackActivation] activate generator <_UIKeyboardFeedbackGenerator: 0x600002cfc3c0: prepared=1> with style: TurnOn; activationCount: 1 -> 2; styleActivationCount: 1 -> 2
[ ] [DEVICE LOG] 2019-01-10 13:23:44.179628+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] activate engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840>, clientCount: 1 -> 2
[ ] [DEVICE LOG] 2019-01-10 13:23:44.179836+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] played feedback <_UICustomDiscreteFeedback: 0x600002cf90e0> with engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840> at time 494707.873619
[ ] [DEVICE LOG] 2019-01-10 13:23:44.179957+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:FeedbackActivation] deactivate generator <_UIKeyboardFeedbackGenerator: 0x600002cfc3c0: prepared=1> with style: TurnOn; activationCount: 2 -> 1; styleActivationCount: 2 -> 1
[ ] [DEVICE LOG] 2019-01-10 13:23:44.180028+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] deactivate engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840>, clientCount: 2 -> 1
[ +799 ms] [DEVICE LOG] 2019-01-10 13:23:44.979752+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:FeedbackActivation] activate generator <_UIKeyboardFeedbackGenerator: 0x600002cfc3c0: prepared=1> with style: TurnOn; activationCount: 1 -> 2; styleActivationCount: 1 -> 2
[ ] [DEVICE LOG] 2019-01-10 13:23:44.979803+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] activate engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840>, clientCount: 1 -> 2
[ ] [DEVICE LOG] 2019-01-10 13:23:44.980002+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] played feedback <_UICustomDiscreteFeedback: 0x600002cf9400> with engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840> at time 494708.673785
[ ] [DEVICE LOG] 2019-01-10 13:23:44.980167+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:FeedbackActivation] deactivate generator <_UIKeyboardFeedbackGenerator: 0x600002cfc3c0: prepared=1> with style: TurnOn; activationCount: 2 -> 1; styleActivationCount: 2 -> 1
[ ] [DEVICE LOG] 2019-01-10 13:23:44.980249+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] deactivate engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840>, clientCount: 2 -> 1
[ +880 ms] [DEVICE LOG] 2019-01-10 13:23:45.861183+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:FeedbackActivation] activate generator <_UIKeyboardFeedbackGenerator: 0x600002cfc3c0: prepared=1> with style: TurnOn; activationCount: 1 -> 2; styleActivationCount: 1 -> 2
[ ] [DEVICE LOG] 2019-01-10 13:23:45.861244+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] activate engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840>, clientCount: 1 -> 2
[ ] [DEVICE LOG] 2019-01-10 13:23:45.861449+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] played feedback <_UICustomDiscreteFeedback: 0x600002cf90e0> with engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840> at time 494709.555226
[ ] [DEVICE LOG] 2019-01-10 13:23:45.861621+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:FeedbackActivation] deactivate generator <_UIKeyboardFeedbackGenerator: 0x600002cfc3c0: prepared=1> with style: TurnOn; activationCount: 2 -> 1; styleActivationCount: 2 -> 1
[ ] [DEVICE LOG] 2019-01-10 13:23:45.861673+0900 localhost Runner[75845]: (UIKitCore) [com.apple.UIKit:Feedback] deactivate engine <_UIFeedbackSystemSoundEngine: 0x6000039fb840>, clientCount: 2 -> 1
[+2821 ms] DevFS: Deleting filesystem on the device (file:///Users/kikuchy/Library/Developer/CoreSimulator/Devices/50B7F70D-CA9C-41AB-9C6D-77706A51A266/data/Containers/Data/Application/E7144300-365C-4305-9165-B7080D792521/tmp/textfieldsamplelCj8zu/textfieldsample/)
[ ] Sending to VM service: _deleteDevFS({fsName: textfieldsample})
[ +5 ms] Result: {type: Success}
[ ] DevFS: Deleted filesystem on the device (file:///Users/kikuchy/Library/Developer/CoreSimulator/Devices/50B7F70D-CA9C-41AB-9C6D-77706A51A266/data/Containers/Data/Application/E7144300-365C-4305-9165-B7080D792521/tmp/textfieldsamplelCj8zu/textfieldsample/)
[ +1 ms] Sending to VM service: ext.flutter.exit({isolateId: isolates/306569061})
[ +28 ms] Service protocol connection closed.
[ +77 ms] Application finished.
[ +2 ms] "flutter run" took 27,757ms.

$ flutter analyze

Analyzing textfieldsample...                                     
No issues found! (ran in 1.9s)

$ flutter doctor -v

[✓] Flutter (Channel beta, v1.0.0, on Mac OS X 10.13.6 17G4015, locale ja-JP)
    • Flutter version 1.0.0 at /Users/kikuchy/SDK/flutter
    • Framework revision 5391447fae (6 weeks ago), 2018-11-29 19:41:26 -0800
    • Engine revision 7375a0f414
    • Dart version 2.1.0 (build 2.1.0-dev.9.4 f9ebf21297)

[✓] Android toolchain - develop for Android devices (Android SDK 28.0.3)
• Android SDK at /Users/kikuchy/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-28, build-tools 28.0.3
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06)
• All Android licenses accepted.

[!] iOS toolchain - develop for iOS devices (Xcode 10.1)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 10.1, Build version 10B61
✗ Verify that all connected devices have been paired with this computer in Xcode.
If all devices have been paired, libimobiledevice and ideviceinstaller may require updating.
To update with Brew, run:
brew update
brew uninstall --ignore-dependencies libimobiledevice
brew uninstall --ignore-dependencies usbmuxd
brew install --HEAD usbmuxd
brew unlink usbmuxd
brew link usbmuxd
brew install --HEAD libimobiledevice
brew install ideviceinstaller
• ios-deploy 1.9.4
✗ CocoaPods not installed.
CocoaPods is used to retrieve the iOS platform side's plugin code that responds to your plugin usage on the Dart side.
Without resolving iOS dependencies with CocoaPods, plugins will not work on iOS.
For more info, see https://flutter.io/platform-plugins
To install:
brew install cocoapods
pod setup

[✓] Android Studio
• Android Studio at /Applications/Android Studio 3.2 Preview.app/Contents
✗ Flutter plugin not installed; this adds Flutter specific functionality.
✗ Dart plugin not installed; this adds Dart specific functionality.
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06)

[✓] Android Studio (version 3.2)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin version 31.3.1
• Dart plugin version 181.5656
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06)

[✓] IntelliJ IDEA Community Edition (version 2018.3.2)
• IntelliJ at /Applications/IntelliJ IDEA CE.app
• Flutter plugin version 31.3.4
• Dart plugin version 183.4886.3

[!] VS Code (version 1.30.0)
• VS Code at /Applications/Visual Studio Code.app/Contents
• Flutter extension not installed; install from
https://marketplace.visualstudio.com/items?itemName=Dart-Code.flutter

[✓] Connected device (2 available)
• Android SDK built for x86 • emulator-5554 • android-x86 • Android 9 (API 28) (emulator)
• iPhone XR • 50B7F70D-CA9C-41AB-9C6D-77706A51A266 • ios • iOS 12.1 (simulator)

! Doctor found issues in 2 categories.

I'm using cocoapods with chruby `flutter doctor` can't detect it. Don't mind it.

Metadata

Metadata

Assignees

No one assigned

    Labels

    frameworkflutter/packages/flutter repository. See also f: labels.

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions