flutter / flutter

Flutter makes it easy and fast to build beautiful apps for mobile and beyond
https://flutter.dev
BSD 3-Clause "New" or "Revised" License
165.32k stars 27.28k forks source link

Google Map on iOS not behaving as expected inside Singlechildscrollview #79887

Closed aasif1297 closed 3 years ago

aasif1297 commented 3 years ago

Steps to Reproduce

I am using google map plugin in my app inside single child scrollview along with some lists and other widgets. The problem is when I scroll down or up the google map widget sticks to the top or bottom on iOS and overlaps other widgets as seen below. I tried to go through the existing issues on github and stackoverflow but could not find any solution. If anyone have faced the same problem or have solution to this please help me.

The Issue -> https://gifyu.com/image/YVZx

Here is the code to reproduce the same issue.

static final CameraPosition _kGooglePlex = CameraPosition( target: LatLng(37.42796133580664, -122.085749655962), zoom: 14.4746, );

Scaffold( appBar: AppBar( title: Text('iOS Map'), ), body: SingleChildScrollView( child: Column( children: [ ListView.builder( itemCount: 20, shrinkWrap: true, physics: NeverScrollableScrollPhysics(), itemBuilder: (ctx, index) { return Padding( padding: const EdgeInsets.all(8.0), child: Card( child: Text('Test item $index'), ), ); }), SizedBox( height: 250, child: GoogleMap( mapType: MapType.hybrid, initialCameraPosition: _kGooglePlex, onMapCreated: (GoogleMapController controller) { _controller.complete(controller); }, ), ), ListView.builder( itemCount: 50, shrinkWrap: true, physics: NeverScrollableScrollPhysics(), itemBuilder: (ctx, index) { return Padding( padding: const EdgeInsets.all(8.0), child: Card( child: Text('Test item $index'), ), ); }), ], ), ), );

  1. Run flutter create bug.
  2. Update the files as follows: ...
  3. ...

Expected results: Map should scroll properly without sticking to top or bottom of screen.

Actual results: https://gifyu.com/image/YVZx

