-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Closed
Labels
f: material designflutter/packages/flutter/material repository.flutter/packages/flutter/material repository.found in release: 1.20Found to occur in 1.20Found to occur in 1.20found in release: 1.21Found to occur in 1.21Found to occur in 1.21frameworkflutter/packages/flutter repository. See also f: labels.flutter/packages/flutter repository. See also f: labels.has reproducible stepsThe issue has been confirmed reproducible and is ready to work onThe issue has been confirmed reproducible and is ready to work on
Description
Steps to Reproduce
- Run
flutter create bug. - Update the
main.dartfile as follows:
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Tab Orientation Test',
theme: ThemeData(
primarySwatch: Colors.blue,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: TestPage(),
);
}
}
class TestPage extends StatefulWidget {
@override
_TestPageState createState() => _TestPageState();
}
class _TestPageState extends State<TestPage> with SingleTickerProviderStateMixin {
TabController _tabController;
@override
void initState() {
super.initState();
_tabController = TabController(
length: 3,
vsync: this,
initialIndex: 0,
);
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Tab Orientation'),
bottom: TabBar(
controller: _tabController,
tabs: [
Tab(text: 'One'),
Tab(text: 'Two'),
Tab(text: 'Three'),
],
),
),
body: TabBarView(
controller: _tabController,
children: [
TabOne(),
TabTwo(),
TabThree(),
],
),
);
}
}
class TabOne extends StatefulWidget {
@override
_TabOneState createState() => _TabOneState();
}
class _TabOneState extends State<TabOne> {
@override
Widget build(BuildContext context) {
return Container(color: Colors.blue);
}
}
class TabTwo extends StatefulWidget {
@override
_TabTwoState createState() => _TabTwoState();
}
class _TabTwoState extends State<TabTwo> {
@override
Widget build(BuildContext context) {
return Container(color: Colors.red);
}
}
class TabThree extends StatefulWidget {
@override
_TabThreeState createState() => _TabThreeState();
}
class _TabThreeState extends State<TabThree> {
@override
Widget build(BuildContext context) {
return Container(color: Colors.green);
}
}
Github repo with the bug and a gif of what it looks like: DevNico/flutter-tab-orientation-bug
Expected results:
When rotating the simulator/phone on the second tab I still want to see the second tab.
Actual results:
It glitches and lands on the third tab / even overshoots a little.
Logs
[ +141 ms] executing: [/Users/devnico/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
[ +42 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[ ] 840c9205b344a59e48a5926ee2d791cc5640924c
[ ] executing: [/Users/devnico/flutter/] git tag --contains HEAD
[ +426 ms] Exit code 0 from: git tag --contains HEAD
[ ] 1.20.0
1.20.1
1.20.2
[ +13 ms] executing: [/Users/devnico/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +9 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/stable
[ ] executing: [/Users/devnico/flutter/] git ls-remote --get-url origin
[ +7 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ +53 ms] executing: [/Users/devnico/flutter/] git rev-parse --abbrev-ref HEAD
[ +8 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] stable
[ +8 ms] executing: sw_vers -productName
[ +17 ms] Exit code 0 from: sw_vers -productName
[ ] macOS
[ ] executing: sw_vers -productVersion
[ +16 ms] Exit code 0 from: sw_vers -productVersion
[ ] 11.0
[ ] executing: sw_vers -buildVersion
[ +17 ms] Exit code 0 from: sw_vers -buildVersion
[ ] 20A5343i
[ +42 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[ +8 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[ +14 ms] executing: /Users/devnico/Library/Android/sdk/platform-tools/adb devices -l
[ +8 ms] executing: /usr/bin/xcode-select --print-path
[ +5 ms] Exit code 0 from: /usr/bin/xcode-select --print-path
[ ] /Applications/Xcode-beta.app/Contents/Developer
[ +1 ms] executing: /usr/bin/xcodebuild -version
[ +244 ms] Exit code 0 from: /usr/bin/xcodebuild -version
[ ] Xcode 12.0
Build version 12A8169g
[ +1 ms] executing: xcrun --find xcdevice
[ +9 ms] Exit code 0 from: xcrun --find xcdevice
[ ] /Applications/Xcode-beta.app/Contents/Developer/usr/bin/xcdevice
[ ] executing: xcrun xcdevice list --timeout 2
[ +4 ms] /usr/bin/xcrun simctl list --json devices
[ ] executing: /usr/bin/xcrun simctl list --json devices
[ +45 ms] List of devices attached
// Removed list of devies because issue body is too long
[ +7 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[ +8 ms] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[ +1 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[ +258 ms] Generating /Users/devnico/code/tab_orientation_test/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java
[ +118 ms] Starting incremental build...
[ +2 ms] Initializing file store
[ +20 ms] Skipping target: gen_localizations
[ +9 ms] complete
[ +7 ms] Launching lib/main.dart on iPhone 11 Pro Max in debug mode...
[ +8 ms] /Users/devnico/flutter/bin/cache/dart-sdk/bin/dart --disable-dart-dev /Users/devnico/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/devnico/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --target=flutter --debugger-module-names -Ddart.developer.causal_async_stacks=true --output-dill /var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/T/flutter_tools.gf8Hyh/flutter_tool.OqF53r/app.dill --packages .packages -Ddart.vm.profile=false -Ddart.vm.product=false --bytecode-options=source-positions,local-var-info,debugger-stops,instance-field-initializers,keep-unreachable-code,avoid-closure-call-instructions --enable-asserts --track-widget-creation --filesystem-scheme org-dartlang-root --initialize-from-dill build/cache.dill.track.dill
[ +11 ms] executing: /usr/bin/plutil -convert json -o - /Users/devnico/code/tab_orientation_test/ios/Runner/Info.plist
[ +12 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Users/devnico/code/tab_orientation_test/ios/Runner/Info.plist
[ ] {"CFBundleShortVersionString":"$(FLUTTER_BUILD_NAME)","CFBundleIdentifier":"$(PRODUCT_BUNDLE_IDENTIFIER)","CFBundleInfoDictionaryVersion":"6.0","UIMainStoryboardFile":"Main","CFBundleVersion":"$(FLUTTER_BUILD_NUMBER)","UILaunchStoryboardName":"LaunchScreen","CFBundleExecutable":"$(EXECUTABLE_NAME)","LSRequiresIPhoneOS":true,"UISupportedInterfaceOrientations":["UIInterfaceOrientationPortrait","UIInterfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRight"],"UIViewControllerBasedStatusBarAppearance":false,"CFBundleSignature":"????","CFBundlePackageType":"APPL","CFBundleDevelopmentRegion":"$(DEVELOPMENT_LANGUAGE)","UISupportedInterfaceOrientations~ipad":["UIInterfaceOrientationPortrait","UIInterfaceOrientationPortraitUpsideDown","UIInterfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRight"],"CFBundleName":"tab_orientation_test"}
[ +6 ms] executing: [/Users/devnico/code/tab_orientation_test/ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/devnico/code/tab_orientation_test/ios/Runner.xcodeproj -scheme Runner -showBuildSettings
[ ] executing: [/Users/devnico/code/tab_orientation_test/ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/devnico/code/tab_orientation_test/ios/Runner.xcodeproj -scheme Runner -showBuildSettings
[ +19 ms] <- compile package:tab_orientation_test/main.dart
[+2283 ms] Command line invocation:
/Applications/Xcode-beta.app/Contents/Developer/usr/bin/xcodebuild -project /Users/devnico/code/tab_orientation_test/ios/Runner.xcodeproj -scheme Runner -showBuildSettings
Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = NO
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = devnico
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
APPLY_RULES_IN_COPY_HEADERS = NO
ARCHS = armv7 arm64
ARCHS_STANDARD = armv7 arm64
ARCHS_STANDARD_32_64_BIT = armv7 arm64
ARCHS_STANDARD_32_BIT = armv7
ARCHS_STANDARD_64_BIT = arm64
ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64
ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/devnico/code/tab_orientation_test/build/ios
BUILD_LIBRARY_FOR_DISTRIBUTION = NO
BUILD_ROOT = /Users/devnico/code/tab_orientation_test/build/ios
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Release-iphoneos
BUNDLE_CONTENTS_FOLDER_PATH_deep = Contents/
BUNDLE_EXECUTABLE_FOLDER_NAME_deep = MacOS
BUNDLE_FORMAT = shallow
BUNDLE_FRAMEWORKS_FOLDER_PATH = Frameworks
BUNDLE_PLUGINS_FOLDER_PATH = PlugIns
BUNDLE_PRIVATE_HEADERS_FOLDER_PATH = PrivateHeaders
BUNDLE_PUBLIC_HEADERS_FOLDER_PATH = Headers
CACHE_ROOT = /var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/C/com.apple.DeveloperTools/12.0-12A8169g/Xcode
CCHROOT = /var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/C/com.apple.DeveloperTools/12.0-12A8169g/Xcode
CHMOD = /bin/chmod
CHOWN = /usr/sbin/chown
CLANG_ANALYZER_NONNULL = YES
CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
CLANG_CXX_LIBRARY = libc++
CLANG_ENABLE_MODULES = YES
CLANG_ENABLE_OBJC_ARC = YES
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
CLANG_WARN_BOOL_CONVERSION = YES
CLANG_WARN_COMMA = YES
CLANG_WARN_CONSTANT_CONVERSION = YES
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
CLANG_WARN_EMPTY_BODY = YES
CLANG_WARN_ENUM_CONVERSION = YES
CLANG_WARN_INFINITE_RECURSION = YES
CLANG_WARN_INT_CONVERSION = YES
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
CLANG_WARN_STRICT_PROTOTYPES = YES
CLANG_WARN_SUSPICIOUS_MOVE = YES
CLANG_WARN_UNREACHABLE_CODE = YES
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
CLASS_FILE_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/devnico/code/tab_orientation_test/build/ios/Release-iphoneos/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext
CODE_SIGN_IDENTITY = iPhone Developer
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/devnico/code/tab_orientation_test/build/ios/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Release
CONFIGURATION_BUILD_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Release-iphoneos
CONFIGURATION_TEMP_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Runner.build/Release-iphoneos
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_SIMULATOR_PLATFORM_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform
CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk
CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator14.0
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = arm64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DART_OBFUSCATION = false
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_DEXT_INSTALL_PATH = /System/Library/DriverExtensions
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min=
DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_version_min
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 14.0
DERIVED_FILES_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode-beta.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode-beta.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = en
DOCUMENTATION_FOLDER_PATH = Runner.app/en.lproj/Documentation
DONT_GENERATE_INFOPLIST_FILE = NO
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode-beta.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/devnico/code/tab_orientation_test/build/ios/Release-iphoneos
EFFECTIVE_PLATFORM_NAME = -iphoneos
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBEDDED_PROFILE_NAME = embedded.mobileprovision
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HARDENED_RUNTIME = NO
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_NS_ASSERTIONS = NO
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = NO
ENABLE_TESTING_SEARCH_PATHS = NO
ENTITLEMENTS_ALLOWED = YES
ENTITLEMENTS_DESTINATION = Signature
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = 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/devnico/code/tab_orientation_test/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/devnico/code/tab_orientation_test
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_NAME = 1.0.0
FLUTTER_BUILD_NUMBER = 1
FLUTTER_FRAMEWORK_DIR = /Users/devnico/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/devnico/flutter
FLUTTER_TARGET = /Users/devnico/code/tab_orientation_test/lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = /Users/devnico/code/tab_orientation_test/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_SYMBOLS_PRIVATE_EXTERN = YES
GCC_THUMB_SUPPORT = YES
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 20
GROUP = staff
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/devnico
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/en.lproj/InfoPlist.strings
INLINE_PRIVATE_FRAMEWORKS = NO
INSTALLHDRS_COPY_PHASE = NO
INSTALLHDRS_SCRIPT_PHASE = NO
INSTALL_DIR = /tmp/Runner.dst/Applications
INSTALL_GROUP = staff
INSTALL_MODE_FLAG = u+w,go-w,a+rX
INSTALL_OWNER = devnico
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
KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/devnico/code/tab_orientation_test/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/devnico/code/tab_orientation_test/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.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-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_DEXT_INSTALL_PATH = /Library/DriverExtensions
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/devnico/code/tab_orientation_test/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_arm64 =
LINK_FILE_LIST_normal_armv7 =
LINK_WITH_STANDARD_LIBRARIES = YES
LLVM_TARGET_TRIPLE_OS_VERSION = ios8.0
LLVM_TARGET_TRIPLE_VENDOR = apple
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/en.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFCopyLocalizedString
LOCALIZED_STRING_SWIFTUI_SUPPORT = YES
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 20A5343i
MAC_OS_X_VERSION_ACTUAL = 110000
MAC_OS_X_VERSION_MAJOR = 110000
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Release-iphoneos/Runner.app
MODULES_FOLDER_PATH = Runner.app/Modules
MODULE_CACHE_DIR = /Users/devnico/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = NO
NATIVE_ARCH = armv7
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJECT_FILE_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/devnico/code/tab_orientation_test/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal
OBJROOT = /Users/devnico/code/tab_orientation_test/build/ios
ONLY_ACTIVE_ARCH = NO
OS = MACOS
OSAC = /usr/bin/osacompile
OTHER_LDFLAGS = -framework Flutter
PACKAGE_CONFIG = .packages
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode-beta.app/Contents/Developer/usr/bin:/Users/devnico/.nvm/versions/node/v12.18.2/bin:/Users/devnico/Library/Android/sdk/emulator/:/Users/devnico/Library/Android/sdk/tools/bin/:/Users/devnico/Library/Android/sdk/tools/:/Users/devnico/Library/Android/sdk/platform-tools/:/Users/devnico/Library/Python/3.7/bin:/usr/local/opt/mysql@5.6/bin:/Users/devnico/.composer/vendor/bin:/usr/local/sbin:/Users/devnico/flutter/bin:/Users/devnico/.npm-global/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Apple/usr/bin:/usr/local/CrossPack-AVR/bin:/Users/devnico/.nvm/versions/node/v12.18.2/bin:/Users/devnico/Library/Android/sdk/emulator/:/Users/devnico/Library/Android/sdk/tools/bin/:/Users/devnico/Library/Android/sdk/tools/:/Users/devnico/Library/Android/sdk/platform-tools/:/Users/devnico/Library/Python/3.7/bin:/usr/local/opt/mysql@5.6/bin:/Users/devnico/.composer/vendor/bin:/usr/local/sbin:/Users/devnico/flutter/bin:/Users/devnico/.npm-global/bin:/Users/devnico/.pub-cache/bin:/Users/devnico/.fastlane/bin:/Users/devnico/.pub-cache/bin:/Users/devnico/.fastlane/bin
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode-beta.app/Contents/Developer/Headers /Applications/Xcode-beta.app/Contents/Developer/SDKs /Applications/Xcode-beta.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = /Users/devnico/code/tab_orientation_test/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform
PLATFORM_DISPLAY_NAME = iOS
PLATFORM_NAME = iphoneos
PLATFORM_PREFERRED_ARCH = arm64
PLATFORM_PRODUCT_BUILD_VERSION = 18A5332e
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = com.example.tabOrientationTest
PRODUCT_BUNDLE_PACKAGE_TYPE = APPL
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/devnico/code/tab_orientation_test/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Runner.build/DerivedSources
PROJECT_DIR = /Users/devnico/code/tab_orientation_test/ios
PROJECT_FILE_PATH = /Users/devnico/code/tab_orientation_test/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Runner.build
PROJECT_TEMP_ROOT = /Users/devnico/code/tab_orientation_test/build/ios
PROVISIONING_PROFILE_REQUIRED = YES
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
RESOURCE_RULES_REQUIRED = YES
REZ_COLLECTOR_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SDKROOT = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk
SDK_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk
SDK_DIR_iphoneos14_0 = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk
SDK_NAME = iphoneos14.0
SDK_NAMES = iphoneos14.0
SDK_PRODUCT_BUILD_VERSION = 18A5332e
SDK_VERSION = 14.0
SDK_VERSION_ACTUAL = 140000
SDK_VERSION_MAJOR = 140000
SDK_VERSION_MINOR = 000
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/devnico/code/tab_orientation_test/build/ios/Release-iphoneos/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/devnico/code/tab_orientation_test/build/ios/SharedPrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/devnico/code/tab_orientation_test/ios
SRCROOT = /Users/devnico/code/tab_orientation_test/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = YES
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphoneos
SUPPORTS_MACCATALYST = NO
SUPPORTS_TEXT_BASED_API = NO
SWIFT_COMPILATION_MODE = wholemodule
SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
SWIFT_OPTIMIZATION_LEVEL = -O
SWIFT_PLATFORM_TARGET_PREFIX = ios
SWIFT_VERSION = 5.0
SYMROOT = /Users/devnico/code/tab_orientation_test/build/ios
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode-beta.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode-beta.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Utilities
SYSTEM_DEXT_INSTALL_PATH = /System/Library/DriverExtensions
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Release-iphoneos
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILES_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILE_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_ROOT = /Users/devnico/code/tab_orientation_test/build/ios
TEST_FRAMEWORK_SEARCH_PATHS = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/Developer/Library/Frameworks
TEST_LIBRARY_SEARCH_PATHS = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib
TOOLCHAIN_DIR = /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TRACK_WIDGET_CREATION = true
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
TREE_SHAKE_ICONS = false
UID = 501
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = devnico
USER_APPS_DIR = /Users/devnico/Applications
USER_LIBRARY_DIR = /Users/devnico/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
USE_LLVM_TARGET_TRIPLES = YES
USE_LLVM_TARGET_TRIPLES_FOR_CLANG = YES
USE_LLVM_TARGET_TRIPLES_FOR_LD = YES
USE_LLVM_TARGET_TRIPLES_FOR_TAPI = YES
VALIDATE_PRODUCT = YES
VALIDATE_WORKSPACE = NO
VALID_ARCHS = arm64 arm64e armv7 armv7s
VERBOSE_PBXCP = NO
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = devnico
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-beta.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 12A8169g
XCODE_VERSION_ACTUAL = 1200
XCODE_VERSION_MAJOR = 1200
XCODE_VERSION_MINOR = 1200
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = arm64
variant = normal
[ +15 ms] Building Runner.app for 99BEE55C-9EE1-4923-9C6A-36434C83F851.
[ +21 ms] executing: xattr -r -d com.apple.FinderInfo /Users/devnico/code/tab_orientation_test/ios
[ +3 ms] executing: /usr/bin/xcrun simctl spawn 99BEE55C-9EE1-4923-9C6A-36434C83F851 log stream --style json --predicate eventType = logEvent AND processImagePath ENDSWITH "Runner" AND (senderImagePath ENDSWITH "/Flutter" OR senderImagePath ENDSWITH "/libswiftCore.dylib" OR processImageUUID == senderImageUUID) AND NOT(eventMessage CONTAINS ": could not find icon for representation -> com.apple.") AND NOT(eventMessage BEGINSWITH "assertion failed: ") AND NOT(eventMessage CONTAINS " libxpc.dylib ")
[ +700 ms] executing: [/Users/devnico/code/tab_orientation_test/ios/] /usr/bin/xcodebuild -list
[+2604 ms] Command line invocation:
/Applications/Xcode-beta.app/Contents/Developer/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
[ +64 ms] executing: /usr/bin/plutil -convert json -o - /Users/devnico/code/tab_orientation_test/ios/Runner/Info.plist
[ +15 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Users/devnico/code/tab_orientation_test/ios/Runner/Info.plist
[ ] {"CFBundleShortVersionString":"$(FLUTTER_BUILD_NAME)","CFBundleIdentifier":"$(PRODUCT_BUNDLE_IDENTIFIER)","CFBundleInfoDictionaryVersion":"6.0","UIMainStoryboardFile":"Main","CFBundleVersion":"$(FLUTTER_BUILD_NUMBER)","UILaunchStoryboardName":"LaunchScreen","CFBundleExecutable":"$(EXECUTABLE_NAME)","LSRequiresIPhoneOS":true,"UISupportedInterfaceOrientations":["UIInterfaceOrientationPortrait","UIInterfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRight"],"UIViewControllerBasedStatusBarAppearance":false,"CFBundleSignature":"????","CFBundlePackageType":"APPL","CFBundleDevelopmentRegion":"$(DEVELOPMENT_LANGUAGE)","UISupportedInterfaceOrientations~ipad":["UIInterfaceOrientationPortrait","UIInterfaceOrientationPortraitUpsideDown","UIInterfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRight"],"CFBundleName":"tab_orientation_test"}
[ +3 ms] executing: mkfifo /var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/T/flutter_tools.gf8Hyh/flutter_build_log_pipe.8NhuPC/pipe_to_stdout
[ +9 ms] Exit code 0 from: mkfifo /var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/T/flutter_tools.gf8Hyh/flutter_build_log_pipe.8NhuPC/pipe_to_stdout
[ +3 ms] Running Xcode build...
[ +1 ms] executing: [/Users/devnico/code/tab_orientation_test/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/devnico/code/tab_orientation_test/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/T/flutter_tools.gf8Hyh/flutter_build_log_pipe.8NhuPC/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO
[+15877 ms] Running Xcode build... (completed in 15,865ms, longer than expected)
[ +2 ms] └─Compiling, linking and signing...
[+6834 ms] Command line invocation:
/Applications/Xcode-beta.app/Contents/Developer/usr/bin/xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/devnico/code/tab_orientation_test/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/T/flutter_tools.gf8Hyh/flutter_build_log_pipe.8NhuPC/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO
Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/devnico/code/tab_orientation_test/build/ios
COMPILER_INDEX_STORE_ENABLE = NO
FLUTTER_SUPPRESS_ANALYTICS = true
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/T/flutter_tools.gf8Hyh/flutter_build_log_pipe.8NhuPC/pipe_to_stdout
SDKROOT = iphonesimulator14.0
VERBOSE_SCRIPT_LOGGING = YES
note: Using new build system
note: Building targets in parallel
note: Planning build
note: Constructing build description
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.0.99. (in target 'Runner' from project 'Runner')
ProcessProductPackaging "" /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent (in target 'Runner' from project 'Runner')
cd /Users/devnico/code/tab_orientation_test/ios
Entitlements:
{
"com.apple.security.get-task-allow" = 1;
}
builtin-productPackagingUtility -entitlements -format xml -o /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent
ProcessProductPackaging "" /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent (in target 'Runner' from project 'Runner')
cd /Users/devnico/code/tab_orientation_test/ios
Entitlements:
{
"application-identifier" = "8NWAQRXJTF.com.example.tabOrientationTest";
"keychain-access-groups" = (
"8NWAQRXJTF.com.example.tabOrientationTest"
);
}
builtin-productPackagingUtility -entitlements -format xml -o /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent
PhaseScriptExecution Run\ Script /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh (in target 'Runner' from project 'Runner')
cd /Users/devnico/code/tab_orientation_test/ios
export ACTION\=build
export AD_HOC_CODE_SIGNING_ALLOWED\=YES
export ALTERNATE_GROUP\=staff
export ALTERNATE_MODE\=u+w,go-w,a+rX
export ALTERNATE_OWNER\=devnico
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES\=NO
export ALWAYS_SEARCH_USER_PATHS\=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS\=NO
export APPLE_INTERNAL_DEVELOPER_DIR\=/AppleInternal/Developer
export APPLE_INTERNAL_DIR\=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR\=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR\=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS\=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY\=NO
export APPLY_RULES_IN_COPY_FILES\=NO
export APPLY_RULES_IN_COPY_HEADERS\=NO
export ARCHS\=x86_64
export ARCHS_STANDARD\=arm64\ i386\ x86_64
export ARCHS_STANDARD_32_64_BIT\=arm64\ i386\ x86_64
export ARCHS_STANDARD_32_BIT\=i386
export ARCHS_STANDARD_64_BIT\=arm64\ x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT\=arm64\ i386\ x86_64
export ARCHS_UNIVERSAL_IPHONE_OS\=arm64\ i386\ x86_64
export ASSETCATALOG_COMPILER_APPICON_NAME\=AppIcon
export AVAILABLE_PLATFORMS\=appletvos\ appletvsimulator\ iphoneos\ iphonesimulator\ macosx\ watchos\ watchsimulator
export AppIdentifierPrefix\=8NWAQRXJTF.
export BITCODE_GENERATION_MODE\=marker
export BUILD_ACTIVE_RESOURCES_ONLY\=YES
export BUILD_COMPONENTS\=headers\ build
export BUILD_DIR\=/Users/devnico/code/tab_orientation_test/build/ios
export BUILD_LIBRARY_FOR_DISTRIBUTION\=NO
export BUILD_ROOT\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Products
export BUILD_STYLE\=
export BUILD_VARIANTS\=normal
export BUILT_PRODUCTS_DIR\=/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator
export BUNDLE_CONTENTS_FOLDER_PATH_deep\=Contents/
export BUNDLE_EXECUTABLE_FOLDER_NAME_deep\=MacOS
export BUNDLE_FORMAT\=shallow
export BUNDLE_FRAMEWORKS_FOLDER_PATH\=Frameworks
export BUNDLE_PLUGINS_FOLDER_PATH\=PlugIns
export BUNDLE_PRIVATE_HEADERS_FOLDER_PATH\=PrivateHeaders
export BUNDLE_PUBLIC_HEADERS_FOLDER_PATH\=Headers
export CACHE_ROOT\=/var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/C/com.apple.DeveloperTools/12.0-12A8169g/Xcode
export CCHROOT\=/var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/C/com.apple.DeveloperTools/12.0-12A8169g/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/devnico/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING\=YES
export CLANG_WARN_BOOL_CONVERSION\=YES
export CLANG_WARN_COMMA\=YES
export CLANG_WARN_CONSTANT_CONVERSION\=YES
export CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS\=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE\=YES_ERROR
export CLANG_WARN_EMPTY_BODY\=YES
export CLANG_WARN_ENUM_CONVERSION\=YES
export CLANG_WARN_INFINITE_RECURSION\=YES
export CLANG_WARN_INT_CONVERSION\=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION\=YES
export CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF\=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION\=YES
export CLANG_WARN_OBJC_ROOT_CLASS\=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS\=YES
export CLANG_WARN_STRICT_PROTOTYPES\=YES
export CLANG_WARN_SUSPICIOUS_MOVE\=YES
export CLANG_WARN_UNREACHABLE_CODE\=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH\=YES
export CLASS_FILE_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
export CLEAN_PRECOMPS\=YES
export CLONE_HEADERS\=NO
export CODESIGNING_FOLDER_PATH\=/Users/devnico/code/tab_orientation_test/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 COMPILER_INDEX_STORE_ENABLE\=NO
export COMPOSITE_SDK_DIRS\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES\=YES
export CONFIGURATION\=Debug
export CONFIGURATION_BUILD_DIR\=/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/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-beta.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME\=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk
export CORRESPONDING_DEVICE_SDK_NAME\=iphoneos14.0
export CP\=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY\=NO
export CURRENT_ARCH\=undefined_arch
export CURRENT_PROJECT_VERSION\=1
export CURRENT_VARIANT\=normal
export DART_OBFUSCATION\=false
export DEAD_CODE_STRIPPING\=YES
export DEBUGGING_SYMBOLS\=YES
export DEBUG_INFORMATION_FORMAT\=dwarf
export DEFAULT_COMPILER\=com.apple.compilers.llvm.clang.1_0
export DEFAULT_DEXT_INSTALL_PATH\=/System/Library/DriverExtensions
export DEFAULT_KEXT_INSTALL_PATH\=/System/Library/Extensions
export DEFINES_MODULE\=NO
export DEPLOYMENT_LOCATION\=NO
export DEPLOYMENT_POSTPROCESSING\=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME\=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME\=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\=9.0\ 9.1\ 9.2\ 9.3\ 10.0\ 10.1\ 10.2\ 10.3\ 11.0\ 11.1\ 11.2\ 11.3\ 11.4\ 12.0\ 12.1\ 12.2\ 12.3\ 12.4\ 13.0\ 13.1\ 13.2\ 13.3\ 13.4\ 13.5\ 14.0
export DERIVED_FILES_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_FILE_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_SOURCES_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR\=/Applications/Xcode-beta.app/Contents/Developer/usr/bin
export DEVELOPER_DIR\=/Applications/Xcode-beta.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED\=/Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR\=/Applications/Xcode-beta.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE\=en
export DOCUMENTATION_FOLDER_PATH\=Runner.app/en.lproj/Documentation
export DONT_GENERATE_INFOPLIST_FILE\=NO
export DO_HEADER_SCANNING_IN_JAM\=NO
export DSTROOT\=/tmp/Runner.dst
export DT_TOOLCHAIN_DIR\=/Applications/Xcode-beta.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/devnico/code/tab_orientation_test/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_HARDENED_RUNTIME\=NO
export ENABLE_HEADER_DEPENDENCIES\=YES
export ENABLE_ON_DEMAND_RESOURCES\=YES
export ENABLE_PREVIEWS\=NO
export ENABLE_STRICT_OBJC_MSGSEND\=YES
export ENABLE_TESTABILITY\=YES
export ENABLE_TESTING_SEARCH_PATHS\=NO
export ENTITLEMENTS_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 FILE_LIST\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
export FIXED_FILES_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
export FLUTTER_APPLICATION_PATH\=/Users/devnico/code/tab_orientation_test
export FLUTTER_BUILD_DIR\=build
export FLUTTER_BUILD_NAME\=1.0.0
export FLUTTER_BUILD_NUMBER\=1
export FLUTTER_FRAMEWORK_DIR\=/Users/devnico/flutter/bin/cache/artifacts/engine/ios
export FLUTTER_ROOT\=/Users/devnico/flutter
export FLUTTER_SUPPRESS_ANALYTICS\=true
export FLUTTER_TARGET\=/Users/devnico/code/tab_orientation_test/lib/main.dart
export FRAMEWORKS_FOLDER_PATH\=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX\=-framework
export FRAMEWORK_SEARCH_PATHS\=/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator\ \ /Users/devnico/code/tab_orientation_test/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\=20
export GROUP\=staff
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT\=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES\=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS\=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS\=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES\=YES
export HEADERMAP_USES_VFS\=NO
export HEADER_SEARCH_PATHS\=/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/include\
export HIDE_BITCODE_SYMBOLS\=YES
export HOME\=/Users/devnico
export ICONV\=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS\=YES
export INFOPLIST_FILE\=Runner/Info.plist
export INFOPLIST_OUTPUT_FORMAT\=binary
export INFOPLIST_PATH\=Runner.app/Info.plist
export INFOPLIST_PREPROCESS\=NO
export INFOSTRINGS_PATH\=Runner.app/en.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS\=NO
export INSTALLHDRS_COPY_PHASE\=NO
export INSTALLHDRS_SCRIPT_PHASE\=NO
export INSTALL_DIR\=/tmp/Runner.dst/Applications
export INSTALL_GROUP\=staff
export INSTALL_MODE_FLAG\=u+w,go-w,a+rX
export INSTALL_OWNER\=devnico
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/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat
export LD_ENTITLEMENTS_SECTION\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent
export LD_GENERATE_MAP_FILE\=NO
export LD_MAP_FILE_PATH\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-undefined_arch.txt
export LD_NO_PIE\=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER\=YES
export LD_RUNPATH_SEARCH_PATHS\=\ @executable_path/Frameworks
export LEGACY_DEVELOPER_DIR\=/Applications/Xcode-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX\=lex
export LIBRARY_DEXT_INSTALL_PATH\=/Library/DriverExtensions
export LIBRARY_FLAG_NOSPACE\=YES
export LIBRARY_FLAG_PREFIX\=-l
export LIBRARY_KEXT_INSTALL_PATH\=/Library/Extensions
export LIBRARY_SEARCH_PATHS\=/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator\ \ /Users/devnico/code/tab_orientation_test/ios/Flutter
export LINKER_DISPLAYS_MANGLED_NAMES\=NO
export LINK_FILE_LIST_normal_x86_64\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/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_OS_VERSION\=ios8.0
export LLVM_TARGET_TRIPLE_SUFFIX\=-simulator
export LLVM_TARGET_TRIPLE_VENDOR\=apple
export LOCALIZED_RESOURCES_FOLDER_PATH\=Runner.app/en.lproj
export LOCALIZED_STRING_MACRO_NAMES\=NSLocalizedString\ CFCopyLocalizedString
export LOCALIZED_STRING_SWIFTUI_SUPPORT\=YES
export LOCAL_ADMIN_APPS_DIR\=/Applications/Utilities
export LOCAL_APPS_DIR\=/Applications
export LOCAL_DEVELOPER_DIR\=/Library/Developer
export LOCAL_LIBRARY_DIR\=/Library
export LOCROOT\=/Users/devnico/code/tab_orientation_test/ios
export LOCSYMROOT\=/Users/devnico/code/tab_orientation_test/ios
export MACH_O_TYPE\=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION\=20A5343i
export MAC_OS_X_VERSION_ACTUAL\=110000
export MAC_OS_X_VERSION_MAJOR\=110000
export MAC_OS_X_VERSION_MINOR\=0000
export METAL_LIBRARY_FILE_BASE\=default
export METAL_LIBRARY_OUTPUT_DIR\=/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app
export MODULES_FOLDER_PATH\=Runner.app/Modules
export MODULE_CACHE_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
export MTL_ENABLE_DEBUG_INFO\=YES
export NATIVE_ARCH\=x86_64
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/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
export OBJECT_FILE_DIR_normal\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export OBJROOT\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH\=YES
export OS\=MACOS
export OSAC\=/usr/bin/osacompile
export OTHER_LDFLAGS\=\ -framework\ Flutter
export PACKAGE_CONFIG\=.packages
export PACKAGE_TYPE\=com.apple.package-type.wrapper.application
export PASCAL_STRINGS\=YES
export PATH\=/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode-beta.app/Contents/Developer/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/usr/local/bin:/Users/devnico/.nvm/versions/node/v12.18.2/bin:/Users/devnico/Library/Android/sdk/emulator/:/Users/devnico/Library/Android/sdk/tools/bin/:/Users/devnico/Library/Android/sdk/tools/:/Users/devnico/Library/Android/sdk/platform-tools/:/Users/devnico/Library/Python/3.7/bin:/usr/local/opt/mysql@5.6/bin:/Users/devnico/.composer/vendor/bin:/usr/local/sbin:/Users/devnico/flutter/bin:/Users/devnico/.npm-global/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Apple/usr/bin:/usr/local/CrossPack-AVR/bin:/Users/devnico/.pub-cache/bin:/Users/devnico/.fastlane/bin
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES\=/usr/include\ /usr/local/include\ /System/Library/Frameworks\ /System/Library/PrivateFrameworks\ /Applications/Xcode-beta.app/Contents/Developer/Headers\ /Applications/Xcode-beta.app/Contents/Developer/SDKs\ /Applications/Xcode-beta.app/Contents/Developer/Platforms
export PBDEVELOPMENTPLIST_PATH\=Runner.app/pbdevelopment.plist
export PER_ARCH_OBJECT_FILE_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch
export PER_VARIANT_OBJECT_FILE_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export PKGINFO_FILE_PATH\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
export PKGINFO_PATH\=Runner.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME\=iOS\ Simulator
export PLATFORM_FAMILY_NAME\=iOS
export PLATFORM_NAME\=iphonesimulator
export PLATFORM_PREFERRED_ARCH\=x86_64
export PLATFORM_PRODUCT_BUILD_VERSION\=18A5332e
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/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/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.tabOrientationTest
export PRODUCT_BUNDLE_PACKAGE_TYPE\=APPL
export PRODUCT_MODULE_NAME\=Runner
export PRODUCT_NAME\=Runner
export PRODUCT_SETTINGS_PATH\=/Users/devnico/code/tab_orientation_test/ios/Runner/Info.plist
export PRODUCT_TYPE\=com.apple.product-type.application
export PROFILING_CODE\=NO
export PROJECT\=Runner
export PROJECT_DERIVED_FILE_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR\=/Users/devnico/code/tab_orientation_test/ios
export PROJECT_FILE_PATH\=/Users/devnico/code/tab_orientation_test/ios/Runner.xcodeproj
export PROJECT_NAME\=Runner
export PROJECT_TEMP_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build
export PROJECT_TEMP_ROOT\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/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/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
export REZ_OBJECTS_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS\=/Users/devnico/code/tab_orientation_test/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 SCRIPT_OUTPUT_STREAM_FILE\=/var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/T/flutter_tools.gf8Hyh/flutter_build_log_pipe.8NhuPC/pipe_to_stdout
export SDKROOT\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk
export SDK_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk
export SDK_DIR_iphonesimulator14_0\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk
export SDK_NAME\=iphonesimulator14.0
export SDK_NAMES\=iphonesimulator14.0
export SDK_PRODUCT_BUILD_VERSION\=18A5332e
export SDK_VERSION\=14.0
export SDK_VERSION_ACTUAL\=140000
export SDK_VERSION_MAJOR\=140000
export SDK_VERSION_MINOR\=000
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/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH\=Runner.app/SharedFrameworks
export SHARED_PRECOMPS_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH\=Runner.app/SharedSupport
export SKIP_INSTALL\=NO
export SOURCE_ROOT\=/Users/devnico/code/tab_orientation_test/ios
export SRCROOT\=/Users/devnico/code/tab_orientation_test/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\=iphoneos\ iphonesimulator
export SUPPORTS_TEXT_BASED_API\=NO
export SWIFT_OBJC_BRIDGING_HEADER\=Runner/Runner-Bridging-Header.h
export SWIFT_OPTIMIZATION_LEVEL\=-Onone
export SWIFT_PLATFORM_TARGET_PREFIX\=ios
export SWIFT_RESPONSE_FILE_PATH_normal_x86_64\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList
export SWIFT_VERSION\=5.0
export SYMROOT\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/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-beta.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR\=/Applications/Xcode-beta.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Applications/Utilities/Built\ Examples
export SYSTEM_DEVELOPER_DIR\=/Applications/Xcode-beta.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR\=/Applications/Xcode-beta.app/Contents/Developer/ADC\ Reference\ Library
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Applications/Graphics\ Tools
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Applications/Java\ Tools
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Applications/Performance\ Tools
export SYSTEM_DEVELOPER_RELEASENOTES_DIR\=/Applications/Xcode-beta.app/Contents/Developer/ADC\ Reference\ Library/releasenotes
export SYSTEM_DEVELOPER_TOOLS\=/Applications/Xcode-beta.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR\=/Applications/Xcode-beta.app/Contents/Developer/ADC\ Reference\ Library/documentation/DeveloperTools
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR\=/Applications/Xcode-beta.app/Contents/Developer/ADC\ Reference\ Library/releasenotes/DeveloperTools
export SYSTEM_DEVELOPER_USR_DIR\=/Applications/Xcode-beta.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Applications/Utilities
export SYSTEM_DEXT_INSTALL_PATH\=/System/Library/DriverExtensions
export SYSTEM_DOCUMENTATION_DIR\=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH\=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR\=/System/Library
export TAPI_VERIFY_MODE\=ErrorsOnly
export TARGETED_DEVICE_FAMILY\=1,2
export TARGETNAME\=Runner
export TARGET_BUILD_DIR\=/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER\=dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder
export TARGET_NAME\=Runner
export TARGET_TEMP_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILES_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILE_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_ROOT\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex
export TEST_FRAMEWORK_SEARCH_PATHS\=\ /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks\ /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk/Developer/Library/Frameworks
export TEST_LIBRARY_SEARCH_PATHS\=\ /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/lib
export TOOLCHAINS\=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TRACK_WIDGET_CREATION\=true
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES\=NO
export TREE_SHAKE_ICONS\=false
export TeamIdentifierPrefix\=8NWAQRXJTF.
export UID\=501
export UNLOCALIZED_RESOURCES_FOLDER_PATH\=Runner.app
export UNSTRIPPED_PRODUCT\=NO
export USER\=devnico
export USER_APPS_DIR\=/Users/devnico/Applications
export USER_LIBRARY_DIR\=/Users/devnico/Library
export USE_DYNAMIC_NO_PIC\=YES
export USE_HEADERMAP\=YES
export USE_HEADER_SYMLINKS\=NO
export USE_LLVM_TARGET_TRIPLES\=YES
export USE_LLVM_TARGET_TRIPLES_FOR_CLANG\=YES
export USE_LLVM_TARGET_TRIPLES_FOR_LD\=YES
export USE_LLVM_TARGET_TRIPLES_FOR_TAPI\=YES
export VALIDATE_DEVELOPMENT_ASSET_PATHS\=YES_ERROR
export VALIDATE_PRODUCT\=NO
export VALIDATE_WORKSPACE\=YES_ERROR
export VALID_ARCHS\=arm64\ arm64e\ 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\=devnico
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-beta.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION\=12A8169g
export XCODE_VERSION_ACTUAL\=1200
export XCODE_VERSION_MAJOR\=1200
export XCODE_VERSION_MINOR\=1200
export XPCSERVICES_FOLDER_PATH\=Runner.app/XPCServices
export YACC\=yacc
export arch\=undefined_arch
export variant\=normal
/bin/sh -c /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
♦ rm -rf -- /Users/devnico/code/tab_orientation_test/ios/Flutter/Flutter.framework
♦ cp -- /Users/devnico/flutter/bin/cache/artifacts/engine/ios/Flutter.podspec /Users/devnico/code/tab_orientation_test/ios/Flutter
♦ cp -r -- /Users/devnico/flutter/bin/cache/artifacts/engine/ios/Flutter.framework /Users/devnico/code/tab_orientation_test/ios/Flutter
♦ /Users/devnico/flutter/bin/flutter --verbose assemble --output=/Users/devnico/code/tab_orientation_test/ios/Flutter/ -dTargetPlatform=ios -dTargetFile=/Users/devnico/code/tab_orientation_test/lib/main.dart -dBuildMode=debug -dIosArchs=x86_64 -dSplitDebugInfo= -dTreeShakeIcons=false -dTrackWidgetCreation=true -dDartObfuscation=false -dEnableBitcode= --ExtraGenSnapshotOptions= --DartDefines= --ExtraFrontEndOptions= debug_ios_bundle_flutter_assets
[ +148 ms] executing: [/Users/devnico/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
[ +56 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[ ] 840c9205b344a59e48a5926ee2d791cc5640924c
[ ] executing: [/Users/devnico/flutter/] git tag --contains HEAD
[ +465 ms] Exit code 0 from: git tag --contains HEAD
[ ] 1.20.0
1.20.1
1.20.2
[ +11 ms] executing: [/Users/devnico/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +7 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/stable
[ ] executing: [/Users/devnico/flutter/] git ls-remote --get-url origin
[ +7 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ +64 ms] executing: [/Users/devnico/flutter/] git rev-parse --abbrev-ref HEAD
[ +8 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] stable
[ +45 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[ +3 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[ +7 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update.
[ ] Artifact Instance of 'GradleWrapper' is not required, skipping update.
[ ] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[ ] Artifact Instance of 'FlutterSdk' is not required, skipping update.
[ ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update.
[ +106 ms] Initializing file store
[ +23 ms] Skipping target: gen_localizations
[ +9 ms] kernel_snapshot: Starting due to {}
[ +38 ms] /Users/devnico/flutter/bin/cache/dart-sdk/bin/dart --disable-dart-dev /Users/devnico/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/devnico/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --target=flutter -Ddart.developer.causal_async_stacks=true -Ddart.vm.profile=false -Ddart.vm.product=false --bytecode-options=source-positions,local-var-info,debugger-stops,instance-field-initializers,keep-unreachable-code,avoid-closure-call-instructions --enable-asserts --track-widget-creation --no-link-platform --packages /Users/devnico/code/tab_orientation_test/.packages --output-dill /Users/devnico/code/tab_orientation_test/.dart_tool/flutter_build/9ed0fe93393cc2913b53b06cab94e0a4/app.dill --depfile /Users/devnico/code/tab_orientation_test/.dart_tool/flutter_build/9ed0fe93393cc2913b53b06cab94e0a4/kernel_snapshot.d package:tab_orientation_test/main.dart
[+7678 ms] kernel_snapshot: Complete
[ +651 ms] debug_universal_framework: Starting due to {InvalidatedReason.inputChanged}
[ +8 ms] executing: xcrun --sdk iphoneos --show-sdk-path
[ +12 ms] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk
[ ] executing: xcrun clang -x c -arch arm64 /var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/T/flutter_tools.5XDKjx/flutter_tools_stub_source.1sEezY/debug_app.cc -dynamiclib -fembed-bitcode-marker -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -install_name @rpath/App.framework/App -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk -o /Users/devnico/code/tab_orientation_test/.dart_tool/flutter_build/9ed0fe93393cc2913b53b06cab94e0a4/iphone_framework
[ +231 ms] executing: xcrun --sdk iphonesimulator --show-sdk-path
[ +9 ms] /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk
[ ] executing: xcrun clang -x c -arch x86_64 /var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/T/flutter_tools.5XDKjx/flutter_tools_stub_source.ynmGEq/debug_app.cc -dynamiclib -fembed-bitcode-marker -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -install_name @rpath/App.framework/App -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk -o /Users/devnico/code/tab_orientation_test/.dart_tool/flutter_build/9ed0fe93393cc2913b53b06cab94e0a4/simulator_framework
[ +102 ms] executing: xcrun lipo -create /Users/devnico/code/tab_orientation_test/.dart_tool/flutter_build/9ed0fe93393cc2913b53b06cab94e0a4/iphone_framework /Users/devnico/code/tab_orientation_test/.dart_tool/flutter_build/9ed0fe93393cc2913b53b06cab94e0a4/simulator_framework -output /Users/devnico/code/tab_orientation_test/.dart_tool/flutter_build/9ed0fe93393cc2913b53b06cab94e0a4/App.framework/App
[ +17 ms] debug_universal_framework: Complete
[ +4 ms] debug_ios_bundle_flutter_assets: Starting due to {}
[ +192 ms] debug_ios_bundle_flutter_assets: Complete
[ +721 ms] Persisting file store
[ +6 ms] Done persisting file store
[ +6 ms] build succeeded.
[ +11 ms] "flutter assemble" took 9,859ms.
[ +5 ms] ensureAnalyticsSent: 0ms
[ +1 ms] Running shutdown hooks
[ ] Shutdown hook priority 4
[ ] Shutdown hooks complete
[ ] exiting with code 0
Project /Users/devnico/code/tab_orientation_test built and packaged successfully.
CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler (in target 'Runner' from project 'Runner')
cd /Users/devnico/code/tab_orientation_test/ios
export DEVELOPER_DIR\=/Applications/Xcode-beta.app/Contents/Developer
export SDKROOT\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -incremental -module-name Runner -Onone -enable-batch-mode -enforce-exclusivity\=checked @/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList -sdk /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk -target x86_64-apple-ios8.0-simulator -g -module-cache-path /Users/devnico/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -swift-version 5 -I /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator -F /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator -F /Users/devnico/code/tab_orientation_test/ios/Flutter -parse-as-library -c -j8 -output-file-map /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-OutputFileMap.json -parseable-output -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -Xcc -iquote -Xcc /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -Xcc -I/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources-normal/x86_64 -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h -import-objc-header /Users/devnico/code/tab_orientation_test/ios/Runner/Runner-Bridging-Header.h -pch-output-dir /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/PrecompiledHeaders -working-directory /Users/devnico/code/tab_orientation_test/ios
PrecompileSwiftBridgingHeader normal x86_64 (in target 'Runner' from project 'Runner')
cd /Users/devnico/code/tab_orientation_test/ios
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -target x86_64-apple-ios8.0-simulator -enable-objc-interop -sdk /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk -I /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator -F /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator -F /Users/devnico/code/tab_orientation_test/ios/Flutter -enable-testing -g -module-cache-path /Users/devnico/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -serialize-debugging-options -Xcc -working-directory -Xcc /Users/devnico/code/tab_orientation_test/ios -enable-anonymous-context-mangled-names -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -Xcc -iquote -Xcc /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -Xcc -I/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources-normal/x86_64 -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG\=1 -target-sdk-version 14.0 -serialize-diagnostics-path /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/PrecompiledHeaders/Runner-Bridging-Header-5CYMUGYID30Z.dia /Users/devnico/code/tab_orientation_test/ios/Runner/Runner-Bridging-Header.h -emit-pch -pch-output-dir /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/PrecompiledHeaders
CompileSwift normal x86_64 /Users/devnico/code/tab_orientation_test/ios/Runner/AppDelegate.swift (in target 'Runner' from project 'Runner')
cd /Users/devnico/code/tab_orientation_test/ios
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -c -primary-file /Users/devnico/code/tab_orientation_test/ios/Runner/AppDelegate.swift -emit-module-path /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate\~partial.swiftmodule -emit-module-doc-path /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate\~partial.swiftdoc -emit-module-source-info-path /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate\~partial.swiftsourceinfo -serialize-diagnostics-path /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.dia -emit-dependencies-path /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.d -emit-reference-dependencies-path /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.swiftdeps -target x86_64-apple-ios8.0-simulator -enable-objc-interop -sdk /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk -I /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator -F /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator -F /Users/devnico/code/tab_orientation_test/ios/Flutter -enable-testing -g -module-cache-path /Users/devnico/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -serialize-debugging-options -Xcc -working-directory -Xcc /Users/devnico/code/tab_orientation_test/ios -enable-anonymous-context-mangled-names -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -Xcc -iquote -Xcc /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -Xcc -I/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources-normal/x86_64 -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG\=1 -target-sdk-version 14.0 -import-objc-header /Users/devnico/code/tab_orientation_test/ios/Runner/Runner-Bridging-Header.h -pch-output-dir /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/PrecompiledHeaders -pch-disable-validation -parse-as-library -module-name Runner -o /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o
MergeSwiftModule normal x86_64 (in target 'Runner' from project 'Runner')
cd /Users/devnico/code/tab_orientation_test/ios
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -merge-modules -emit-module /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate\~partial.swiftmodule -parse-as-library -sil-merge-partial-modules -disable-diagnostic-passes -disable-sil-perf-optzns -target x86_64-apple-ios8.0-simulator -enable-objc-interop -sdk /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk -I /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator -F /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator -F /Users/devnico/code/tab_orientation_test/ios/Flutter -enable-testing -g -module-cache-path /Users/devnico/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -serialize-debugging-options -Xcc -working-directory -Xcc /Users/devnico/code/tab_orientation_test/ios -enable-anonymous-context-mangled-names -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -Xcc -iquote -Xcc /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -Xcc -I/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources-normal/x86_64 -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG\=1 -target-sdk-version 14.0 -emit-module-doc-path /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc -emit-module-source-info-path /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftsourceinfo -emit-objc-header-path /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h -import-objc-header /Users/devnico/code/tab_orientation_test/ios/Runner/Runner-Bridging-Header.h -module-name Runner -o /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule
CompileC /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o /Users/devnico/code/tab_orientation_test/ios/Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Runner' from project 'Runner')
cd /Users/devnico/code/tab_orientation_test/ios
export LANG\=en_US.US-ASCII
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios8.0-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path\=/Users/devnico/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/devnico/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror\=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror\=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -DDEBUG\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version\=2 -fobjc-legacy-dispatch -iquote /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/include -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources-normal/x86_64 -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator -F/Users/devnico/code/tab_orientation_test/ios/Flutter -MMD -MT dependencies -MF /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d --serialize-diagnostics /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.dia -c /Users/devnico/code/tab_orientation_test/ios/Runner/GeneratedPluginRegistrant.m -o /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o
Ld /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Runner normal (in target 'Runner' from project 'Runner')
cd /Users/devnico/code/tab_orientation_test/ios
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -target x86_64-apple-ios8.0-simulator -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk -L/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator -L/Users/devnico/code/tab_orientation_test/ios/Flutter -F/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator -F/Users/devnico/code/tab_orientation_test/ios/Flutter -filelist /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker @executable_path/Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/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 -L/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule -framework Flutter -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent -Xlinker -dependency_info -Xlinker /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat -o /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Runner
PhaseScriptExecution Thin\ Binary /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh (in target 'Runner' from project 'Runner')
cd /Users/devnico/code/tab_orientation_test/ios
export ACTION\=build
export AD_HOC_CODE_SIGNING_ALLOWED\=YES
export ALTERNATE_GROUP\=staff
export ALTERNATE_MODE\=u+w,go-w,a+rX
export ALTERNATE_OWNER\=devnico
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES\=NO
export ALWAYS_SEARCH_USER_PATHS\=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS\=NO
export APPLE_INTERNAL_DEVELOPER_DIR\=/AppleInternal/Developer
export APPLE_INTERNAL_DIR\=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR\=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR\=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS\=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY\=NO
export APPLY_RULES_IN_COPY_FILES\=NO
export APPLY_RULES_IN_COPY_HEADERS\=NO
export ARCHS\=x86_64
export ARCHS_STANDARD\=arm64\ i386\ x86_64
export ARCHS_STANDARD_32_64_BIT\=arm64\ i386\ x86_64
export ARCHS_STANDARD_32_BIT\=i386
export ARCHS_STANDARD_64_BIT\=arm64\ x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT\=arm64\ i386\ x86_64
export ARCHS_UNIVERSAL_IPHONE_OS\=arm64\ i386\ x86_64
export ASSETCATALOG_COMPILER_APPICON_NAME\=AppIcon
export AVAILABLE_PLATFORMS\=appletvos\ appletvsimulator\ iphoneos\ iphonesimulator\ macosx\ watchos\ watchsimulator
export AppIdentifierPrefix\=8NWAQRXJTF.
export BITCODE_GENERATION_MODE\=marker
export BUILD_ACTIVE_RESOURCES_ONLY\=YES
export BUILD_COMPONENTS\=headers\ build
export BUILD_DIR\=/Users/devnico/code/tab_orientation_test/build/ios
export BUILD_LIBRARY_FOR_DISTRIBUTION\=NO
export BUILD_ROOT\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Products
export BUILD_STYLE\=
export BUILD_VARIANTS\=normal
export BUILT_PRODUCTS_DIR\=/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator
export BUNDLE_CONTENTS_FOLDER_PATH_deep\=Contents/
export BUNDLE_EXECUTABLE_FOLDER_NAME_deep\=MacOS
export BUNDLE_FORMAT\=shallow
export BUNDLE_FRAMEWORKS_FOLDER_PATH\=Frameworks
export BUNDLE_PLUGINS_FOLDER_PATH\=PlugIns
export BUNDLE_PRIVATE_HEADERS_FOLDER_PATH\=PrivateHeaders
export BUNDLE_PUBLIC_HEADERS_FOLDER_PATH\=Headers
export CACHE_ROOT\=/var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/C/com.apple.DeveloperTools/12.0-12A8169g/Xcode
export CCHROOT\=/var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/C/com.apple.DeveloperTools/12.0-12A8169g/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/devnico/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING\=YES
export CLANG_WARN_BOOL_CONVERSION\=YES
export CLANG_WARN_COMMA\=YES
export CLANG_WARN_CONSTANT_CONVERSION\=YES
export CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS\=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE\=YES_ERROR
export CLANG_WARN_EMPTY_BODY\=YES
export CLANG_WARN_ENUM_CONVERSION\=YES
export CLANG_WARN_INFINITE_RECURSION\=YES
export CLANG_WARN_INT_CONVERSION\=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION\=YES
export CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF\=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION\=YES
export CLANG_WARN_OBJC_ROOT_CLASS\=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS\=YES
export CLANG_WARN_STRICT_PROTOTYPES\=YES
export CLANG_WARN_SUSPICIOUS_MOVE\=YES
export CLANG_WARN_UNREACHABLE_CODE\=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH\=YES
export CLASS_FILE_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
export CLEAN_PRECOMPS\=YES
export CLONE_HEADERS\=NO
export CODESIGNING_FOLDER_PATH\=/Users/devnico/code/tab_orientation_test/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 COMPILER_INDEX_STORE_ENABLE\=NO
export COMPOSITE_SDK_DIRS\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES\=YES
export CONFIGURATION\=Debug
export CONFIGURATION_BUILD_DIR\=/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/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-beta.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME\=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk
export CORRESPONDING_DEVICE_SDK_NAME\=iphoneos14.0
export CP\=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY\=NO
export CURRENT_ARCH\=undefined_arch
export CURRENT_PROJECT_VERSION\=1
export CURRENT_VARIANT\=normal
export DART_OBFUSCATION\=false
export DEAD_CODE_STRIPPING\=YES
export DEBUGGING_SYMBOLS\=YES
export DEBUG_INFORMATION_FORMAT\=dwarf
export DEFAULT_COMPILER\=com.apple.compilers.llvm.clang.1_0
export DEFAULT_DEXT_INSTALL_PATH\=/System/Library/DriverExtensions
export DEFAULT_KEXT_INSTALL_PATH\=/System/Library/Extensions
export DEFINES_MODULE\=NO
export DEPLOYMENT_LOCATION\=NO
export DEPLOYMENT_POSTPROCESSING\=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME\=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME\=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\=9.0\ 9.1\ 9.2\ 9.3\ 10.0\ 10.1\ 10.2\ 10.3\ 11.0\ 11.1\ 11.2\ 11.3\ 11.4\ 12.0\ 12.1\ 12.2\ 12.3\ 12.4\ 13.0\ 13.1\ 13.2\ 13.3\ 13.4\ 13.5\ 14.0
export DERIVED_FILES_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_FILE_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_SOURCES_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR\=/Applications/Xcode-beta.app/Contents/Developer/usr/bin
export DEVELOPER_DIR\=/Applications/Xcode-beta.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED\=/Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR\=/Applications/Xcode-beta.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE\=en
export DOCUMENTATION_FOLDER_PATH\=Runner.app/en.lproj/Documentation
export DONT_GENERATE_INFOPLIST_FILE\=NO
export DO_HEADER_SCANNING_IN_JAM\=NO
export DSTROOT\=/tmp/Runner.dst
export DT_TOOLCHAIN_DIR\=/Applications/Xcode-beta.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/devnico/code/tab_orientation_test/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_HARDENED_RUNTIME\=NO
export ENABLE_HEADER_DEPENDENCIES\=YES
export ENABLE_ON_DEMAND_RESOURCES\=YES
export ENABLE_PREVIEWS\=NO
export ENABLE_STRICT_OBJC_MSGSEND\=YES
export ENABLE_TESTABILITY\=YES
export ENABLE_TESTING_SEARCH_PATHS\=NO
export ENTITLEMENTS_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 FILE_LIST\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
export FIXED_FILES_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
export FLUTTER_APPLICATION_PATH\=/Users/devnico/code/tab_orientation_test
export FLUTTER_BUILD_DIR\=build
export FLUTTER_BUILD_NAME\=1.0.0
export FLUTTER_BUILD_NUMBER\=1
export FLUTTER_FRAMEWORK_DIR\=/Users/devnico/flutter/bin/cache/artifacts/engine/ios
export FLUTTER_ROOT\=/Users/devnico/flutter
export FLUTTER_SUPPRESS_ANALYTICS\=true
export FLUTTER_TARGET\=/Users/devnico/code/tab_orientation_test/lib/main.dart
export FRAMEWORKS_FOLDER_PATH\=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX\=-framework
export FRAMEWORK_SEARCH_PATHS\=/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator\ \ /Users/devnico/code/tab_orientation_test/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\=20
export GROUP\=staff
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT\=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES\=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS\=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS\=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES\=YES
export HEADERMAP_USES_VFS\=NO
export HEADER_SEARCH_PATHS\=/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/include\
export HIDE_BITCODE_SYMBOLS\=YES
export HOME\=/Users/devnico
export ICONV\=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS\=YES
export INFOPLIST_FILE\=Runner/Info.plist
export INFOPLIST_OUTPUT_FORMAT\=binary
export INFOPLIST_PATH\=Runner.app/Info.plist
export INFOPLIST_PREPROCESS\=NO
export INFOSTRINGS_PATH\=Runner.app/en.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS\=NO
export INSTALLHDRS_COPY_PHASE\=NO
export INSTALLHDRS_SCRIPT_PHASE\=NO
export INSTALL_DIR\=/tmp/Runner.dst/Applications
export INSTALL_GROUP\=staff
export INSTALL_MODE_FLAG\=u+w,go-w,a+rX
export INSTALL_OWNER\=devnico
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/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat
export LD_ENTITLEMENTS_SECTION\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent
export LD_GENERATE_MAP_FILE\=NO
export LD_MAP_FILE_PATH\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-undefined_arch.txt
export LD_NO_PIE\=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER\=YES
export LD_RUNPATH_SEARCH_PATHS\=\ @executable_path/Frameworks
export LEGACY_DEVELOPER_DIR\=/Applications/Xcode-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX\=lex
export LIBRARY_DEXT_INSTALL_PATH\=/Library/DriverExtensions
export LIBRARY_FLAG_NOSPACE\=YES
export LIBRARY_FLAG_PREFIX\=-l
export LIBRARY_KEXT_INSTALL_PATH\=/Library/Extensions
export LIBRARY_SEARCH_PATHS\=/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator\ \ /Users/devnico/code/tab_orientation_test/ios/Flutter
export LINKER_DISPLAYS_MANGLED_NAMES\=NO
export LINK_FILE_LIST_normal_x86_64\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/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_OS_VERSION\=ios8.0
export LLVM_TARGET_TRIPLE_SUFFIX\=-simulator
export LLVM_TARGET_TRIPLE_VENDOR\=apple
export LOCALIZED_RESOURCES_FOLDER_PATH\=Runner.app/en.lproj
export LOCALIZED_STRING_MACRO_NAMES\=NSLocalizedString\ CFCopyLocalizedString
export LOCALIZED_STRING_SWIFTUI_SUPPORT\=YES
export LOCAL_ADMIN_APPS_DIR\=/Applications/Utilities
export LOCAL_APPS_DIR\=/Applications
export LOCAL_DEVELOPER_DIR\=/Library/Developer
export LOCAL_LIBRARY_DIR\=/Library
export LOCROOT\=/Users/devnico/code/tab_orientation_test/ios
export LOCSYMROOT\=/Users/devnico/code/tab_orientation_test/ios
export MACH_O_TYPE\=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION\=20A5343i
export MAC_OS_X_VERSION_ACTUAL\=110000
export MAC_OS_X_VERSION_MAJOR\=110000
export MAC_OS_X_VERSION_MINOR\=0000
export METAL_LIBRARY_FILE_BASE\=default
export METAL_LIBRARY_OUTPUT_DIR\=/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app
export MODULES_FOLDER_PATH\=Runner.app/Modules
export MODULE_CACHE_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
export MTL_ENABLE_DEBUG_INFO\=YES
export NATIVE_ARCH\=x86_64
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/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
export OBJECT_FILE_DIR_normal\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export OBJROOT\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH\=YES
export OS\=MACOS
export OSAC\=/usr/bin/osacompile
export OTHER_LDFLAGS\=\ -framework\ Flutter
export PACKAGE_CONFIG\=.packages
export PACKAGE_TYPE\=com.apple.package-type.wrapper.application
export PASCAL_STRINGS\=YES
export PATH\=/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode-beta.app/Contents/Developer/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/usr/local/bin:/Users/devnico/.nvm/versions/node/v12.18.2/bin:/Users/devnico/Library/Android/sdk/emulator/:/Users/devnico/Library/Android/sdk/tools/bin/:/Users/devnico/Library/Android/sdk/tools/:/Users/devnico/Library/Android/sdk/platform-tools/:/Users/devnico/Library/Python/3.7/bin:/usr/local/opt/mysql@5.6/bin:/Users/devnico/.composer/vendor/bin:/usr/local/sbin:/Users/devnico/flutter/bin:/Users/devnico/.npm-global/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Apple/usr/bin:/usr/local/CrossPack-AVR/bin:/Users/devnico/.pub-cache/bin:/Users/devnico/.fastlane/bin
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES\=/usr/include\ /usr/local/include\ /System/Library/Frameworks\ /System/Library/PrivateFrameworks\ /Applications/Xcode-beta.app/Contents/Developer/Headers\ /Applications/Xcode-beta.app/Contents/Developer/SDKs\ /Applications/Xcode-beta.app/Contents/Developer/Platforms
export PBDEVELOPMENTPLIST_PATH\=Runner.app/pbdevelopment.plist
export PER_ARCH_OBJECT_FILE_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch
export PER_VARIANT_OBJECT_FILE_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export PKGINFO_FILE_PATH\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
export PKGINFO_PATH\=Runner.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME\=iOS\ Simulator
export PLATFORM_FAMILY_NAME\=iOS
export PLATFORM_NAME\=iphonesimulator
export PLATFORM_PREFERRED_ARCH\=x86_64
export PLATFORM_PRODUCT_BUILD_VERSION\=18A5332e
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/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/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.tabOrientationTest
export PRODUCT_BUNDLE_PACKAGE_TYPE\=APPL
export PRODUCT_MODULE_NAME\=Runner
export PRODUCT_NAME\=Runner
export PRODUCT_SETTINGS_PATH\=/Users/devnico/code/tab_orientation_test/ios/Runner/Info.plist
export PRODUCT_TYPE\=com.apple.product-type.application
export PROFILING_CODE\=NO
export PROJECT\=Runner
export PROJECT_DERIVED_FILE_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR\=/Users/devnico/code/tab_orientation_test/ios
export PROJECT_FILE_PATH\=/Users/devnico/code/tab_orientation_test/ios/Runner.xcodeproj
export PROJECT_NAME\=Runner
export PROJECT_TEMP_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build
export PROJECT_TEMP_ROOT\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/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/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
export REZ_OBJECTS_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS\=/Users/devnico/code/tab_orientation_test/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 SCRIPT_OUTPUT_STREAM_FILE\=/var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/T/flutter_tools.gf8Hyh/flutter_build_log_pipe.8NhuPC/pipe_to_stdout
export SDKROOT\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk
export SDK_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk
export SDK_DIR_iphonesimulator14_0\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk
export SDK_NAME\=iphonesimulator14.0
export SDK_NAMES\=iphonesimulator14.0
export SDK_PRODUCT_BUILD_VERSION\=18A5332e
export SDK_VERSION\=14.0
export SDK_VERSION_ACTUAL\=140000
export SDK_VERSION_MAJOR\=140000
export SDK_VERSION_MINOR\=000
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/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH\=Runner.app/SharedFrameworks
export SHARED_PRECOMPS_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH\=Runner.app/SharedSupport
export SKIP_INSTALL\=NO
export SOURCE_ROOT\=/Users/devnico/code/tab_orientation_test/ios
export SRCROOT\=/Users/devnico/code/tab_orientation_test/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\=iphoneos\ iphonesimulator
export SUPPORTS_TEXT_BASED_API\=NO
export SWIFT_OBJC_BRIDGING_HEADER\=Runner/Runner-Bridging-Header.h
export SWIFT_OPTIMIZATION_LEVEL\=-Onone
export SWIFT_PLATFORM_TARGET_PREFIX\=ios
export SWIFT_RESPONSE_FILE_PATH_normal_x86_64\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.SwiftFileList
export SWIFT_VERSION\=5.0
export SYMROOT\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/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-beta.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR\=/Applications/Xcode-beta.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Applications/Utilities/Built\ Examples
export SYSTEM_DEVELOPER_DIR\=/Applications/Xcode-beta.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR\=/Applications/Xcode-beta.app/Contents/Developer/ADC\ Reference\ Library
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Applications/Graphics\ Tools
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Applications/Java\ Tools
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Applications/Performance\ Tools
export SYSTEM_DEVELOPER_RELEASENOTES_DIR\=/Applications/Xcode-beta.app/Contents/Developer/ADC\ Reference\ Library/releasenotes
export SYSTEM_DEVELOPER_TOOLS\=/Applications/Xcode-beta.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR\=/Applications/Xcode-beta.app/Contents/Developer/ADC\ Reference\ Library/documentation/DeveloperTools
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR\=/Applications/Xcode-beta.app/Contents/Developer/ADC\ Reference\ Library/releasenotes/DeveloperTools
export SYSTEM_DEVELOPER_USR_DIR\=/Applications/Xcode-beta.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Applications/Utilities
export SYSTEM_DEXT_INSTALL_PATH\=/System/Library/DriverExtensions
export SYSTEM_DOCUMENTATION_DIR\=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH\=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR\=/System/Library
export TAPI_VERIFY_MODE\=ErrorsOnly
export TARGETED_DEVICE_FAMILY\=1,2
export TARGETNAME\=Runner
export TARGET_BUILD_DIR\=/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER\=dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder
export TARGET_NAME\=Runner
export TARGET_TEMP_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILES_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILE_DIR\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_ROOT\=/Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex
export TEST_FRAMEWORK_SEARCH_PATHS\=\ /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks\ /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk/Developer/Library/Frameworks
export TEST_LIBRARY_SEARCH_PATHS\=\ /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/lib
export TOOLCHAINS\=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR\=/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TRACK_WIDGET_CREATION\=true
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES\=NO
export TREE_SHAKE_ICONS\=false
export TeamIdentifierPrefix\=8NWAQRXJTF.
export UID\=501
export UNLOCALIZED_RESOURCES_FOLDER_PATH\=Runner.app
export UNSTRIPPED_PRODUCT\=NO
export USER\=devnico
export USER_APPS_DIR\=/Users/devnico/Applications
export USER_LIBRARY_DIR\=/Users/devnico/Library
export USE_DYNAMIC_NO_PIC\=YES
export USE_HEADERMAP\=YES
export USE_HEADER_SYMLINKS\=NO
export USE_LLVM_TARGET_TRIPLES\=YES
export USE_LLVM_TARGET_TRIPLES_FOR_CLANG\=YES
export USE_LLVM_TARGET_TRIPLES_FOR_LD\=YES
export USE_LLVM_TARGET_TRIPLES_FOR_TAPI\=YES
export VALIDATE_DEVELOPMENT_ASSET_PATHS\=YES_ERROR
export VALIDATE_PRODUCT\=NO
export VALIDATE_WORKSPACE\=YES_ERROR
export VALID_ARCHS\=arm64\ arm64e\ 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\=devnico
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-beta.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION\=12A8169g
export XCODE_VERSION_ACTUAL\=1200
export XCODE_VERSION_MAJOR\=1200
export XCODE_VERSION_MINOR\=1200
export XPCSERVICES_FOLDER_PATH\=Runner.app/XPCServices
export YACC\=yacc
export arch\=undefined_arch
export variant\=normal
/bin/sh -c /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh
♦ mkdir -p -- /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks
♦ rsync -av --delete /Users/devnico/code/tab_orientation_test/ios/Flutter/App.framework /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks
building file list ... done
deleting App.framework/_CodeSignature/CodeResources
deleting App.framework/_CodeSignature/
App.framework/
App.framework/App
App.framework/flutter_assets/AssetManifest.json
App.framework/flutter_assets/FontManifest.json
App.framework/flutter_assets/NOTICES
App.framework/flutter_assets/kernel_blob.bin
sent 29900176 bytes received 136 bytes 59800624.00 bytes/sec
total size is 34094087 speedup is 1.14
♦ rsync -av --delete --filter - .DS_Store/ --filter - Headers/ --filter - Modules/ /Users/devnico/code/tab_orientation_test/ios/Flutter/Flutter.framework /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/
building file list ... done
Flutter.framework/
Flutter.framework/Flutter
Flutter.framework/Info.plist
Flutter.framework/icudtl.dat
Flutter.framework/_CodeSignature/
Flutter.framework/_CodeSignature/CodeResources
sent 98810275 bytes received 120 bytes 65873596.67 bytes/sec
total size is 98797795 speedup is 1.00
♦ /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip /Users/devnico/code/tab_orientation_test/ios/Flutter/Flutter.framework/Flutter -r -o /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Flutter
♦ codesign --force --verbose --sign - -- /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/App
/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework/App: signed bundle with Mach-O universal (x86_64 arm64) [io.flutter.flutter.app]
♦ codesign --force --verbose --sign - -- /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Flutter
/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Flutter: replacing existing signature
/Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Flutter: signed bundle with Mach-O universal (armv7 x86_64 arm64) [io.flutter.flutter]
ProcessInfoPlistFile /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Info.plist /Users/devnico/code/tab_orientation_test/ios/Runner/Info.plist (in target 'Runner' from project 'Runner')
cd /Users/devnico/code/tab_orientation_test/ios
builtin-infoPlistUtility /Users/devnico/code/tab_orientation_test/ios/Runner/Info.plist -producttype com.apple.product-type.application -genpkginfo /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/PkgInfo -expandbuildsettings -format binary -platform iphonesimulator -additionalcontentfile /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/LaunchScreen-SBPartialInfo.plist -additionalcontentfile /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Base.lproj/Main-SBPartialInfo.plist -additionalcontentfile /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/assetcatalog_generated_info.plist -o /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Info.plist
CopySwiftLibs /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app (in target 'Runner' from project 'Runner')
cd /Users/devnico/code/tab_orientation_test/ios
export CODESIGN_ALLOCATE\=/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export DEVELOPER_DIR\=/Applications/Xcode-beta.app/Contents/Developer
export SDKROOT\=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk
builtin-swiftStdLibTool --copy --verbose --sign - --scan-executable /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Runner --scan-folder /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks --scan-folder /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/PlugIns --platform iphonesimulator --toolchain /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks --strip-bitcode --strip-bitcode-tool /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/SwiftStdLibToolInputDependencies.dep
libswiftObjectiveC.dylib is up to date at /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
libswiftCoreImage.dylib is up to date at /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
libswiftCore.dylib is up to date at /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
libswiftQuartzCore.dylib is up to date at /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
libswiftCoreFoundation.dylib is up to date at /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
libswiftUIKit.dylib is up to date at /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
libswiftCoreGraphics.dylib is up to date at /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
libswiftFoundation.dylib is up to date at /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
libswiftCoreMedia.dylib is up to date at /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
libswiftDarwin.dylib is up to date at /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
libswiftCoreAudio.dylib is up to date at /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
libswiftos.dylib is up to date at /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
libswiftDispatch.dylib is up to date at /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
libswiftMetal.dylib is up to date at /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
Codesigning /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
/usr/bin/codesign --force --sign - --verbose /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
Code signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib is unchanged; keeping original
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
Codesigning /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
/usr/bin/codesign --force --sign - --verbose /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
Codesigning /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
/usr/bin/codesign --force --sign - --verbose /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
Codesigning /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
Codesigning /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
/usr/bin/codesign --force --sign - --verbose /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
Codesigning /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
Codesigning /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
/usr/bin/codesign --force --sign - --verbose /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
/usr/bin/codesign --force --sign - --verbose /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
/usr/bin/codesign --force --sign - --verbose /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
Codesigning /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
/usr/bin/codesign --force --sign - --verbose /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
Codesigning /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
/usr/bin/codesign --force --sign - --verbose /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
Code signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib is unchanged; keeping original
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
Code signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib is unchanged; keeping original
Code signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib is unchanged; keeping original
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
Code signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib is unchanged; keeping original
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
Codesigning /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
/usr/bin/codesign --force --sign - --verbose /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
Codesigning /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
/usr/bin/codesign --force --sign - --verbose /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
Codesigning /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
/usr/bin/codesign --force --sign - --verbose /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
Codesigning /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
/usr/bin/codesign --force --sign - --verbose /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
Code signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib is unchanged; keeping original
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
Code signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib is unchanged; keeping original
Codesigning /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
/usr/bin/codesign --force --sign - --verbose /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
Code signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib is unchanged; keeping original
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
Code signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib is unchanged; keeping original
Code signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib is unchanged; keeping original
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
Code signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib is unchanged; keeping original
Code signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib is unchanged; keeping original
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
Code signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib is unchanged; keeping original
Probing signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
/usr/bin/codesign -r- --display /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
Code signature of /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib is unchanged; keeping original
CodeSign /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app (in target 'Runner' from project 'Runner')
cd /Users/devnico/code/tab_orientation_test/ios
export CODESIGN_ALLOCATE\=/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
Signing Identity: "-"
/usr/bin/codesign --force --sign - --entitlements /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent --timestamp\=none /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app
** BUILD SUCCEEDED **
[ +13 ms] └─Compiling, linking and signing... (completed in 6.8s)
[ ] Xcode build done. 22.7s
[ +1 ms] executing: [/Users/devnico/code/tab_orientation_test/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/devnico/code/tab_orientation_test/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/T/flutter_tools.gf8Hyh/flutter_build_log_pipe.8NhuPC/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO -showBuildSettings
[ ] executing: [/Users/devnico/code/tab_orientation_test/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/devnico/code/tab_orientation_test/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/T/flutter_tools.gf8Hyh/flutter_build_log_pipe.8NhuPC/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO -showBuildSettings
[+2617 ms] Command line invocation:
/Applications/Xcode-beta.app/Contents/Developer/usr/bin/xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/devnico/code/tab_orientation_test/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/T/flutter_tools.gf8Hyh/flutter_build_log_pipe.8NhuPC/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO -showBuildSettings
Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/devnico/code/tab_orientation_test/build/ios
COMPILER_INDEX_STORE_ENABLE = NO
FLUTTER_SUPPRESS_ANALYTICS = true
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/T/flutter_tools.gf8Hyh/flutter_build_log_pipe.8NhuPC/pipe_to_stdout
SDKROOT = iphonesimulator14.0
VERBOSE_SCRIPT_LOGGING = YES
Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = YES
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = devnico
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
APPLY_RULES_IN_COPY_HEADERS = NO
ARCHS = x86_64
ARCHS_STANDARD = arm64 i386 x86_64
ARCHS_STANDARD_32_64_BIT = arm64 i386 x86_64
ARCHS_STANDARD_32_BIT = i386
ARCHS_STANDARD_64_BIT = arm64 x86_64
ARCHS_STANDARD_INCLUDING_64_BIT = arm64 i386 x86_64
ARCHS_UNIVERSAL_IPHONE_OS = arm64 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/devnico/code/tab_orientation_test/build/ios
BUILD_LIBRARY_FOR_DISTRIBUTION = NO
BUILD_ROOT = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Products
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator
BUNDLE_CONTENTS_FOLDER_PATH_deep = Contents/
BUNDLE_EXECUTABLE_FOLDER_NAME_deep = MacOS
BUNDLE_FORMAT = shallow
BUNDLE_FRAMEWORKS_FOLDER_PATH = Frameworks
BUNDLE_PLUGINS_FOLDER_PATH = PlugIns
BUNDLE_PRIVATE_HEADERS_FOLDER_PATH = PrivateHeaders
BUNDLE_PUBLIC_HEADERS_FOLDER_PATH = Headers
CACHE_ROOT = /var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/C/com.apple.DeveloperTools/12.0-12A8169g/Xcode
CCHROOT = /var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/C/com.apple.DeveloperTools/12.0-12A8169g/Xcode
CHMOD = /bin/chmod
CHOWN = /usr/sbin/chown
CLANG_ANALYZER_NONNULL = YES
CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
CLANG_CXX_LIBRARY = libc++
CLANG_ENABLE_MODULES = YES
CLANG_ENABLE_OBJC_ARC = YES
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
CLANG_WARN_BOOL_CONVERSION = YES
CLANG_WARN_COMMA = YES
CLANG_WARN_CONSTANT_CONVERSION = YES
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
CLANG_WARN_EMPTY_BODY = YES
CLANG_WARN_ENUM_CONVERSION = YES
CLANG_WARN_INFINITE_RECURSION = YES
CLANG_WARN_INT_CONVERSION = YES
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
CLANG_WARN_STRICT_PROTOTYPES = YES
CLANG_WARN_SUSPICIOUS_MOVE = YES
CLANG_WARN_UNREACHABLE_CODE = YES
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
CLASS_FILE_DIR = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/devnico/code/tab_orientation_test/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 = NO
COMPOSITE_SDK_DIRS = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Debug
CONFIGURATION_BUILD_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator
CONFIGURATION_TEMP_DIR = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/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-beta.app/Contents/Developer/Platforms/iPhoneOS.platform
CORRESPONDING_DEVICE_PLATFORM_NAME = iphoneos
CORRESPONDING_DEVICE_SDK_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk
CORRESPONDING_DEVICE_SDK_NAME = iphoneos14.0
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = x86_64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DART_OBFUSCATION = false
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_DEXT_INSTALL_PATH = /System/Library/DriverExtensions
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = 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 = 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2 13.3 13.4 13.5 14.0
DERIVED_FILES_DIR = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode-beta.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode-beta.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = en
DOCUMENTATION_FOLDER_PATH = Runner.app/en.lproj/Documentation
DONT_GENERATE_INFOPLIST_FILE = NO
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode-beta.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/devnico/code/tab_orientation_test/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_HARDENED_RUNTIME = NO
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = YES
ENABLE_TESTING_SEARCH_PATHS = NO
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/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/devnico/code/tab_orientation_test
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_NAME = 1.0.0
FLUTTER_BUILD_NUMBER = 1
FLUTTER_FRAMEWORK_DIR = /Users/devnico/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/devnico/flutter
FLUTTER_SUPPRESS_ANALYTICS = true
FLUTTER_TARGET = /Users/devnico/code/tab_orientation_test/lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = /Users/devnico/code/tab_orientation_test/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 = 20
GROUP = staff
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/devnico
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/en.lproj/InfoPlist.strings
INLINE_PRIVATE_FRAMEWORKS = NO
INSTALLHDRS_COPY_PHASE = NO
INSTALLHDRS_SCRIPT_PHASE = NO
INSTALL_DIR = /tmp/Runner.dst/Applications
INSTALL_GROUP = staff
INSTALL_MODE_FLAG = u+w,go-w,a+rX
INSTALL_OWNER = devnico
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/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/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/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/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-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_DEXT_INSTALL_PATH = /Library/DriverExtensions
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/devnico/code/tab_orientation_test/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_x86_64 =
LINK_WITH_STANDARD_LIBRARIES = YES
LLVM_TARGET_TRIPLE_OS_VERSION = ios8.0
LLVM_TARGET_TRIPLE_SUFFIX = -simulator
LLVM_TARGET_TRIPLE_VENDOR = apple
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/en.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFCopyLocalizedString
LOCALIZED_STRING_SWIFTUI_SUPPORT = YES
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 20A5343i
MAC_OS_X_VERSION_ACTUAL = 110000
MAC_OS_X_VERSION_MAJOR = 110000
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/Runner.app
MODULES_FOLDER_PATH = Runner.app/Modules
MODULE_CACHE_DIR = /Users/devnico/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = YES
NATIVE_ARCH = x86_64
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/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
OBJROOT = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex
ONLY_ACTIVE_ARCH = YES
OS = MACOS
OSAC = /usr/bin/osacompile
OTHER_LDFLAGS = -framework Flutter
PACKAGE_CONFIG = .packages
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode-beta.app/Contents/Developer/usr/bin:/Users/devnico/.nvm/versions/node/v12.18.2/bin:/Users/devnico/Library/Android/sdk/emulator/:/Users/devnico/Library/Android/sdk/tools/bin/:/Users/devnico/Library/Android/sdk/tools/:/Users/devnico/Library/Android/sdk/platform-tools/:/Users/devnico/Library/Python/3.7/bin:/usr/local/opt/mysql@5.6/bin:/Users/devnico/.composer/vendor/bin:/usr/local/sbin:/Users/devnico/flutter/bin:/Users/devnico/.npm-global/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:~/.dotnet/tools:/Library/Apple/usr/bin:/usr/local/CrossPack-AVR/bin:/Users/devnico/.nvm/versions/node/v12.18.2/bin:/Users/devnico/Library/Android/sdk/emulator/:/Users/devnico/Library/Android/sdk/tools/bin/:/Users/devnico/Library/Android/sdk/tools/:/Users/devnico/Library/Android/sdk/platform-tools/:/Users/devnico/Library/Python/3.7/bin:/usr/local/opt/mysql@5.6/bin:/Users/devnico/.composer/vendor/bin:/usr/local/sbin:/Users/devnico/flutter/bin:/Users/devnico/.npm-global/bin:/Users/devnico/.pub-cache/bin:/Users/devnico/.fastlane/bin:/Users/devnico/.pub-cache/bin:/Users/devnico/.fastlane/bin
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode-beta.app/Contents/Developer/Headers /Applications/Xcode-beta.app/Contents/Developer/SDKs /Applications/Xcode-beta.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform
PLATFORM_DISPLAY_NAME = iOS Simulator
PLATFORM_NAME = iphonesimulator
PLATFORM_PREFERRED_ARCH = x86_64
PLATFORM_PRODUCT_BUILD_VERSION = 18A5332e
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/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.tabOrientationTest
PRODUCT_BUNDLE_PACKAGE_TYPE = APPL
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/devnico/code/tab_orientation_test/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/DerivedSources
PROJECT_DIR = /Users/devnico/code/tab_orientation_test/ios
PROJECT_FILE_PATH = /Users/devnico/code/tab_orientation_test/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build
PROJECT_TEMP_ROOT = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/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/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/pf/q0c09kj96pvb4cjkcl54why00000gn/T/flutter_tools.gf8Hyh/flutter_build_log_pipe.8NhuPC/pipe_to_stdout
SDKROOT = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk
SDK_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk
SDK_DIR_iphonesimulator14_0 = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk
SDK_NAME = iphonesimulator14.0
SDK_NAMES = iphonesimulator14.0
SDK_PRODUCT_BUILD_VERSION = 18A5332e
SDK_VERSION = 14.0
SDK_VERSION_ACTUAL = 140000
SDK_VERSION_MAJOR = 140000
SDK_VERSION_MINOR = 000
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/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/PrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/devnico/code/tab_orientation_test/ios
SRCROOT = /Users/devnico/code/tab_orientation_test/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_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
SWIFT_OPTIMIZATION_LEVEL = -Onone
SWIFT_PLATFORM_TARGET_PREFIX = ios
SWIFT_VERSION = 5.0
SYMROOT = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/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-beta.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode-beta.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode-beta.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Utilities
SYSTEM_DEXT_INSTALL_PATH = /System/Library/DriverExtensions
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = /Users/devnico/code/tab_orientation_test/build/ios/Debug-iphonesimulator
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_DIR = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_FILES_DIR = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_FILE_DIR = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_ROOT = /Users/devnico/Library/Developer/Xcode/DerivedData/Runner-hidncdzxdncpnyafumvvrwqibfbv/Build/Intermediates.noindex
TEST_FRAMEWORK_SEARCH_PATHS = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.0.sdk/Developer/Library/Frameworks
TEST_LIBRARY_SEARCH_PATHS = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/lib
TOOLCHAIN_DIR = /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TRACK_WIDGET_CREATION = true
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
TREE_SHAKE_ICONS = false
UID = 501
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = devnico
USER_APPS_DIR = /Users/devnico/Applications
USER_LIBRARY_DIR = /Users/devnico/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
USE_LLVM_TARGET_TRIPLES = YES
USE_LLVM_TARGET_TRIPLES_FOR_CLANG = YES
USE_LLVM_TARGET_TRIPLES_FOR_LD = YES
USE_LLVM_TARGET_TRIPLES_FOR_TAPI = YES
VALIDATE_PRODUCT = NO
VALIDATE_WORKSPACE = NO
VALID_ARCHS = arm64 arm64e i386 x86_64
VERBOSE_PBXCP = NO
VERBOSE_SCRIPT_LOGGING = YES
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = devnico
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-beta.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 12A8169g
XCODE_VERSION_ACTUAL = 1200
XCODE_VERSION_MAJOR = 1200
XCODE_VERSION_MINOR = 1200
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = x86_64
variant = normal
[ +418 ms] executing: /usr/bin/xcrun simctl install 99BEE55C-9EE1-4923-9C6A-36434C83F851 /Users/devnico/code/tab_orientation_test/build/ios/iphonesimulator/Runner.app
[+1924 ms] executing: /usr/bin/plutil -convert json -o - /Users/devnico/code/tab_orientation_test/build/ios/iphonesimulator/Runner.app/Info.plist
[ +15 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Users/devnico/code/tab_orientation_test/build/ios/iphonesimulator/Runner.app/Info.plist
[ ] {"CFBundleName":"tab_orientation_test","DTSDKName":"iphonesimulator14.0","DTXcode":"1200","CFBundleIcons~ipad":{"CFBundlePrimaryIcon":{"CFBundleIconFiles":["AppIcon20x20","AppIcon29x29","AppIcon40x40","AppIcon60x60","AppIcon76x76","AppIcon83.5x83.5"],"CFBundleIconName":"AppIcon"}},"UILaunchStoryboardName":"LaunchScreen","DTSDKBuild":"18A5332e","CFBundleDevelopmentRegion":"en","CFBundleVersion":"1","BuildMachineOSBuild":"20A5343i","DTPlatformName":"iphonesimulator","CFBundlePackageType":"APPL","CFBundleShortVersionString":"1.0.0","CFBundleSupportedPlatforms":["iPhoneSimulator"],"UIMainStoryboardFile":"Main","CFBundleInfoDictionaryVersion":"6.0","CFBundleExecutable":"Runner","DTCompiler":"com.apple.compilers.llvm.clang.1_0","UISupportedInterfaceOrientations~ipad":["UIInterfaceOrientationPortrait","UIInterfaceOrientationPortraitUpsideDown","UIInterfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRight"],"MinimumOSVersion":"8.0","CFBundleIdentifier":"com.example.tabOrientationTest","UIDeviceFamily":[1,2],"CFBundleSignature":"????","DTPlatformVersion":"14.0","CFBundleIcons":{"CFBundlePrimaryIcon":{"CFBundleIconFiles":["AppIcon20x20","AppIcon29x29","AppIcon40x40","AppIcon60x60"],"CFBundleIconName":"AppIcon"}},"DTXcodeBuild":"12A8169g","LSRequiresIPhoneOS":true,"UISupportedInterfaceOrientations":["UIInterfaceOrientationPortrait","UIInterfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRight"],"UIViewControllerBasedStatusBarAppearance":false,"DTPlatformBuild":"18A5332e"}
[ +1 ms] executing: /usr/bin/xcrun simctl launch 99BEE55C-9EE1-4923-9C6A-36434C83F851 com.example.tabOrientationTest --enable-dart-profiling --enable-checked-mode --verify-entry-points --observatory-port=0
[ +832 ms] com.example.tabOrientationTest: 47338
[ ] Waiting for observatory port to be available...
[+2235 ms] Observatory URL on device: http://127.0.0.1:65444/IR4hlGr-4dc=/
[ +8 ms] Caching compiled dill
[ +71 ms] Connecting to service protocol: http://127.0.0.1:65444/IR4hlGr-4dc=/
[ +171 ms] Successfully connected to service protocol: http://127.0.0.1:65444/IR4hlGr-4dc=/
[ ] Waiting for iPhone 11 Pro Max to report its views...
[ +5 ms] Waiting for iPhone 11 Pro Max to report its views... (completed in 4ms)
[ +9 ms] DevFS: Creating new filesystem on the device (null)
[ +16 ms] DevFS: Created new filesystem on the device (file:///Users/devnico/Library/Developer/CoreSimulator/Devices/99BEE55C-9EE1-4923-9C6A-36434C83F851/data/Containers/Data/Application/39BA1FB6-03CE-4D4D-A482-7DC14A574DD8/tmp/tab_orientation_testhnHYWL/tab_orientation_test/)
[ +1 ms] Updating assets
[ +208 ms] Syncing files to device iPhone 11 Pro Max...
[ +2 ms] Scanning asset files
[ +6 ms] <- reset
[ ] Compiling dart to kernel with 0 updated files
[ +2 ms] <- recompile package:tab_orientation_test/main.dart 953b11ef-e17b-45b2-98ca-22887bb361eb
[ ] <- 953b11ef-e17b-45b2-98ca-22887bb361eb
[ +99 ms] Updating files
[ +98 ms] DevFS: Sync finished
[ ] Syncing files to device iPhone 11 Pro Max... (completed in 210ms)
[ ] Synced 0.9MB.
[ +1 ms] <- accept
[ +2 ms] Connected to _flutterView/0x7ff12a01e020.
[ +3 ms] Flutter run key commands.
[ +3 ms] r Hot reload. 🔥🔥🔥
[ +1 ms] R Hot restart.
[ ] h Repeat this help message.
[ ] d Detach (terminate "flutter run" but leave application running).
[ ] c Clear the screen
[ ] q Quit (terminate the application on the device).
[ ] An Observatory debugger and profiler on iPhone 11 Pro Max is available at: http://127.0.0.1:65444/IR4hlGr-4dc=/
[+13405 ms] Application finished.
Analyzing tab_orientation_test...
No issues found! (ran in 2.1s)
[✓] Flutter (Channel stable, 1.20.0, on macOS 11.0 20A5343i, locale en-DE)
• Flutter version 1.20.0 at /Users/devnico/flutter
• Framework revision 840c9205b3 (12 days ago), 2020-08-04 20:55:12 -0700
• Engine revision c8e3b94853
• Dart version 2.9.0
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
• Android SDK at /Users/devnico/Library/Android/sdk
• Platform android-29, build-tools 29.0.2
• ANDROID_HOME = /Users/devnico/Library/Android/sdk
• ANDROID_SDK_ROOT = /Users/devnico/Library/Android/sdk
• Java binary at: /Users/devnico/Library/Application Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/193.6626763/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6222593)
• All Android licenses accepted.
[✓] Xcode - develop for iOS and macOS (Xcode 12.0)
• Xcode at /Applications/Xcode-beta.app/Contents/Developer
• Xcode 12.0, Build version 12A8169g
• CocoaPods version 1.9.3
[✓] Android Studio (version 4.0)
• Android Studio at /Users/devnico/Library/Application Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/193.6626763/Android Studio.app/Contents
• Flutter plugin version 45.1.1
• Dart plugin version 192.7761
• Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6222593)
[!] IntelliJ IDEA Ultimate Edition (version 2020.2)
• IntelliJ at /Users/devnico/Applications/JetBrains Toolbox/IntelliJ IDEA Ultimate.app
✗ Flutter plugin not installed; this adds Flutter specific functionality.
✗ Dart plugin not installed; this adds Dart specific functionality.
• For information about installing plugins, see
https://flutter.dev/intellij-setup/#installing-the-plugins
[✓] Connected device (1 available)
• iPhone 11 Pro Max (mobile) • 99BEE55C-9EE1-4923-9C6A-36434C83F851 • ios • com.apple.CoreSimulator.SimRuntime.iOS-14-0 (simulator)
! Doctor found issues in 1 category.
jona7o, allanwolski and parampal
Metadata
Metadata
Assignees
Labels
f: material designflutter/packages/flutter/material repository.flutter/packages/flutter/material repository.found in release: 1.20Found to occur in 1.20Found to occur in 1.20found in release: 1.21Found to occur in 1.21Found to occur in 1.21frameworkflutter/packages/flutter repository. See also f: labels.flutter/packages/flutter repository. See also f: labels.has reproducible stepsThe issue has been confirmed reproducible and is ready to work onThe issue has been confirmed reproducible and is ready to work on