Logs [bug.zip](https://github.com/flutter/flutter/files/6267024/bug.zip) ``` Frameworks/libswiftFoundation.dylib /usr/bin/codesign -r- --display /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftCoreFoundation.dylib Code signature of /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftCoreMedia.dylib is unchanged; keeping original /usr/bin/codesign -r- --display /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftFoundation.dylib Codesigning /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftUIKit.dylib Codesigning /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftCoreAudio.dylib /usr/bin/codesign --force --sign - --verbose /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftUIKit.dylib Probing signature of /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftCore.dylib /usr/bin/codesign --force --sign - --verbose /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftCoreAudio.dylib /usr/bin/codesign -r- --display /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftCore.dylib Code signature of /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftCoreGraphics.dylib is unchanged; keeping original Code signature of /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftDispatch.dylib is unchanged; keeping original Codesigning /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftMetal.dylib /usr/bin/codesign --force --sign - --verbose /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftMetal.dylib Codesigning /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftCoreFoundation.dylib /usr/bin/codesign --force --sign - --verbose /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftCoreFoundation.dylib Codesigning /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftFoundation.dylib /usr/bin/codesign --force --sign - --verbose /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftFoundation.dylib Codesigning /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftCore.dylib /usr/bin/codesign --force --sign - --verbose /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftCore.dylib Probing signature of /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftUIKit.dylib Probing signature of /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftCoreAudio.dylib /usr/bin/codesign -r- --display /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftUIKit.dylib /usr/bin/codesign -r- --display /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftCoreAudio.dylib Probing signature of /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftMetal.dylib Probing signature of /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftCoreFoundation.dylib /usr/bin/codesign -r- --display /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftMetal.dylib /usr/bin/codesign -r- --display /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftCoreFoundation.dylib Code signature of /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftUIKit.dylib is unchanged; keeping original Code signature of /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftCoreAudio.dylib is unchanged; keeping original Code signature of /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftCoreFoundation.dylib is unchanged; keeping original Code signature of /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftMetal.dylib is unchanged; keeping original Probing signature of /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftFoundation.dylib /usr/bin/codesign -r- --display /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftFoundation.dylib Code signature of /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftFoundation.dylib is unchanged; keeping original Probing signature of /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftCore.dylib /usr/bin/codesign -r- --display /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftCore.dylib Code signature of /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app/ Frameworks/libswiftCore.dylib is unchanged; keeping original CodeSign /Users/iosdeveloperadmin/Desktop/ios\ map\ issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner.app (in target 'Runner' from project 'Runner') cd /Users/iosdeveloperadmin/Desktop/ios\ map\ issue/ios_map_issue/ios export CODESIGN_ALLOCATE\=/Applications/Xcode.app/Contents/Develop er/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_all ocate Signing Identity: "-" /usr/bin/codesign --force --sign - --entitlements /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/Runner.build/Debug-iphonesimulator/Runner.build/Runn er.app.xcent --timestamp\=none /Users/iosdeveloperadmin/Desktop/ios\ map\ issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner. app ** BUILD SUCCEEDED ** 2021-04-07 00:15:31.395 xcodebuild[98289:1592982] DVTAssertions: Warning in /Library/Caches/com.apple.xbs/Sources/DVTiOSFrameworks/DVTiOSFr ameworks-17705/DTDeviceKitBase/DTDKRemoteDeviceData.m:371 Details: (null) deviceType from d106c86a3f52dbde7ca54452e2267d3290c08f8c was NULL when -platform called. Object: Method: -platform Thread: {number = 3, name = (null)} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. [ +362 ms] └─Compiling, linking and signing... (completed in 4.9s) [ ] Xcode build done. 10.5s [ +1 ms] executing: [/Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/ios/] xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/1t/b5l_kdrd32d99byx0bsxb5jc0000gp/T/flutter_ tools.GE9dIC/flutter_build_log_pipe.y7Iddo/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO -showBuildSettings [ ] executing: [/Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/ios/] xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/1t/b5l_kdrd32d99byx0bsxb5jc0000gp/T/flutter_ tools.GE9dIC/flutter_build_log_pipe.y7Iddo/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO -showBuildSettings [+3233 ms] Command line invocation: /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebui ld -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner "BUILD_DIR=/Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios" -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/1t/b5l_kdrd32d99byx0 bsxb5jc0000gp/T/flutter_tools.GE9dIC/flutter_build_log_pipe .y7Iddo/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO -showBuildSettings Build settings from command line: ARCHS = x86_64 BUILD_DIR = /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios COMPILER_INDEX_STORE_ENABLE = NO FLUTTER_SUPPRESS_ANALYTICS = true SCRIPT_OUTPUT_STREAM_FILE = /var/folders/1t/b5l_kdrd32d99byx0bsxb5jc0000gp/T/flutter_to ols.GE9dIC/flutter_build_log_pipe.y7Iddo/pipe_to_stdout SDKROOT = iphonesimulator14.4 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 = iosdeveloperadmin 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 x86_64 i386 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 x86_64 i386 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/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios BUILD_LIBRARY_FOR_DISTRIBUTION = NO BUILD_ROOT = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Products BUILD_STYLE = BUILD_VARIANTS = normal BUILT_PRODUCTS_DIR = /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/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/1t/b5l_kdrd32d99byx0bsxb5jc0000gp/C/com.apple. DeveloperTools/12.4-12D4e/Xcode CCHROOT = /var/folders/1t/b5l_kdrd32d99byx0bsxb5jc0000gp/C/com.apple. DeveloperTools/12.4-12D4e/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_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 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/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/Runner.build/Debug-iphonesimulator/Runner.build/Java Classes CLEAN_PRECOMPS = YES CLONE_HEADERS = NO CODESIGNING_FOLDER_PATH = /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/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/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/CompositeSDKs COMPRESS_PNG_FILES = YES CONFIGURATION = Debug CONFIGURATION_BUILD_DIR = /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator CONFIGURATION_TEMP_DIR = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/Runner.build/Debug-iphonesimulator CONTENTS_FOLDER_PATH = Runner.app COPYING_PRESERVES_HFS_DATA = NO COPY_HEADERS_RUN_UNIFDEF = NO COPY_PHASE_STRIP = NO COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES CORRESPONDING_DEVICE_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhone OS.platform CORRESPONDING_DEVICE_PLATFORM_NAME = iphoneos CORRESPONDING_DEVICE_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhone OS.platform/Developer/SDKs/iPhoneOS14.4.sdk CORRESPONDING_DEVICE_SDK_NAME = iphoneos14.4 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.2 10.0 10.2 11.0 11.2 11.4 12.1 12.3 13.0 13.2 13.4 13.6 14.1 14.3 14.4 DERIVED_FILES_DIR = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/Runner.build/Debug-iphonesimulator/Runner.build/Deri vedSources DERIVED_FILE_DIR = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/Runner.build/Debug-iphonesimulator/Runner.build/Deri vedSources DERIVED_SOURCES_DIR = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/Runner.build/Debug-iphonesimulator/Runner.build/Deri vedSources DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Framewor ks DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Framewor ks DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX .platform/Developer/SDKs DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr DEVELOPMENT_LANGUAGE = en DEVELOPMENT_TEAM = 3FAK87HYG5 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.app/Contents/Developer/Toolchains/Xcode Default.xctoolchain DWARF_DSYM_FILE_NAME = Runner.app.dSYM DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO DWARF_DSYM_FOLDER_PATH = /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/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/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/Runner.build/Debug-iphonesimulator/Runner.build/Obje cts/LinkFileList FIXED_FILES_DIR = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/Runner.build/Debug-iphonesimulator/Runner.build/Fixe dFiles FLUTTER_APPLICATION_PATH = /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue FLUTTER_BUILD_DIR = build FLUTTER_BUILD_NAME = 1.0.0 FLUTTER_BUILD_NUMBER = 1 FLUTTER_ROOT = /Users/iosdeveloperadmin/Developer/flutter FLUTTER_SUPPRESS_ANALYTICS = true FLUTTER_TARGET = /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/lib/main.dart FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks FRAMEWORK_FLAG_PREFIX = -framework FRAMEWORK_SEARCH_PATHS = "/Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/google_ maps_flutter" "/Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/ios/Pods/GoogleMaps/Base/Frameworks" "/Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/ios/Pods/GoogleMaps/Maps/Frameworks" 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 COCOAPODS=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 GENERATED_MODULEMAP_DIR = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/GeneratedModuleMaps-iphonesimulator GENERATE_MASTER_OBJECT_FILE = NO GENERATE_PKGINFO_FILE = YES GENERATE_PROFILING_CODE = NO GENERATE_TEXT_BASED_STUBS = NO GID = 20 GROUP = staff HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES HEADERMAP_INCLUDES_PROJECT_HEADERS = YES HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES HEADERMAP_USES_VFS = NO HEADER_SEARCH_PATHS = "/Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/google_ maps_flutter/google_maps_flutter.framework/Headers" HIDE_BITCODE_SYMBOLS = YES HOME = /Users/iosdeveloperadmin 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 = iosdeveloperadmin INSTALL_PATH = /Applications INSTALL_ROOT = /tmp/Runner.dst IPHONEOS_DEPLOYMENT_TARGET = 9.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/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/Runner.build/Debug-iphonesimulator/Runner.build/Obje cts-normal/x86_64/Runner_dependency_info.dat LD_GENERATE_MAP_FILE = NO LD_MAP_FILE_PATH = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/Runner.build/Debug-iphonesimulator/Runner.build/Runn er-LinkMap-normal-x86_64.txt LD_NO_PIE = NO LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplug in/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 LINKER_DISPLAYS_MANGLED_NAMES = NO LINK_FILE_LIST_normal_x86_64 = LINK_WITH_STANDARD_LIBRARIES = YES LLVM_TARGET_TRIPLE_OS_VERSION = ios9.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 = 20D80 MAC_OS_X_VERSION_ACTUAL = 110202 MAC_OS_X_VERSION_MAJOR = 110000 MAC_OS_X_VERSION_MINOR = 110200 METAL_LIBRARY_FILE_BASE = default METAL_LIBRARY_OUTPUT_DIR = /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Runner. app MODULES_FOLDER_PATH = Runner.app/Modules MODULE_CACHE_DIR = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/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/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/Runner.build/Debug-iphonesimulator/Runner.build/Obje cts OBJECT_FILE_DIR_normal = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/Runner.build/Debug-iphonesimulator/Runner.build/Obje cts-normal OBJROOT = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex ONLY_ACTIVE_ARCH = YES OS = MACOS OSAC = /usr/bin/osacompile OTHER_LDFLAGS = -ObjC -l"c++" -l"z" -framework "Accelerate" -framework "CoreData" -framework "CoreGraphics" -framework "CoreImage" -framework "CoreLocation" -framework "CoreTelephony" -framework "CoreText" -framework "GLKit" -framework "GoogleMaps" -framework "GoogleMapsBase" -framework "GoogleMapsCore" -framework "ImageIO" -framework "Metal" -framework "OpenGLES" -framework "QuartzCore" -framework "SystemConfiguration" -framework "UIKit" -framework "google_maps_flutter" PACKAGE_CONFIG = /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/.dart_tool/package_config.json PACKAGE_TYPE = com.apple.package-type.wrapper.application PASCAL_STRINGS = YES PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/usr/loc al/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin :/Users/iosdeveloperadmin/Developer/flutter/bin:/Users/iosd eveloperadmin/.rvm/bin:/Users/iosdeveloperadmin/Developer/f lutter/bin PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist PFE_FILE_C_DIALECTS = objective-c PKGINFO_FILE_PATH = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgI nfo PKGINFO_PATH = Runner.app/PkgInfo PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhone Simulator.platform/Developer/Applications PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhone Simulator.platform/Developer/usr/bin PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplug in/Contents/SharedSupport/Developer/Library PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhone Simulator.platform/Developer/SDKs PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhone Simulator.platform/Developer/Tools PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhone Simulator.platform/Developer/usr PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhone Simulator.platform PLATFORM_DISPLAY_NAME = iOS Simulator PLATFORM_NAME = iphonesimulator PLATFORM_PREFERRED_ARCH = x86_64 PLATFORM_PRODUCT_BUILD_VERSION = 18D46 PLIST_FILE_OUTPUT_FORMAT = binary PLUGINS_FOLDER_PATH = Runner.app/PlugIns PODS_BUILD_DIR = /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios PODS_CONFIGURATION_BUILD_DIR = /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator PODS_PODFILE_DIR_PATH = /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/ios/. PODS_ROOT = /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/ios/Pods PODS_XCFRAMEWORKS_BUILD_DIR = /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/XCFrame workIntermediates PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES PRECOMP_DESTINATION_DIR = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/Runner.build/Debug-iphonesimulator/Runner.build/Pref ixHeaders PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders PRODUCT_BUNDLE_IDENTIFIER = com.exaflutter.iosMapIssue PRODUCT_BUNDLE_PACKAGE_TYPE = APPL PRODUCT_MODULE_NAME = Runner PRODUCT_NAME = Runner PRODUCT_SETTINGS_PATH = /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/ios/Runner/Info.plist PRODUCT_TYPE = com.apple.product-type.application PROFILING_CODE = NO PROJECT = Runner PROJECT_DERIVED_FILE_DIR = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/Runner.build/DerivedSources PROJECT_DIR = /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/ios PROJECT_FILE_PATH = /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/ios/Runner.xcodeproj PROJECT_NAME = Runner PROJECT_TEMP_DIR = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/Runner.build PROJECT_TEMP_ROOT = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex 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/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/Runner.build/Debug-iphonesimulator/Runner.build/Reso urceManagerResources REZ_OBJECTS_DIR = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/Runner.build/Debug-iphonesimulator/Runner.build/Reso urceManagerResources/Objects SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO SCRIPTS_FOLDER_PATH = Runner.app/Scripts SCRIPT_OUTPUT_STREAM_FILE = /var/folders/1t/b5l_kdrd32d99byx0bsxb5jc0000gp/T/flutter_to ols.GE9dIC/flutter_build_log_pipe.y7Iddo/pipe_to_stdout SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhone Simulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhone Simulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk SDK_DIR_iphonesimulator14_4 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhone Simulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk SDK_NAME = iphonesimulator14.4 SDK_NAMES = iphonesimulator14.4 SDK_PRODUCT_BUILD_VERSION = 18D46 SDK_VERSION = 14.4 SDK_VERSION_ACTUAL = 140400 SDK_VERSION_MAJOR = 140000 SDK_VERSION_MINOR = 140400 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/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator/Derived Sources SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks SHARED_PRECOMPS_DIR = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/PrecompiledHeaders SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport SKIP_INSTALL = NO SOURCE_ROOT = /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/ios SRCROOT = /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/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/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Products SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities SYSTEM_APPS_DIR = /Applications SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices SYSTEM_DEMOS_DIR = /Applications/Extras SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Uti lities/Built Examples SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Gra phics Tools SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Jav a Tools SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Per formance Tools SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Uti lities 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/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/Debug-iphonesimulator TARGET_NAME = Runner TARGET_TEMP_DIR = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/Runner.build/Debug-iphonesimulator/Runner.build TEMP_DIR = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/Runner.build/Debug-iphonesimulator/Runner.build TEMP_FILES_DIR = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/Runner.build/Debug-iphonesimulator/Runner.build TEMP_FILE_DIR = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex/Runner.build/Debug-iphonesimulator/Runner.build TEMP_ROOT = /Users/iosdeveloperadmin/Library/Developer/Xcode/DerivedDat a/Runner-dzpstyssadyuxbbqtgzrezbxnqig/Build/Intermediates.n oindex TEST_FRAMEWORK_SEARCH_PATHS = /Applications/Xcode.app/Contents/Developer/Platforms/iPhone Simulator.platform/Developer/Library/Frameworks /Applications/Xcode.app/Contents/Developer/Platforms/iPhone Simulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/D eveloper/Library/Frameworks TEST_LIBRARY_SEARCH_PATHS = /Applications/Xcode.app/Contents/Developer/Platforms/iPhone Simulator.platform/Developer/usr/lib TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/Xcode Default.xctoolchain TRACK_WIDGET_CREATION = true TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO TREE_SHAKE_ICONS = false UID = 502 UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app UNSTRIPPED_PRODUCT = NO USER = iosdeveloperadmin USER_APPS_DIR = /Users/iosdeveloperadmin/Applications USER_LIBRARY_DIR = /Users/iosdeveloperadmin/Library USE_DYNAMIC_NO_PIC = YES USE_HEADERMAP = YES USE_HEADER_SYMLINKS = NO USE_LLVM_TARGET_TRIPLES = YES USE_LLVM_TARGET_TRIPLES_FOR_CLANG = YES USE_LLVM_TARGET_TRIPLES_FOR_LD = YES USE_LLVM_TARGET_TRIPLES_FOR_TAPI = YES USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES VALIDATE_PRODUCT = 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 = iosdeveloperadmin VERSION_INFO_FILE = Runner_vers.c VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-1" WRAPPER_EXTENSION = app WRAPPER_NAME = Runner.app WRAPPER_SUFFIX = .app WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode XCODE_PRODUCT_BUILD_VERSION = 12D4e XCODE_VERSION_ACTUAL = 1240 XCODE_VERSION_MAJOR = 1200 XCODE_VERSION_MINOR = 1240 XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices YACC = yacc arch = x86_64 variant = normal 2021-04-07 00:15:43.202 xcodebuild[98484:1593857] DVTAssertions: Warning in /Library/Caches/com.apple.xbs/Sources/DVTiOSFrameworks/DVTiOSFr ameworks-17705/DTDeviceKitBase/DTDKRemoteDeviceData.m:371 Details: (null) deviceType from d106c86a3f52dbde7ca54452e2267d3290c08f8c was NULL when -platform called. Object: Method: -platform Thread: {number = 3, name = (null)} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. [ +509 ms] executing: xcrun simctl install 486253DA-28EA-4319-BF7D-370D7C3BB2D8 /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/iphonesimulator/Runner.app [ +798 ms] executing: /usr/bin/plutil -convert json -o - /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/iphonesimulator/Runner.app/Info.plist [ +16 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Users/iosdeveloperadmin/Desktop/ios map issue/ios_map_issue/build/ios/iphonesimulator/Runner.app/Info.plist [ ] {"CFBundleName":"ios_map_issue","DTSDKName":"iphonesimulator14.4","DTXcode":"1240", "CFBundleIcons~ipad":{"CFBundlePrimaryIcon":{"CFBundleIconFiles":["AppIcon20x20","A ppIcon29x29","AppIcon40x40","AppIcon60x60","AppIcon76x76","AppIcon83.5x83.5"],"CFBu ndleIconName":"AppIcon"}},"UILaunchStoryboardName":"LaunchScreen","DTSDKBuild":"18D 46","CFBundleDevelopmentRegion":"en","CFBundleVersion":"1","BuildMachineOSBuild":"2 0D80","DTPlatformName":"iphonesimulator","CFBundlePackageType":"APPL","CFBundleShor tVersionString":"1.0.0","CFBundleSupportedPlatforms":["iPhoneSimulator"],"UIMainSto ryboardFile":"Main","CFBundleInfoDictionaryVersion":"6.0","CFBundleExecutable":"Run ner","DTCompiler":"com.apple.compilers.llvm.clang.1_0","UISupportedInterfaceOrienta tions~ipad":["UIInterfaceOrientationPortrait","UIInterfaceOrientationPortraitUpside Down","UIInterfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRight"] ,"MinimumOSVersion":"9.0","CFBundleIdentifier":"com.exaflutter.iosMapIssue","UIDevi ceFamily":[1,2],"CFBundleSignature":"????","DTPlatformVersion":"14.4","CFBundleIcon s":{"CFBundlePrimaryIcon":{"CFBundleIconFiles":["AppIcon20x20","AppIcon29x29","AppI con40x40","AppIcon60x60"],"CFBundleIconName":"AppIcon"}},"DTXcodeBuild":"12D4e","LS RequiresIPhoneOS":true,"UISupportedInterfaceOrientations":["UIInterfaceOrientationP ortrait","UIInterfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRigh t"],"UIViewControllerBasedStatusBarAppearance":false,"DTPlatformBuild":"18D46"} [ +5 ms] executing: xcrun simctl launch 486253DA-28EA-4319-BF7D-370D7C3BB2D8 com.exaflutter.iosMapIssue --enable-dart-profiling --enable-checked-mode --verify-entry-points --observatory-port=0 [ +538 ms] com.exaflutter.iosMapIssue: 98524 [ +2 ms] Waiting for observatory port to be available... [ +472 ms] Observatory URL on device: http://127.0.0.1:52016/pNT6TI48Zcc=/ [ +4 ms] Caching compiled dill [ +129 ms] Connecting to service protocol: http://127.0.0.1:52016/pNT6TI48Zcc=/ [ +155 ms] Launching a Dart Developer Service (DDS) instance at http://127.0.0.1:0, connecting to VM service at http://127.0.0.1:52016/pNT6TI48Zcc=/. [ +147 ms] DDS is listening at http://127.0.0.1:52021/cU9qPrROgy8=/. [ +64 ms] Successfully connected to service protocol: http://127.0.0.1:52016/pNT6TI48Zcc=/ [+1320 ms] DevFS: Creating new filesystem on the device (null) [ +17 ms] DevFS: Created new filesystem on the device (file:///Users/iosdeveloperadmin/Library/Developer/CoreSimulator/Devices/486253DA-2 8EA-4319-BF7D-370D7C3BB2D8/data/Containers/Data/Application/4B4B7453-0CDD-47A0-99A5 -540A42BD174C/tmp/ios_map_issue9691wn/ios_map_issue/) [ +6 ms] Updating assets [ +129 ms] Syncing files to device iPhone 12 Pro Max... [ +2 ms] <- reset [ ] Compiling dart to kernel with 0 updated files [ +3 ms] <- recompile package:ios_map_issue/main.dart fe4b61e2-82cc-4cbb-9180-3d67f978ed5c [ ] <- fe4b61e2-82cc-4cbb-9180-3d67f978ed5c [ +3 ms] Google Maps SDK for iOS version: 3.9.0.0 [ ] New version of Google Maps SDK for iOS available: 4.2.0.0 [ +61 ms] Updating files. [ ] DevFS: Sync finished [ +1 ms] Syncing files to device iPhone 12 Pro Max... (completed in 72ms) [ ] Synced 0.0MB. [ ] <- accept [ +5 ms] Connected to _flutterView/0x7ffba1828c20. [ +2 ms] Flutter run key commands. [ +1 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 12 Pro Max is available at: http://127.0.0.1:52021/cU9qPrROgy8=/ [ ] Flutter DevTools, a Flutter debugger and profiler, on iPhone 12 Pro Max is available at: http://127.0.0.1:9102?uri=http%3A%2F%2F127.0.0.1%3A52021%2FcU9qPrROgy8%3D%2F [ ] Running with unsound null safety [ ] For more information see https://dart.dev/null-safety/unsound-null-safety ``` ``` Analyzing ios_map_issue... No issues found! (ran in 2.1s) ``` ``` [✓] Flutter (Channel stable, 2.0.0, on macOS 11.2.2 20D80 darwin-x64, locale en-PK) • Flutter version 2.0.0 at /Users/iosdeveloperadmin/Developer/flutter • Framework revision 60bd88df91 (5 weeks ago), 2021-03-03 09:13:17 -0800 • Engine revision 40441def69 • Dart version 2.12.0 [!] Android toolchain - develop for Android devices (Android SDK version 30.0.3) • Android SDK at /Users/iosdeveloperadmin/Library/Android/sdk • Platform android-30, build-tools 30.0.3 • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6915495) ! Some Android licenses not accepted. To resolve this, run: flutter doctor --android-licenses [✓] Xcode - develop for iOS and macOS • Xcode at /Applications/Xcode.app/Contents/Developer • Xcode 12.4, Build version 12D4e • CocoaPods version 1.10.1 [✓] Chrome - develop for the web • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome [✓] Android Studio (version 4.1) • Android Studio at /Applications/Android Studio.app/Contents • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6915495) [✓] VS Code (version 1.53.1) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 3.20.0 [✓] Connected device (3 available) • iPhone (mobile) • d106c86a3f52dbde7ca54452e2267d3290c08f8c • ios • iOS 14.4.2 • iPhone 12 Pro Max (mobile) • 486253DA-28EA-4319-BF7D-370D7C3BB2D8 • ios • com.apple.CoreSimulator.SimRuntime.iOS-14-4 (simulator) • Chrome (web) • chrome • web-javascript • Google Chrome 89.0.4389.114 ! Error: Arain’s is not connected. Xcode will continue when Arain’s is connected. (code -13) ! Doctor found issues in 1 category. ```
TahaTesser commented 3 years ago

Hi @aasif1297 I see there's an open issue addressing the case you described. Please follow up on that issue, Closing as duplicate of https://github.com/flutter/flutter/issues/76097 If you disagree, please write in the comments and I will reopen it. Thank you

github-actions[bot] commented 3 years ago

This thread has been automatically locked since there has not been any recent activity after it was closed. If you are still experiencing a similar issue, please open a new bug, including the output of flutter doctor -v and a minimal reproduction of the issue.