OneSignal / OneSignal-Flutter-SDK

OneSignal is a free push notification service for mobile apps. This plugin makes it easy to integrate your flutter app with OneSignal
https://www.onesignal.com
Other
615 stars 213 forks source link

Documentation needs updating on how to integrate OneSignal for iOS #36

Closed sjmcdowall closed 5 years ago

sjmcdowall commented 5 years ago

Description:

I spent 5 hours today tracking down why -- after following the instructions for installing OneSignal my flutter app wouldn't run anymore. Not a lot of fun.

The issue is that depending on whim or who knows -- Xcode saves the Runner -> project.pbxproj with all the bundle id's listed (one per scheme) in "random" (doubtful but still) order. This means that the new scheme/target for OneSignal -- PRODUCT_BUNDLE_IDENTIFIER = com.xxx.app.OneSignalNotificationServiceExtension;

Could be first -- and then flutter uses the FIRST BUNDLE_ID it finds if the Info.plist is set to $(PRODUCT_BUNDLE_ID). Which it is by default. Hence, when you run it "simctl launch" tries to launch the wrong bundle id.

The easiest solution - if not the cleanest -- is to set in the Info.plist

<key>CFBundleIdentifier</key>
<string>com.xxx.app</string>

Which takes precedence .. the other option is to handle arrange the project.pbxproj to make sure the real app is first - but I think opening Xcode again and saving could re-arrange it? Hard to tell ..

Environment

iOS

Steps to Reproduce Issue:

  1. See above

Anything else:

(crash stacktraces, as well as any other information here)

MadhuSudhanBhaskar commented 5 years ago

@sjmcdowall So do you mean this plugin does not work on IOS?

MadhuSudhanBhaskar commented 5 years ago

@sjmcdowall Error output from Xcode build: ↳ BUILD FAILED

Xcode's output: ↳ ld: warning: directory not found for option '-L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug -iphonesimulator/onesignal' ld: library not found for -lonesignal clang: error: linker command failed with exit code 1 (use -v to see invocation) This is the logs for me, even after hardcoding the CFBundleIdentifier

sjmcdowall commented 5 years ago

Once I get back to my computer I’ll compare output but my problem was Post pod - so this is a bit different

On Nov 21, 2018, at 1:03 PM, Madhu notifications@github.com wrote:

@sjmcdowall CocoaPods' output: ↳ Preparing

Analyzing dependencies

Inspecting targets to integrate Using ARCHS setting to build architectures of target Pods-Runner: () Using `ARCHS` setting to build architectures of target `Pods-OneSignalNotificationServiceExtension`: ()

Finding Podfile changes

  • Flutter
  • OneSignal
  • onesignal

Fetching external sources -> Fetching podspec for Flutter from .symlinks/flutter/ios -> Fetching podspec for onesignal from .symlinks/plugins/onesignal/ios

Resolving dependencies of Podfile [!] Unable to integrate the following embedded targets with their respective host targets (a host target is a "parent" target which embeds a "child" target like a framework or extension):

  • Runner (true) and OneSignalNotificationServiceExtension (false) do not both set use_frameworks!.

/usr/local/Cellar/cocoapods/1.5.3/libexec/gems/cocoapods-1.5.3/lib/cocoapods /installer/analyzer.rb:377:in analyze_host_targets_in_podfile' /usr/local/Cellar/cocoapods/1.5.3/libexec/gems/cocoapods-1.5.3/lib/cocoapods /installer/analyzer.rb:399:ingenerate_targets' /usr/local/Cellar/cocoapods/1.5.3/libexec/gems/cocoapods-1.5.3/lib/cocoapods /installer/analyzer.rb:91:in analyze' /usr/local/Cellar/cocoapods/1.5.3/libexec/gems/cocoapods-1.5.3/lib/cocoapods /installer.rb:243:inanalyze' /usr/local/Cellar/cocoapods/1.5.3/libexec/gems/cocoapods-1.5.3/lib/cocoapods /installer.rb:154:in block in resolve_dependencies' /usr/local/Cellar/cocoapods/1.5.3/libexec/gems/cocoapods-1.5.3/lib/cocoapods /user_interface.rb:64:insection' /usr/local/Cellar/cocoapods/1.5.3/libexec/gems/cocoapods-1.5.3/lib/cocoapods /installer.rb:153:in resolve_dependencies' /usr/local/Cellar/cocoapods/1.5.3/libexec/gems/cocoapods-1.5.3/lib/cocoapods /installer.rb:116:ininstall!' /usr/local/Cellar/cocoapods/1.5.3/libexec/gems/cocoapods-1.5.3/lib/cocoapods /command/install.rb:41:in run' /usr/local/Cellar/cocoapods/1.5.3/libexec/gems/claide-1.0.2/lib/claide/comma nd.rb:334:inrun' /usr/local/Cellar/cocoapods/1.5.3/libexec/gems/cocoapods-1.5.3/lib/cocoapods /command.rb:52:in run' /usr/local/Cellar/cocoapods/1.5.3/libexec/gems/cocoapods-1.5.3/bin/pod:55:in <top (required)>' /usr/local/Cellar/cocoapods/1.5.3/libexec/bin/pod:22:in load' /usr/local/Cellar/cocoapods/1.5.3/libexec/bin/pod:22:in

' Error output from CocoaPods: ↳

[!] Automatically assigning platform ios with version 8.0 on target Runner because no platform was specified. Please specify a platform for this target in your Podfile. See https://guides.cocoapods.org/syntax/podfile.html#platform.

[!] Automatically assigning platform ios with version 11.0 on target OneSignalNotificationServiceExtension because no platform was specified. Please specify a platform for this target in your Podfile. See https://guides.cocoapods.org/syntax/podfile.html#platform. Error running pod install Error launching application on iPhone XR.

This is the logs for me, even after hardcoding the CFBundleIdentifier

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or mute the thread.

MadhuSudhanBhaskar commented 5 years ago

@sjmcdowall I just updated my logs.

I just cloned this repo, updated the app id added some fire base ids for android. For iOS nothing, just the build itself is breaking.

sjmcdowall commented 5 years ago

I'd like to see all the -v output and your command line you are trying using to run it .. (I assume it's nothing more than flutter run -d xxxxxx but who knows)

So do a "flutter update" -- "flutter clean" -- then "flutter run -v -d xxxxx" ??

MadhuSudhanBhaskar commented 5 years ago

@sjmcdowall

[ +28 ms] executing: [/Users/madhubhaskar/Desktop/flutter/] git rev-parse --abbrev-ref --symbolic @{u} [ +37 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ ] origin/beta [ ] executing: [/Users/madhubhaskar/Desktop/flutter/] git rev-parse --abbrev-ref HEAD [ +10 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ ] beta [ ] executing: [/Users/madhubhaskar/Desktop/flutter/] git ls-remote --get-url origin [ +13 ms] Exit code 0 from: git ls-remote --get-url origin [ ] https://github.com/flutter/flutter.git [ ] executing: [/Users/madhubhaskar/Desktop/flutter/] git log -n 1 --pretty=format:%H [ +12 ms] Exit code 0 from: git log -n 1 --pretty=format:%H [ ] d8cbb80206db06d151206f8b599b7dde5a386a2d [ ] executing: [/Users/madhubhaskar/Desktop/flutter/] git log -n 1 --pretty=format:%ar [ +13 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar [ ] 4 weeks ago [ ] executing: [/Users/madhubhaskar/Desktop/flutter/] git describe --match v.. --first-parent --long --tags [ +14 ms] Exit code 0 from: git describe --match v.. --first-parent --long --tags [ +1 ms] v0.10.2-0-gd8cbb80206 [ +270 ms] executing: /Users/madhubhaskar/Library/Android/sdk/platform-tools/adb devices -l [ +9 ms] Exit code 0 from: /Users/madhubhaskar/Library/Android/sdk/platform-tools/adb devices -l [ ] List of devices attached [ +4 ms] executing: idevice_id -h [ +35 ms] /usr/bin/xcrun simctl list --json devices [ +218 ms] No devices found with name or id matching 'apple_ios_simulator' [ +11 ms] "flutter run" took 486ms.

0 throwToolExit (package:flutter_tools/src/base/common.dart:26:3)

1 RunCommand.validateCommand

(package:flutter_tools/src/commands/run.dart:248:7)

#2 FlutterCommand.verifyThenRunCommand (package:flutter_tools/src/runner/flutter_command.dart:361:11) #3 FlutterCommand.run. (package:flutter_tools/src/runner/flutter_command.dart:317:33) #4 AppContext.run. (package:flutter_tools/src/base/context.dart:142:29) #5 _rootRun (dart:async/zone.dart:1124:13) #6 _CustomZone.run (dart:async/zone.dart:1021:19) #7 _runZoned (dart:async/zone.dart:1516:10) #8 runZoned (dart:async/zone.dart:1463:12) #9 AppContext.run (package:flutter_tools/src/base/context.dart:141:18) #10 FlutterCommand.run (package:flutter_tools/src/runner/flutter_command.dart:308:20) #11 CommandRunner.runCommand (package:args/command_runner.dart:194:27) #12 FlutterCommandRunner.runCommand. (package:flutter_tools/src/runner/flutter_command_runner.dart:399:21) #13 AppContext.run. (package:flutter_tools/src/base/context.dart:142:29) #14 _rootRun (dart:async/zone.dart:1124:13) #15 _CustomZone.run (dart:async/zone.dart:1021:19) #16 _runZoned (dart:async/zone.dart:1516:10) #17 runZoned (dart:async/zone.dart:1463:12) #18 AppContext.run (package:flutter_tools/src/base/context.dart:141:18) #19 FlutterCommandRunner.runCommand (package:flutter_tools/src/runner/flutter_command_runner.dart:359:19) #20 CommandRunner.run. (package:args/command_runner.dart:109:29) #21 new Future.sync (dart:async/future.dart:224:31) #22 CommandRunner.run (package:args/command_runner.dart:109:11) #23 FlutterCommandRunner.run (package:flutter_tools/src/runner/flutter_command_runner.dart:241:18) #24 run. (package:flutter_tools/runner.dart:59:20) #25 AppContext.run. (package:flutter_tools/src/base/context.dart:142:29) #26 _rootRun (dart:async/zone.dart:1124:13) #27 _CustomZone.run (dart:async/zone.dart:1021:19) #28 _runZoned (dart:async/zone.dart:1516:10) #29 runZoned (dart:async/zone.dart:1463:12) #30 AppContext.run (package:flutter_tools/src/base/context.dart:141:18) #31 runInContext (package:flutter_tools/src/context_runner.dart:44:24) #32 run (package:flutter_tools/runner.dart:50:10) #33 main (package:flutter_tools/executable.dart:52:9) #34 main (file:///Users/madhubhaskar/Desktop/flutter/packages/flutter_tools/bin/flutter_t ools.dart:8:3) #35 _startIsolate. (dart:isolate/runtime/libisolate_patch.dart:287:32) #36 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:171:12) flutter run -v -d apple_ios_simulator
sjmcdowall commented 5 years ago

You need to give it a valid device -- do a "flutter devices" .. and choose the appropriate one and run it again ... (see the error message) ...

flutter devices  ✔  10564  15:56:41 3 connected devices:

Android SDK built for x86 • emulator-5554 • android-x86 • Android 9 (API 28) (emulator) SJM iPad Pro • 026945135686a30604aca9996a8fc8df3554b726 • ios • iOS 12.1 iPhone XR • 1512D415-59BA-46D4-AC9D-87F524230F72 • ios • iOS 12.1 (simulator)

So in my case I'd do a

flutter run -v -d 1512D415-59BA-46D4-AC9D-87F524230F72

MadhuSudhanBhaskar commented 5 years ago

flutter run -v -d D98FAF32-FB61-4F87-A7D7-5EF69C8368BC [ +25 ms] executing: [/Users/madhubhaskar/Desktop/flutter/] git rev-parse --abbrev-ref --symbolic @{u} [ +33 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ ] origin/beta [ ] executing: [/Users/madhubhaskar/Desktop/flutter/] git rev-parse --abbrev-ref HEAD [ +10 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ ] beta [ ] executing: [/Users/madhubhaskar/Desktop/flutter/] git ls-remote --get-url origin [ +10 ms] Exit code 0 from: git ls-remote --get-url origin [ ] https://github.com/flutter/flutter.git [ ] executing: [/Users/madhubhaskar/Desktop/flutter/] git log -n 1 --pretty=format:%H [ +12 ms] Exit code 0 from: git log -n 1 --pretty=format:%H [ ] d8cbb80206db06d151206f8b599b7dde5a386a2d [ ] executing: [/Users/madhubhaskar/Desktop/flutter/] git log -n 1 --pretty=format:%ar [ +13 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar [ ] 4 weeks ago [ +1 ms] executing: [/Users/madhubhaskar/Desktop/flutter/] git describe --match v.. --first-parent --long --tags [ +18 ms] Exit code 0 from: git describe --match v.. --first-parent --long --tags [ ] v0.10.2-0-gd8cbb80206 [ +287 ms] executing: /Users/madhubhaskar/Library/Android/sdk/platform-tools/adb devices -l [ +8 ms] Exit code 0 from: /Users/madhubhaskar/Library/Android/sdk/platform-tools/adb devices -l [ ] List of devices attached [ +4 ms] executing: idevice_id -h [ +34 ms] /usr/bin/xcrun simctl list --json devices [ +354 ms] Found plugin onesignal at /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ [ +67 ms] Found plugin onesignal at /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ [ +704 ms] Launching lib/main.dart on iPhone XR in debug mode... [ +10 ms] executing: /usr/bin/defaults read /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner/Info CFBundleIdentifier [ +36 ms] Exit code 0 from: /usr/bin/defaults read /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner/Info CFBundleIdentifier [ ] $(PRODUCT_BUNDLE_IDENTIFIER) [ +14 ms] Building Runner.app for D98FAF32-FB61-4F87-A7D7-5EF69C8368BC. [ +9 ms] executing: script /dev/null /usr/bin/log stream --style syslog --predicate processImagePath CONTAINS "D98FAF32-FB61-4F87-A7D7-5EF69C8368BC" [ +35 ms] [DEVICE LOG] Filtering the log data using "processImagePath CONTAINS "D98FAF32-FB61-4F87-A7D7-5EF69C8368BC"" [ +160 ms] Skipping kernel compilation. Fingerprint match. [ +238 ms] Building bundle [ ] Writing asset files to build/flutter_assets [ +62 ms] Wrote build/flutter_assets [ +8 ms] Using legacy Xcode build system. [ +17 ms] executing: [/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/] /usr/bin/xcodebuild -list [+1113 ms] Exit code 0 from: /usr/bin/xcodebuild -list [ ] Information about project "Runner": Targets: Runner OneSignalNotificationServiceExtension

           Build Configurations:
               Debug
               Release

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

           Schemes:
               OneSignalNotificationServiceExtension
               Runner

[ +2 ms] Trying to resolve native pub services. [ +1 ms] Looking for YAML at 'pubspec.yaml' [ ] No services specified in the manifest [ ] Found 0 service definition(s). [ ] Copying service frameworks to '/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Frameworks'. [ ] Creating service definitions manifest at '/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/ServiceDefinitions.json' [ +25 ms] Found plugin onesignal at /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ [ +12 ms] executing: [/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner.xcodeproj -target Runner -showBuildSettings [+1315 ms] Exit code 0 from: /usr/bin/xcodebuild -project /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner.xcodeproj -target 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 = madhubhaskar ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO ALWAYS_SEARCH_USER_PATHS = NO ALWAYS_USE_SEPARATE_HEADERMAPS = NO APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer APPLE_INTERNAL_DIR = /AppleInternal APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools APPLICATION_EXTENSION_API_ONLY = NO APPLY_RULES_IN_COPY_FILES = NO ARCHS = 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/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios BUILD_ROOT = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios BUILD_STYLE = BUILD_VARIANTS = normal BUILT_PRODUCTS_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Release-iphoneos CACHE_ROOT = /var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/C/com.apple.DeveloperTools/10.1-10B61/Xcode CCHROOT = /var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/C/com.apple.DeveloperTools/10.1-10B61/Xcode CHMOD = /bin/chmod CHOWN = /usr/sbin/chown CLANG_ANALYZER_NONNULL = YES CLANG_CXX_LANGUAGE_STANDARD = gnu++0x CLANG_CXX_LIBRARY = libc++ CLANG_ENABLE_MODULES = YES CLANG_ENABLE_OBJC_ARC = YES CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES CLANG_WARN_BOOL_CONVERSION = YES CLANG_WARN_COMMA = YES CLANG_WARN_CONSTANT_CONVERSION = YES CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR CLANG_WARN_EMPTY_BODY = YES CLANG_WARN_ENUM_CONVERSION = YES CLANG_WARN_INFINITE_RECURSION = YES CLANG_WARN_INT_CONVERSION = YES CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES CLANG_WARN_OBJC_LITERAL_CONVERSION = YES CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR CLANG_WARN_RANGE_LOOP_ANALYSIS = YES CLANG_WARN_STRICT_PROTOTYPES = YES CLANG_WARN_SUSPICIOUS_MOVE = YES CLANG_WARN_UNREACHABLE_CODE = YES CLANG_WARN__DUPLICATE_METHOD_MATCH = YES CLASS_FILE_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses CLEAN_PRECOMPS = YES CLONE_HEADERS = NO CODESIGNING_FOLDER_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Release-iphoneos/Runner.app CODE_SIGNING_ALLOWED = YES CODE_SIGNING_REQUIRED = YES CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements CODE_SIGN_IDENTITY = iPhone Developer CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES CODE_SIGN_STYLE = Manual COLOR_DIAGNOSTICS = NO COMBINE_HIDPI_IMAGES = NO COMPILER_INDEX_STORE_ENABLE = Default COMPOSITE_SDK_DIRS = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/CompositeSDKs COMPRESS_PNG_FILES = YES CONFIGURATION = Release CONFIGURATION_BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Release-iphoneos CONFIGURATION_TEMP_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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.app/Contents/Developer/Platforms/iPhoneSimulator.platform CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator12.1 CP = /bin/cp CREATE_INFOPLIST_SECTION_IN_BINARY = NO CURRENT_ARCH = arm64 CURRENT_PROJECT_VERSION = 1 CURRENT_VARIANT = normal DEAD_CODE_STRIPPING = YES DEBUGGING_SYMBOLS = YES DEBUG_INFORMATION_FORMAT = dwarf-with-dsym DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0 DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions DEFINES_MODULE = NO DEPLOYMENT_LOCATION = NO DEPLOYMENT_POSTPROCESSING = NO DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_CLANG_FLAG_NAME = 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 = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 DERIVED_FILES_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources DERIVED_FILE_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources DERIVED_SOURCES_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr DEVELOPMENT_LANGUAGE = English DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation DO_HEADER_SCANNING_IN_JAM = NO DSTROOT = /tmp/Runner.dst DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain DWARF_DSYM_FILE_NAME = Runner.app.dSYM DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO DWARF_DSYM_FOLDER_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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_HEADER_DEPENDENCIES = YES ENABLE_NS_ASSERTIONS = NO ENABLE_ON_DEMAND_RESOURCES = YES ENABLE_STRICT_OBJC_MSGSEND = YES ENABLE_TESTABILITY = 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/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList FIXED_FILES_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles FLUTTER_APPLICATION_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example FLUTTER_BUILD_DIR = build FLUTTER_BUILD_MODE = debug FLUTTER_FRAMEWORK_DIR = /Users/madhubhaskar/Desktop/flutter/bin/cache/artifacts/engine/ios FLUTTER_ROOT = /Users/madhubhaskar/Desktop/flutter FLUTTER_TARGET = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/lib/main.dart FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks FRAMEWORK_FLAG_PREFIX = -framework FRAMEWORK_SEARCH_PATHS = "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework" 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_PREPROCESSOR_DEFINITIONS = COCOAPODS=1 COCOAPODS=1 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 HEADER_SEARCH_PATHS = "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal" HIDE_BITCODE_SYMBOLS = YES HOME = /Users/madhubhaskar ICONV = /usr/bin/iconv INFOPLIST_EXPAND_BUILD_SETTINGS = YES INFOPLIST_FILE = Runner/Info.plist INFOPLIST_OUTPUT_FORMAT = binary INFOPLIST_PATH = Runner.app/Info.plist INFOPLIST_PREPROCESS = NO INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings INLINE_PRIVATE_FRAMEWORKS = NO INSTALLHDRS_COPY_PHASE = NO INSTALLHDRS_SCRIPT_PHASE = NO INSTALL_DIR = /tmp/Runner.dst/Applications INSTALL_GROUP = staff INSTALL_MODE_FLAG = u+w,go-w,a+rX INSTALL_OWNER = madhubhaskar 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/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer LEX = lex LIBRARY_FLAG_NOSPACE = YES LIBRARY_FLAG_PREFIX = -l LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions LIBRARY_SEARCH_PATHS = "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Release-iphoneos/onesignal" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Release-iphoneos/onesignal" LINKER_DISPLAYS_MANGLED_NAMES = NO LINK_FILE_LIST_normal_arm64 = LINK_FILE_LIST_normal_armv7 = LINK_WITH_STANDARD_LIBRARIES = YES LOCALIZABLE_CONTENT_DIR = LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString LOCAL_ADMIN_APPS_DIR = /Applications/Utilities LOCAL_APPS_DIR = /Applications LOCAL_DEVELOPER_DIR = /Library/Developer LOCAL_LIBRARY_DIR = /Library LOCROOT = LOCSYMROOT = MACH_O_TYPE = mh_execute MAC_OS_X_PRODUCT_BUILD_VERSION = 18A391 MAC_OS_X_VERSION_ACTUAL = 101400 MAC_OS_X_VERSION_MAJOR = 101400 MAC_OS_X_VERSION_MINOR = 1400 METAL_LIBRARY_FILE_BASE = default METAL_LIBRARY_OUTPUT_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Release-iphoneos/Runner.app MODULE_CACHE_DIR = /Users/madhubhaskar/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/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects OBJECT_FILE_DIR_normal = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal OBJROOT = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios ONLY_ACTIVE_ARCH = NO OS = MACOS OSAC = /usr/bin/osacompile OTHER_CFLAGS = -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal" OTHER_CPLUSPLUSFLAGS = -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal" OTHER_LDFLAGS = -ObjC -l"onesignal" -framework "Flutter" -framework "OneSignal" -framework "SystemConfiguration" -framework "UIKit" -framework "UserNotifications" -ObjC -l"onesignal" -framework "Flutter" -framework "OneSignal" -framework "SystemConfiguration" -framework "UIKit" -framework "UserNotifications" PACKAGE_TYPE = com.apple.package-type.wrapper.application PASCAL_STRINGS = YES PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madhubhaskar/Desktop/flutter/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/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo PKGINFO_PATH = Runner.app/PkgInfo PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform PLATFORM_DISPLAY_NAME = iOS PLATFORM_NAME = iphoneos PLATFORM_PREFERRED_ARCH = arm64 PLATFORM_PRODUCT_BUILD_VERSION = 16B91 PLIST_FILE_OUTPUT_FORMAT = binary PLUGINS_FOLDER_PATH = Runner.app/PlugIns PODS_BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios PODS_CONFIGURATION_BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Release-iphoneos PODS_PODFILE_DIR_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/. PODS_ROOT = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES PRECOMP_DESTINATION_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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.testapp.brad PRODUCT_MODULE_NAME = Runner PRODUCT_NAME = Runner PRODUCT_SETTINGS_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner/Info.plist PRODUCT_TYPE = com.apple.product-type.application PROFILING_CODE = NO PROJECT = Runner PROJECT_DERIVED_FILE_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/DerivedSources PROJECT_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios PROJECT_FILE_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner.xcodeproj PROJECT_NAME = Runner PROJECT_TEMP_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build PROJECT_TEMP_ROOT = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources REZ_OBJECTS_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.1.sdk SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.1.sdk SDK_DIR_iphoneos12_1 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.1.sdk SDK_NAME = iphoneos12.1 SDK_NAMES = iphoneos12.1 SDK_PRODUCT_BUILD_VERSION = 16B91 SDK_VERSION = 12.1 SDK_VERSION_ACTUAL = 120100 SDK_VERSION_MAJOR = 120000 SDK_VERSION_MINOR = 100 SED = /usr/bin/sed SEPARATE_STRIP = NO SEPARATE_SYMBOL_EDIT = NO SET_DIR_MODE_OWNER_GROUP = YES SET_FILE_MODE_OWNER_GROUP = NO SHALLOW_BUNDLE = YES SHARED_DERIVED_FILE_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Release-iphoneos/DerivedSources SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks SHARED_PRECOMPS_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/SharedPrecompiledHeaders SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport SKIP_INSTALL = NO SOURCE_ROOT = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios SRCROOT = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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 = iphonesimulator iphoneos SUPPORTS_TEXT_BASED_API = NO SWIFT_PLATFORM_TARGET_PREFIX = ios SYMROOT = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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.app/Contents/Developer/Applications SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities SYSTEM_DOCUMENTATION_DIR = /Library/Documentation SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions SYSTEM_LIBRARY_DIR = /System/Library TAPI_VERIFY_MODE = ErrorsOnly TARGETED_DEVICE_FAMILY = 1,2 TARGETNAME = Runner TARGET_BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Release-iphoneos TARGET_NAME = Runner TARGET_TEMP_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_FILES_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_FILE_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_ROOT = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO UID = 501 UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app UNSTRIPPED_PRODUCT = NO USER = madhubhaskar USER_APPS_DIR = /Users/madhubhaskar/Applications USER_LIBRARY_DIR = /Users/madhubhaskar/Library USE_DYNAMIC_NO_PIC = YES USE_HEADERMAP = YES USE_HEADER_SYMLINKS = NO VALIDATE_PRODUCT = YES VALID_ARCHS = arm64 arm64e armv7 armv7s VERBOSE_PBXCP = NO VERSIONING_SYSTEM = apple-generic VERSIONPLIST_PATH = Runner.app/version.plist VERSION_INFO_BUILDER = madhubhaskar VERSION_INFO_FILE = Runner_vers.c VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-1" WRAPPER_EXTENSION = app WRAPPER_NAME = Runner.app WRAPPER_SUFFIX = .app WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode XCODE_PRODUCT_BUILD_VERSION = 10B61 XCODE_VERSION_ACTUAL = 1010 XCODE_VERSION_MAJOR = 1000 XCODE_VERSION_MINOR = 1010 XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices YACC = yacc arch = arm64 variant = normal [ +20 ms] executing: pod --version [ +417 ms] 1.5.3 [ +5 ms] executing: mkfifo /var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/T/flutter_build_log_pipe.umGpzi/pipe_to_stdout [ +5 ms] Exit code 0 from: mkfifo /var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/T/flutter_build_log_pipe.umGpzi/pipe_to_stdout [ +2 ms] Starting Xcode build... [ ] executing: [/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/T/flutter_build_log_pipe.umGpzi/pipe_to_stdout [+1195 ms] Build settings from command line: ARCHS = x86_64 BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios SCRIPT_OUTPUT_STREAM_FILE = /var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/T/flutter_build_log_pipe.umGpzi/pipe_to_stdout SDKROOT = iphonesimulator12.1 VERBOSE_SCRIPT_LOGGING = YES

                Prepare build
                note: Using legacy build system

                === BUILD TARGET Pods-OneSignalNotificationServiceExtension OF PROJECT Pods WITH CONFIGURATION Debug ===

                Check dependencies

                === BUILD TARGET onesignal OF PROJECT Pods WITH CONFIGURATION Debug ===
                Check dependencies

                CompileC
                /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalCategories.o
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods
                    export LANG=en_US.US-ASCII
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11
                    -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600
                    -fbuild-session-file=/Users/madhubhaskar/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 -Wdocumentation -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 -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0
                    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations
                    -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version=2
                    -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-generated-files.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-own-target-headers.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-all-target-headers.hmap -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-project-headers.hmap
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private/onesignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources/x86_64
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -include /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\
                    Files/onesignal/onesignal-prefix.pch -MMD -MT dependencies -MF
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalCategories.d
                    --serialize-diagnostics
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalCategories.dia
                    -c /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.m -o
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalCategories.o

                CompileC /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/onesignal-dummy.o
                Target\ Support\ Files/onesignal/onesignal-dummy.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods
                    export LANG=en_US.US-ASCII
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11
                    -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600
                    -fbuild-session-file=/Users/madhubhaskar/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 -Wdocumentation -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 -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0
                    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations
                    -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version=2
                    -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-generated-files.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-own-target-headers.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-all-target-headers.hmap -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-project-headers.hmap
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private/onesignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources/x86_64
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -include /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\
                    Files/onesignal/onesignal-prefix.pch -MMD -MT dependencies -MF
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/onesignal-dummy.d
                    --serialize-diagnostics
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/onesignal-dummy.dia -c
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\ Files/onesignal/onesignal-dummy.m -o
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/onesignal-dummy.o

                CompileC
                /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalTagsController.o
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalTagsController.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods
                    export LANG=en_US.US-ASCII
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11
                    -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600
                    -fbuild-session-file=/Users/madhubhaskar/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 -Wdocumentation -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 -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0
                    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations
                    -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version=2
                    -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-generated-files.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-own-target-headers.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-all-target-headers.hmap -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-project-headers.hmap
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private/onesignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources/x86_64
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -include /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\
                    Files/onesignal/onesignal-prefix.pch -MMD -MT dependencies -MF
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalTagsController
                    .d --serialize-diagnostics
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalTagsController
                    .dia -c /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalTagsController.m -o
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalTagsController
                    .o

                CompileC /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalPlugin.o
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods
                    export LANG=en_US.US-ASCII
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11
                    -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600
                    -fbuild-session-file=/Users/madhubhaskar/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 -Wdocumentation -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 -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0
                    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations
                    -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version=2
                    -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-generated-files.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-own-target-headers.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-all-target-headers.hmap -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-project-headers.hmap
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private/onesignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources/x86_64
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -include /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\
                    Files/onesignal/onesignal-prefix.pch -MMD -MT dependencies -MF
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalPlugin.d
                    --serialize-diagnostics
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalPlugin.dia -c
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.m -o
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalPlugin.o

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

                Check dependencies

                PhaseScriptExecution [CP]\ Check\ Pods\ Manifest.lock
                /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/Script-BD6078845B63
                427256C7AAD2.sh
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
                    /bin/sh -c
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/Script-BD607884
                    5B63427256C7AAD2.sh

                Ld /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex/OneSignalNotificationServiceExtension normal x86_64
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
                    export IPHONEOS_DEPLOYMENT_TARGET=11.0
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot
                    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
                    -L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -filelist
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/Objects-normal/
                    x86_64/OneSignalNotificationServiceExtension.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @executable_path/Frameworks
                    -Xlinker -rpath -Xlinker @executable_path/../../Frameworks -mios-simulator-version-min=11.0 -dead_strip -Xlinker -object_path_lto -Xlinker
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/Objects-normal/
                    x86_64/OneSignalNotificationServiceExtension_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -fapplication-extension -ObjC -lonesignal
                    -framework Flutter -framework OneSignal -framework SystemConfiguration -framework UIKit -framework UserNotifications -ObjC -framework OneSignal -framework SystemConfiguration -framework UIKit -framework
                    UserNotifications -e _NSExtensionMain -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/OneSignalNotifi
                    cationServiceExtension.appex-Simulated.xcent -framework UserNotifications -framework UIKit -framework SystemConfiguration -lPods-OneSignalNotificationServiceExtension -Xlinker -dependency_info -Xlinker
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/Objects-normal/
                    x86_64/OneSignalNotificationServiceExtension_dependency_info.dat -o
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex/OneSignalNotificationServiceExtension
                ld: warning: directory not found for option '-L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal'
                ld: library not found for -lonesignal
                clang: error: linker command failed with exit code 1 (use -v to see invocation)

                ** BUILD FAILED **

                The following build commands failed:
                    Ld /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex/OneSignalNotificationServiceExtension normal x86_64
                (1 failure)

[ +18 ms] Starting Xcode build... (completed) [ +8 ms] Xcode build done. 1.2s [ ] executing: [/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/T/flutter_build_log_pipe.umGpzi/pipe_to_stdout -showBuildSettings [+1037 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/T/flutter_build_log_pipe.umGpzi/pipe_to_stdout -showBuildSettings [ ] Build settings from command line: ARCHS = x86_64 BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios SCRIPT_OUTPUT_STREAM_FILE = /var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/T/flutter_build_log_pipe.umGpzi/pipe_to_stdout SDKROOT = iphonesimulator12.1 VERBOSE_SCRIPT_LOGGING = YES

       Build settings for action build and target Runner:
           ACTION = build
           AD_HOC_CODE_SIGNING_ALLOWED = YES
           ALTERNATE_GROUP = staff
           ALTERNATE_MODE = u+w,go-w,a+rX
           ALTERNATE_OWNER = madhubhaskar
           ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
           ALWAYS_SEARCH_USER_PATHS = NO
           ALWAYS_USE_SEPARATE_HEADERMAPS = NO
           APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
           APPLE_INTERNAL_DIR = /AppleInternal
           APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
           APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
           APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
           APPLICATION_EXTENSION_API_ONLY = NO
           APPLY_RULES_IN_COPY_FILES = NO
           ARCHS = x86_64
           ARCHS_STANDARD = i386 x86_64
           ARCHS_STANDARD_32_64_BIT = i386 x86_64
           ARCHS_STANDARD_32_BIT = i386
           ARCHS_STANDARD_64_BIT = x86_64
           ARCHS_STANDARD_INCLUDING_64_BIT = i386 x86_64
           ARCHS_UNIVERSAL_IPHONE_OS = i386 x86_64
           ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
           AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
           BITCODE_GENERATION_MODE = marker
           BUILD_ACTIVE_RESOURCES_ONLY = NO
           BUILD_COMPONENTS = headers build
           BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios
           BUILD_ROOT = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Products
           BUILD_STYLE = 
           BUILD_VARIANTS = normal
           BUILT_PRODUCTS_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
           CACHE_ROOT = /var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/C/com.apple.DeveloperTools/10.1-10B61/Xcode
           CCHROOT = /var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/C/com.apple.DeveloperTools/10.1-10B61/Xcode
           CHMOD = /bin/chmod
           CHOWN = /usr/sbin/chown
           CLANG_ANALYZER_NONNULL = YES
           CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
           CLANG_CXX_LIBRARY = libc++
           CLANG_ENABLE_MODULES = YES
           CLANG_ENABLE_OBJC_ARC = YES
           CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
           CLANG_WARN_BOOL_CONVERSION = YES
           CLANG_WARN_COMMA = YES
           CLANG_WARN_CONSTANT_CONVERSION = YES
           CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
           CLANG_WARN_EMPTY_BODY = YES
           CLANG_WARN_ENUM_CONVERSION = YES
           CLANG_WARN_INFINITE_RECURSION = YES
           CLANG_WARN_INT_CONVERSION = YES
           CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
           CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
           CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
           CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
           CLANG_WARN_STRICT_PROTOTYPES = YES
           CLANG_WARN_SUSPICIOUS_MOVE = YES
           CLANG_WARN_UNREACHABLE_CODE = YES
           CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
           CLASS_FILE_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
           CLEAN_PRECOMPS = YES
           CLONE_HEADERS = NO
           CODESIGNING_FOLDER_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/Runner.app
           CODE_SIGNING_ALLOWED = YES
           CODE_SIGNING_REQUIRED = YES
           CODE_SIGN_CONTEXT_CLASS = XCiPhoneSimulatorCodeSignContext
           CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements
           CODE_SIGN_IDENTITY = iPhone Developer
           CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
           CODE_SIGN_STYLE = Manual
           COLOR_DIAGNOSTICS = NO
           COMBINE_HIDPI_IMAGES = NO
           COMPILER_INDEX_STORE_ENABLE = Default
           COMPOSITE_SDK_DIRS = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/CompositeSDKs
           COMPRESS_PNG_FILES = YES
           CONFIGURATION = Debug
           CONFIGURATION_BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
           CONFIGURATION_TEMP_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
           CONTENTS_FOLDER_PATH = Runner.app
           COPYING_PRESERVES_HFS_DATA = NO
           COPY_HEADERS_RUN_UNIFDEF = NO
           COPY_PHASE_STRIP = NO
           COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
           CORRESPONDING_DEVICE_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
           CORRESPONDING_DEVICE_PLATFORM_NAME = iphoneos
           CORRESPONDING_DEVICE_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.1.sdk
           CORRESPONDING_DEVICE_SDK_NAME = iphoneos12.1
           CP = /bin/cp
           CREATE_INFOPLIST_SECTION_IN_BINARY = NO
           CURRENT_ARCH = x86_64
           CURRENT_PROJECT_VERSION = 1
           CURRENT_VARIANT = normal
           DEAD_CODE_STRIPPING = YES
           DEBUGGING_SYMBOLS = YES
           DEBUG_INFORMATION_FORMAT = dwarf
           DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
           DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
           DEFINES_MODULE = NO
           DEPLOYMENT_LOCATION = NO
           DEPLOYMENT_POSTPROCESSING = NO
           DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
           DEPLOYMENT_TARGET_CLANG_FLAG_NAME = mios-simulator-version-min
           DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -mios-simulator-version-min=
           DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
           DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_simulator_version_min
           DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
           DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1
           DERIVED_FILES_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
           DERIVED_FILE_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
           DERIVED_SOURCES_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
           DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
           DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
           DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
           DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
           DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
           DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
           DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
           DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
           DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
           DEVELOPMENT_LANGUAGE = English
           DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
           DO_HEADER_SCANNING_IN_JAM = NO
           DSTROOT = /tmp/Runner.dst
           DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
           DWARF_DSYM_FILE_NAME = Runner.app.dSYM
           DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
           DWARF_DSYM_FOLDER_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
           EFFECTIVE_PLATFORM_NAME = -iphonesimulator
           EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
           EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
           ENABLE_BITCODE = NO
           ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
           ENABLE_HEADER_DEPENDENCIES = YES
           ENABLE_ON_DEMAND_RESOURCES = YES
           ENABLE_STRICT_OBJC_MSGSEND = YES
           ENABLE_TESTABILITY = YES
           ENTITLEMENTS_DESTINATION = __entitlements
           ENTITLEMENTS_REQUIRED = YES
           EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
           EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
           EXECUTABLES_FOLDER_PATH = Runner.app/Executables
           EXECUTABLE_FOLDER_PATH = Runner.app
           EXECUTABLE_NAME = Runner
           EXECUTABLE_PATH = Runner.app/Runner
           EXPANDED_CODE_SIGN_IDENTITY = 
           EXPANDED_CODE_SIGN_IDENTITY_NAME = 
           EXPANDED_PROVISIONING_PROFILE = 
           FILE_LIST = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
           FIXED_FILES_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
           FLUTTER_APPLICATION_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example
           FLUTTER_BUILD_DIR = build
           FLUTTER_BUILD_MODE = debug
           FLUTTER_FRAMEWORK_DIR = /Users/madhubhaskar/Desktop/flutter/bin/cache/artifacts/engine/ios
           FLUTTER_ROOT = /Users/madhubhaskar/Desktop/flutter
           FLUTTER_TARGET = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/lib/main.dart
           FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
           FRAMEWORK_FLAG_PREFIX = -framework
           FRAMEWORK_SEARCH_PATHS =  "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios"
           "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios"
           "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework"
           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 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
           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/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter"
           "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal"
           "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter"
           "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal"
           HIDE_BITCODE_SYMBOLS = YES
           HOME = /Users/madhubhaskar
           ICONV = /usr/bin/iconv
           INFOPLIST_EXPAND_BUILD_SETTINGS = YES
           INFOPLIST_FILE = Runner/Info.plist
           INFOPLIST_OUTPUT_FORMAT = binary
           INFOPLIST_PATH = Runner.app/Info.plist
           INFOPLIST_PREPROCESS = NO
           INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings
           INLINE_PRIVATE_FRAMEWORKS = NO
           INSTALLHDRS_COPY_PHASE = NO
           INSTALLHDRS_SCRIPT_PHASE = NO
           INSTALL_DIR = /tmp/Runner.dst/Applications
           INSTALL_GROUP = staff
           INSTALL_MODE_FLAG = u+w,go-w,a+rX
           INSTALL_OWNER = madhubhaskar
           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/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/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/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/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' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks
           LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
           LEX = lex
           LIBRARY_FLAG_NOSPACE = YES
           LIBRARY_FLAG_PREFIX = -l
           LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
           LIBRARY_SEARCH_PATHS =  "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal"
           "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal"
           LINKER_DISPLAYS_MANGLED_NAMES = NO
           LINK_FILE_LIST_normal_x86_64 = 
           LINK_WITH_STANDARD_LIBRARIES = YES
           LLVM_TARGET_TRIPLE_SUFFIX = -simulator
           LOCALIZABLE_CONTENT_DIR = 
           LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
           LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString
           LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
           LOCAL_APPS_DIR = /Applications
           LOCAL_DEVELOPER_DIR = /Library/Developer
           LOCAL_LIBRARY_DIR = /Library
           LOCROOT = 
           LOCSYMROOT = 
           MACH_O_TYPE = mh_execute
           MAC_OS_X_PRODUCT_BUILD_VERSION = 18A391
           MAC_OS_X_VERSION_ACTUAL = 101400
           MAC_OS_X_VERSION_MAJOR = 101400
           MAC_OS_X_VERSION_MINOR = 1400
           METAL_LIBRARY_FILE_BASE = default
           METAL_LIBRARY_OUTPUT_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/Runner.app
           MODULE_CACHE_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
           MTL_ENABLE_DEBUG_INFO = YES
           NATIVE_ARCH = i386
           NATIVE_ARCH_32_BIT = i386
           NATIVE_ARCH_64_BIT = x86_64
           NATIVE_ARCH_ACTUAL = x86_64
           NO_COMMON = YES
           OBJC_ABI_VERSION = 2
           OBJECT_FILE_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
           OBJECT_FILE_DIR_normal = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
           OBJROOT = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex
           ONLY_ACTIVE_ARCH = YES
           OS = MACOS
           OSAC = /usr/bin/osacompile
           OTHER_CFLAGS =  -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter" -isystem
           "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal" -isystem
           "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter" -isystem
           "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal"
           OTHER_CPLUSPLUSFLAGS =  -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter"
           -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal" -isystem
           "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter" -isystem
           "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal"
           OTHER_LDFLAGS =  -ObjC -l"onesignal" -framework "Flutter" -framework "OneSignal" -framework "SystemConfiguration" -framework "UIKit" -framework "UserNotifications" -ObjC -l"onesignal" -framework "Flutter" -framework
           "OneSignal" -framework "SystemConfiguration" -framework "UIKit" -framework "UserNotifications"
           PACKAGE_TYPE = com.apple.package-type.wrapper.application
           PASCAL_STRINGS = YES
           PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madhubhaskar/Desktop/flutter/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/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
           PKGINFO_PATH = Runner.app/PkgInfo
           PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
           PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
           PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
           PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
           PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
           PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
           PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
           PLATFORM_DISPLAY_NAME = iOS Simulator
           PLATFORM_NAME = iphonesimulator
           PLATFORM_PREFERRED_ARCH = x86_64
           PLIST_FILE_OUTPUT_FORMAT = binary
           PLUGINS_FOLDER_PATH = Runner.app/PlugIns
           PODS_BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios
           PODS_CONFIGURATION_BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
           PODS_PODFILE_DIR_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/.
           PODS_ROOT = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods
           PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
           PRECOMP_DESTINATION_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/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.testapp.brad
           PRODUCT_MODULE_NAME = Runner
           PRODUCT_NAME = Runner
           PRODUCT_SETTINGS_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner/Info.plist
           PRODUCT_TYPE = com.apple.product-type.application
           PROFILING_CODE = NO
           PROJECT = Runner
           PROJECT_DERIVED_FILE_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/DerivedSources
           PROJECT_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
           PROJECT_FILE_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner.xcodeproj
           PROJECT_NAME = Runner
           PROJECT_TEMP_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build
           PROJECT_TEMP_ROOT = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/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/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
           REZ_OBJECTS_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/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/7k/rplqnssn1qv_jbkxfvm556pr0000gn/T/flutter_build_log_pipe.umGpzi/pipe_to_stdout
           SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
           SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
           SDK_DIR_iphonesimulator12_1 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
           SDK_NAME = iphonesimulator12.1
           SDK_NAMES = iphonesimulator12.1
           SDK_PRODUCT_BUILD_VERSION = 16B91
           SDK_VERSION = 12.1
           SDK_VERSION_ACTUAL = 120100
           SDK_VERSION_MAJOR = 120000
           SDK_VERSION_MINOR = 100
           SED = /usr/bin/sed
           SEPARATE_STRIP = NO
           SEPARATE_SYMBOL_EDIT = NO
           SET_DIR_MODE_OWNER_GROUP = YES
           SET_FILE_MODE_OWNER_GROUP = NO
           SHALLOW_BUNDLE = YES
           SHARED_DERIVED_FILE_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/DerivedSources
           SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
           SHARED_PRECOMPS_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/PrecompiledHeaders
           SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
           SKIP_INSTALL = NO
           SOURCE_ROOT = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
           SRCROOT = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
           STRINGS_FILE_OUTPUT_ENCODING = binary
           STRIP_BITCODE_FROM_COPIED_FILES = NO
           STRIP_INSTALLED_PRODUCT = YES
           STRIP_STYLE = all
           STRIP_SWIFT_SYMBOLS = YES
           SUPPORTED_DEVICE_FAMILIES = 1,2
           SUPPORTED_PLATFORMS = iphonesimulator iphoneos
           SUPPORTS_TEXT_BASED_API = NO
           SWIFT_PLATFORM_TARGET_PREFIX = ios
           SYMROOT = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Products
           SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
           SYSTEM_APPS_DIR = /Applications
           SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
           SYSTEM_DEMOS_DIR = /Applications/Extras
           SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
           SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
           SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
           SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
           SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
           SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
           SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
           SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
           SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
           SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
           SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
           SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
           SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
           SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
           SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
           SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
           SYSTEM_LIBRARY_DIR = /System/Library
           TAPI_VERIFY_MODE = ErrorsOnly
           TARGETED_DEVICE_FAMILY = 1,2
           TARGETNAME = Runner
           TARGET_BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
           TARGET_NAME = Runner
           TARGET_TEMP_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
           TEMP_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
           TEMP_FILES_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
           TEMP_FILE_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
           TEMP_ROOT = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex
           TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
           TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
           UID = 501
           UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
           UNSTRIPPED_PRODUCT = NO
           USER = madhubhaskar
           USER_APPS_DIR = /Users/madhubhaskar/Applications
           USER_LIBRARY_DIR = /Users/madhubhaskar/Library
           USE_DYNAMIC_NO_PIC = YES
           USE_HEADERMAP = YES
           USE_HEADER_SYMLINKS = NO
           VALIDATE_PRODUCT = NO
           VALID_ARCHS = i386 x86_64
           VERBOSE_PBXCP = NO
           VERBOSE_SCRIPT_LOGGING = YES
           VERSIONING_SYSTEM = apple-generic
           VERSIONPLIST_PATH = Runner.app/version.plist
           VERSION_INFO_BUILDER = madhubhaskar
           VERSION_INFO_FILE = Runner_vers.c
           VERSION_INFO_STRING = "@(#)PROGRAM:Runner  PROJECT:Runner-1"
           WRAPPER_EXTENSION = app
           WRAPPER_NAME = Runner.app
           WRAPPER_SUFFIX = .app
           WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
           XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode
           XCODE_PRODUCT_BUILD_VERSION = 10B61
           XCODE_VERSION_ACTUAL = 1010
           XCODE_VERSION_MAJOR = 1000
           XCODE_VERSION_MINOR = 1010
           XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
           YACC = yacc
           arch = x86_64
           variant = normal

[ +7 ms] Failed to build iOS app [ ] Error output from Xcode build: ↳ [ ] BUILD FAILED

           The following build commands failed:
            Ld /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex/OneSignalNotificationServiceExtension normal x86_64
           (1 failure)

[ ] Xcode's output: ↳ [ +47 ms] Build settings from command line: ARCHS = x86_64 BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios SCRIPT_OUTPUT_STREAM_FILE = /var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/T/flutter_build_log_pipe.umGpzi/pipe_to_stdout SDKROOT = iphonesimulator12.1 VERBOSE_SCRIPT_LOGGING = YES

           Prepare build
           note: Using legacy build system

           === BUILD TARGET Pods-OneSignalNotificationServiceExtension OF PROJECT Pods WITH CONFIGURATION Debug ===

           Check dependencies

           === BUILD TARGET onesignal OF PROJECT Pods WITH CONFIGURATION Debug ===
           Check dependencies

           CompileC /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalCategories.o
           /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
               cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods
               export LANG=en_US.US-ASCII
               export

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/madhubhaskar/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 -Wdocumentation -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 -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-generated-files.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-own-target-headers.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-all-target-headers.hmap -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-project-headers.hmap -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private/onesignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources/x86_64 -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -include /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\ Files/onesignal/onesignal-prefix.pch -MMD -MT dependencies -MF /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalCategories.d --serialize-diagnostics /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalCategories.dia -c /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.m -o /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalCategories.o

           CompileC /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/onesignal-dummy.o

Target\ Support\ Files/onesignal/onesignal-dummy.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods export LANG=en_US.US-ASCII export

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/madhubhaskar/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 -Wdocumentation -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 -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-generated-files.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-own-target-headers.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-all-target-headers.hmap -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-project-headers.hmap -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private/onesignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources/x86_64 -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -include /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\ Files/onesignal/onesignal-prefix.pch -MMD -MT dependencies -MF /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/onesignal-dummy.d --serialize-diagnostics /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/onesignal-dummy.dia -c /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\ Files/onesignal/onesignal-dummy.m -o /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/onesignal-dummy.o

           CompileC

/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalTagsController.o /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalTagsController.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods export LANG=en_US.US-ASCII export

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/madhubhaskar/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 -Wdocumentation -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 -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-generated-files.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-own-target-headers.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-all-target-headers.hmap -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-project-headers.hmap -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private/onesignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources/x86_64 -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -include /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\ Files/onesignal/onesignal-prefix.pch -MMD -MT dependencies -MF /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalTagsController.d --serialize-diagnostics /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalTagsController.dia -c /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalTagsController.m -o /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalTagsController.o

           CompileC /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalPlugin.o
           /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
               cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods
               export LANG=en_US.US-ASCII
               export

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/madhubhaskar/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 -Wdocumentation -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 -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-generated-files.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-own-target-headers.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-all-target-headers.hmap -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-project-headers.hmap -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private/onesignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources/x86_64 -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -include /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\ Files/onesignal/onesignal-prefix.pch -MMD -MT dependencies -MF /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalPlugin.d --serialize-diagnostics /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalPlugin.dia -c /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.m -o /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalPlugin.o

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

           Check dependencies

           PhaseScriptExecution [CP]\ Check\ Pods\ Manifest.lock

/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/Script-BD6078845B63427256C7AAD2.sh cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios /bin/sh -c

/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/Script-BD6078845B63427256C7AAD2 .sh

           Ld /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex/OneSignalNotificationServiceExtension normal x86_64
               cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
               export IPHONEOS_DEPLOYMENT_TARGET=11.0
               export

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator -L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -filelist

/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/Objects-normal/x86_64/OneSignal NotificationServiceExtension.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @executable_path/../../Frameworks -mios-simulator-version-min=11.0 -dead_strip -Xlinker -object_path_lto -Xlinker

/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/Objects-normal/x86_64/OneSignal NotificationServiceExtension_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -fapplication-extension -ObjC -lonesignal -framework Flutter -framework OneSignal -framework SystemConfiguration -framework UIKit -framework UserNotifications -ObjC -framework OneSignal -framework SystemConfiguration -framework UIKit -framework UserNotifications -e _NSExtensionMain -Xlinker -sectcreate -Xlinker TEXT -Xlinker entitlements -Xlinker

/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/OneSignalNotificationServiceExt ension.appex-Simulated.xcent -framework UserNotifications -framework UIKit -framework SystemConfiguration -lPods-OneSignalNotificationServiceExtension -Xlinker -dependency_info -Xlinker

/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/Objects-normal/x86_64/OneSignal NotificationServiceExtension_dependency_info.dat -o /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex/OneSignalNotificationServiceExtension ld: warning: directory not found for option '-L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal' ld: library not found for -lonesignal clang: error: linker command failed with exit code 1 (use -v to see invocation)

[ +15 ms] Could not build the application for the simulator. [ +1 ms] Error launching application on iPhone XR. [ +3 ms] "flutter run" took 7,259ms.

0 throwToolExit (package:flutter_tools/src/base/common.dart:26:3)

1 RunCommand.runCommand (package:flutter_tools/src/commands/run.dart:403:7)

#2 FlutterCommand.verifyThenRunCommand (package:flutter_tools/src/runner/flutter_command.dart:383:18) #3 _asyncThenWrapperHelper. (dart:async/runtime/libasync_patch.dart:77:64) #4 _rootRunUnary (dart:async/zone.dart:1132:38) #5 _CustomZone.runUnary (dart:async/zone.dart:1029:19) #6 _FutureListener.handleValue (dart:async/future_impl.dart:129:18) #7 Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:642:45) #8 Future._propagateToListeners (dart:async/future_impl.dart:671:32) #9 Future._complete (dart:async/future_impl.dart:476:7) #10 _SyncCompleter.complete (dart:async/future_impl.dart:51:12) #11 _AsyncAwaitCompleter.complete (dart:async/runtime/libasync_patch.dart:28:18) #12 _completeOnAsyncReturn (dart:async/runtime/libasync_patch.dart:295:13) #13 RunCommand.usageValues (package:flutter_tools/src/commands/run.dart) #14 _asyncThenWrapperHelper. (dart:async/runtime/libasync_patch.dart:77:64) #15 _rootRunUnary (dart:async/zone.dart:1132:38) #16 _CustomZone.runUnary (dart:async/zone.dart:1029:19) #17 _FutureListener.handleValue (dart:async/future_impl.dart:129:18) #18 Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:642:45) #19 Future._propagateToListeners (dart:async/future_impl.dart:671:32) #20 Future._complete (dart:async/future_impl.dart:476:7) #21 _SyncCompleter.complete (dart:async/future_impl.dart:51:12) #22 _AsyncAwaitCompleter.complete. (dart:async/runtime/libasync_patch.dart:33:20) #23 _rootRun (dart:async/zone.dart:1124:13) #24 _CustomZone.run (dart:async/zone.dart:1021:19) #25 _CustomZone.bindCallback. (dart:async/zone.dart:947:23) #26 _microtaskLoop (dart:async/schedule_microtask.dart:41:21) #27 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5) #28 _runPendingImmediateCallback (dart:isolate/runtime/libisolate_patch.dart:115:13) #29 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:172:5) @sjmcdowall
sjmcdowall commented 5 years ago

Hate to ask an obvious question -- but you did do "one way or another" a "flutter packages get" ?? The "flutter upgrade" I think does that .. but .. maybe not.. But we're making progress (I think!)

I had this error too in the sample project .. I now have to remember how I fixed it ... LOL

MadhuSudhanBhaskar commented 5 years ago

lol would be nice if you remember it. ya I did a flutter upgrade @sjmcdowall

sjmcdowall commented 5 years ago

BTW -- here is the Podfile I use in my project (which appears to work fine but I've only done very basic testing.. ) .. I have a LOT of plugins .. some are in Swift so hence the that part -- but it shouldn't hurt ..

This isn't for the example project -- but from my own ..

# Uncomment this line to define a global platform for your project
platform :ios, '10.0'

# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

def parse_KV_file(file, separator='=')
  file_abs_path = File.expand_path(file)
  if !File.exists? file_abs_path
    return [];
  end
  pods_ary = []
  skip_line_start_symbols = ["#", "/"]
  File.foreach(file_abs_path) { |line|
      next if skip_line_start_symbols.any? { |symbol| line =~ /^\s*#{symbol}/ }
      plugin = line.split(pattern=separator)
      if plugin.length == 2
        podname = plugin[0].strip()
        path = plugin[1].strip()
        podpath = File.expand_path("#{path}", file_abs_path)
        pods_ary.push({:name => podname, :path => podpath});
      else
        puts "Invalid plugin specification: #{line}"
      end
  }
  return pods_ary
end

target 'Runner' do
  # SJM -- For Swift plugins
  # use_frameworks!

  # Prepare symlinks folder. We use symlinks to avoid having Podfile.lock
  # referring to absolute paths on developers' machines.
  system('rm -rf .symlinks')
  system('mkdir -p .symlinks/plugins')

  # Flutter Pods
  generated_xcode_build_settings = parse_KV_file('./Flutter/Generated.xcconfig')
  if generated_xcode_build_settings.empty?
    puts "Generated.xcconfig must exist. If you're running pod install manually, make sure flutter packages get is executed first."
  end
  generated_xcode_build_settings.map { |p|
    if p[:name] == 'FLUTTER_FRAMEWORK_DIR'
      symlink = File.join('.symlinks', 'flutter')
      File.symlink(File.dirname(p[:path]), symlink)
      pod 'Flutter', :path => File.join(symlink, File.basename(p[:path]))
    end
  }

  # Plugin Pods
  plugin_pods = parse_KV_file('../.flutter-plugins')
  plugin_pods.map { |p|
    symlink = File.join('.symlinks', 'plugins', p[:name])
    File.symlink(p[:path], symlink)
    pod p[:name], :path => File.join(symlink, 'ios')
  }
end

target 'OneSignalNotificationServiceExtension' do
  pod 'OneSignal', '>= 2.9.3', '< 3.0'
end

post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['SWIFT_VERSION'] = '4.0'
      config.build_settings['ENABLE_BITCODE'] = 'NO'
    end
  end
end
MadhuSudhanBhaskar commented 5 years ago

Madhus-MacBook-Pro:example madhubhaskar$ flutter run -v -d D98FAF32-FB61-4F87-A7D7-5EF69C8368BC [ +37 ms] executing: [/Users/madhubhaskar/Desktop/flutter/] git rev-parse --abbrev-ref --symbolic @{u} [ +36 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ ] origin/beta [ ] executing: [/Users/madhubhaskar/Desktop/flutter/] git rev-parse --abbrev-ref HEAD [ +11 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ ] beta [ ] executing: [/Users/madhubhaskar/Desktop/flutter/] git ls-remote --get-url origin [ +12 ms] Exit code 0 from: git ls-remote --get-url origin [ ] https://github.com/flutter/flutter.git [ ] executing: [/Users/madhubhaskar/Desktop/flutter/] git log -n 1 --pretty=format:%H [ +12 ms] Exit code 0 from: git log -n 1 --pretty=format:%H [ ] d48e6e433cc5ca67b24b19f70aaa197e84ba63c1 [ ] executing: [/Users/madhubhaskar/Desktop/flutter/] git log -n 1 --pretty=format:%ar [ +15 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar [ ] 18 hours ago [ +1 ms] executing: [/Users/madhubhaskar/Desktop/flutter/] git describe --match v.. --first-parent --long --tags [ +16 ms] Exit code 0 from: git describe --match v.. --first-parent --long --tags [ ] v0.11.9-0-gd48e6e433c [ +332 ms] executing: /Users/madhubhaskar/Library/Android/sdk/platform-tools/adb devices -l [ +9 ms] Exit code 0 from: /Users/madhubhaskar/Library/Android/sdk/platform-tools/adb devices -l [ ] List of devices attached [ +5 ms] executing: idevice_id -h [ +36 ms] /usr/bin/xcrun simctl list --json devices [ +342 ms] Found plugin onesignal at /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ [ +55 ms] Found plugin onesignal at /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ [ +752 ms] Launching lib/main.dart on iPhone XR in debug mode... [ +10 ms] executing: /usr/bin/defaults read /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner/Info CFBundleIdentifier [ +36 ms] Exit code 0 from: /usr/bin/defaults read /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner/Info CFBundleIdentifier [ ] $(PRODUCT_BUNDLE_IDENTIFIER) [ +11 ms] Building Runner.app for D98FAF32-FB61-4F87-A7D7-5EF69C8368BC. [ +12 ms] /Users/madhubhaskar/Desktop/flutter/bin/cache/dart-sdk/bin/dart /Users/madhubhaskar/Desktop/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/madhubhaskar/Desktop/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --strong --target=flutter --no-link-platform --incremental --packages /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/.packages --output-dill build/app.dill --depfile build/snapshot_blob.bin.d package:onesignal_example/main.dart [ +4 ms] executing: script /dev/null /usr/bin/log stream --style syslog --predicate processImagePath CONTAINS "D98FAF32-FB61-4F87-A7D7-5EF69C8368BC" [ +32 ms] [DEVICE LOG] Filtering the log data using "processImagePath CONTAINS "D98FAF32-FB61-4F87-A7D7-5EF69C8368BC"" [+3951 ms] Building bundle [ ] Writing asset files to build/flutter_assets [ +40 ms] Wrote build/flutter_assets [ +8 ms] Using legacy Xcode build system. [ +16 ms] executing: [/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/] /usr/bin/xcodebuild -list [+1155 ms] Exit code 0 from: /usr/bin/xcodebuild -list [ ] Information about project "Runner": Targets: Runner OneSignalNotificationServiceExtension

           Build Configurations:
               Debug
               Release

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

           Schemes:
               OneSignalNotificationServiceExtension
               Runner

[ +2 ms] Trying to resolve native pub services. [ +1 ms] Looking for YAML at 'pubspec.yaml' [ +1 ms] No services specified in the manifest [ ] Found 0 service definition(s). [ ] Copying service frameworks to '/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Frameworks'. [ ] Creating service definitions manifest at '/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/ServiceDefinitions.json' [ +14 ms] Found plugin onesignal at /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ [ +21 ms] executing: [/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner.xcodeproj -target Runner -showBuildSettings [+1254 ms] Exit code 0 from: /usr/bin/xcodebuild -project /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner.xcodeproj -target 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 = madhubhaskar ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO ALWAYS_SEARCH_USER_PATHS = NO ALWAYS_USE_SEPARATE_HEADERMAPS = NO APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer APPLE_INTERNAL_DIR = /AppleInternal APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools APPLICATION_EXTENSION_API_ONLY = NO APPLY_RULES_IN_COPY_FILES = NO ARCHS = 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/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios BUILD_ROOT = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios BUILD_STYLE = BUILD_VARIANTS = normal BUILT_PRODUCTS_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Release-iphoneos CACHE_ROOT = /var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/C/com.apple.DeveloperTools/10.1-10B61/Xcode CCHROOT = /var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/C/com.apple.DeveloperTools/10.1-10B61/Xcode CHMOD = /bin/chmod CHOWN = /usr/sbin/chown CLANG_ANALYZER_NONNULL = YES CLANG_CXX_LANGUAGE_STANDARD = gnu++0x CLANG_CXX_LIBRARY = libc++ CLANG_ENABLE_MODULES = YES CLANG_ENABLE_OBJC_ARC = YES CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES CLANG_WARN_BOOL_CONVERSION = YES CLANG_WARN_COMMA = YES CLANG_WARN_CONSTANT_CONVERSION = YES CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR CLANG_WARN_EMPTY_BODY = YES CLANG_WARN_ENUM_CONVERSION = YES CLANG_WARN_INFINITE_RECURSION = YES CLANG_WARN_INT_CONVERSION = YES CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES CLANG_WARN_OBJC_LITERAL_CONVERSION = YES CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR CLANG_WARN_RANGE_LOOP_ANALYSIS = YES CLANG_WARN_STRICT_PROTOTYPES = YES CLANG_WARN_SUSPICIOUS_MOVE = YES CLANG_WARN_UNREACHABLE_CODE = YES CLANG_WARN__DUPLICATE_METHOD_MATCH = YES CLASS_FILE_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses CLEAN_PRECOMPS = YES CLONE_HEADERS = NO CODESIGNING_FOLDER_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Release-iphoneos/Runner.app CODE_SIGNING_ALLOWED = YES CODE_SIGNING_REQUIRED = YES CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements CODE_SIGN_IDENTITY = iPhone Developer CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES CODE_SIGN_STYLE = Manual COLOR_DIAGNOSTICS = NO COMBINE_HIDPI_IMAGES = NO COMPILER_INDEX_STORE_ENABLE = Default COMPOSITE_SDK_DIRS = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/CompositeSDKs COMPRESS_PNG_FILES = YES CONFIGURATION = Release CONFIGURATION_BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Release-iphoneos CONFIGURATION_TEMP_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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.app/Contents/Developer/Platforms/iPhoneSimulator.platform CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator12.1 CP = /bin/cp CREATE_INFOPLIST_SECTION_IN_BINARY = NO CURRENT_ARCH = arm64 CURRENT_PROJECT_VERSION = 1 CURRENT_VARIANT = normal DEAD_CODE_STRIPPING = YES DEBUGGING_SYMBOLS = YES DEBUG_INFORMATION_FORMAT = dwarf-with-dsym DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0 DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions DEFINES_MODULE = NO DEPLOYMENT_LOCATION = NO DEPLOYMENT_POSTPROCESSING = NO DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_CLANG_FLAG_NAME = 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 = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 DERIVED_FILES_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources DERIVED_FILE_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources DERIVED_SOURCES_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr DEVELOPMENT_LANGUAGE = English DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation DO_HEADER_SCANNING_IN_JAM = NO DSTROOT = /tmp/Runner.dst DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain DWARF_DSYM_FILE_NAME = Runner.app.dSYM DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO DWARF_DSYM_FOLDER_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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_HEADER_DEPENDENCIES = YES ENABLE_NS_ASSERTIONS = NO ENABLE_ON_DEMAND_RESOURCES = YES ENABLE_STRICT_OBJC_MSGSEND = YES ENABLE_TESTABILITY = 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/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList FIXED_FILES_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles FLUTTER_APPLICATION_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example FLUTTER_BUILD_DIR = build FLUTTER_FRAMEWORK_DIR = /Users/madhubhaskar/Desktop/flutter/bin/cache/artifacts/engine/ios FLUTTER_ROOT = /Users/madhubhaskar/Desktop/flutter FLUTTER_TARGET = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/lib/main.dart FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks FRAMEWORK_FLAG_PREFIX = -framework FRAMEWORK_SEARCH_PATHS = "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework" 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_PREPROCESSOR_DEFINITIONS = COCOAPODS=1 COCOAPODS=1 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 HEADER_SEARCH_PATHS = "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal" HIDE_BITCODE_SYMBOLS = YES HOME = /Users/madhubhaskar ICONV = /usr/bin/iconv INFOPLIST_EXPAND_BUILD_SETTINGS = YES INFOPLIST_FILE = Runner/Info.plist INFOPLIST_OUTPUT_FORMAT = binary INFOPLIST_PATH = Runner.app/Info.plist INFOPLIST_PREPROCESS = NO INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings INLINE_PRIVATE_FRAMEWORKS = NO INSTALLHDRS_COPY_PHASE = NO INSTALLHDRS_SCRIPT_PHASE = NO INSTALL_DIR = /tmp/Runner.dst/Applications INSTALL_GROUP = staff INSTALL_MODE_FLAG = u+w,go-w,a+rX INSTALL_OWNER = madhubhaskar 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/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer LEX = lex LIBRARY_FLAG_NOSPACE = YES LIBRARY_FLAG_PREFIX = -l LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions LIBRARY_SEARCH_PATHS = "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Release-iphoneos/onesignal" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Release-iphoneos/onesignal" LINKER_DISPLAYS_MANGLED_NAMES = NO LINK_FILE_LIST_normal_arm64 = LINK_FILE_LIST_normal_armv7 = LINK_WITH_STANDARD_LIBRARIES = YES LOCALIZABLE_CONTENT_DIR = LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString LOCAL_ADMIN_APPS_DIR = /Applications/Utilities LOCAL_APPS_DIR = /Applications LOCAL_DEVELOPER_DIR = /Library/Developer LOCAL_LIBRARY_DIR = /Library LOCROOT = LOCSYMROOT = MACH_O_TYPE = mh_execute MAC_OS_X_PRODUCT_BUILD_VERSION = 18A391 MAC_OS_X_VERSION_ACTUAL = 101400 MAC_OS_X_VERSION_MAJOR = 101400 MAC_OS_X_VERSION_MINOR = 1400 METAL_LIBRARY_FILE_BASE = default METAL_LIBRARY_OUTPUT_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Release-iphoneos/Runner.app MODULE_CACHE_DIR = /Users/madhubhaskar/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/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects OBJECT_FILE_DIR_normal = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal OBJROOT = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios ONLY_ACTIVE_ARCH = NO OS = MACOS OSAC = /usr/bin/osacompile OTHER_CFLAGS = -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal" OTHER_CPLUSPLUSFLAGS = -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal" OTHER_LDFLAGS = -ObjC -l"onesignal" -framework "Flutter" -framework "OneSignal" -framework "SystemConfiguration" -framework "UIKit" -framework "UserNotifications" -ObjC -l"onesignal" -framework "Flutter" -framework "OneSignal" -framework "SystemConfiguration" -framework "UIKit" -framework "UserNotifications" PACKAGE_TYPE = com.apple.package-type.wrapper.application PASCAL_STRINGS = YES PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madhubhaskar/Desktop/flutter/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/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo PKGINFO_PATH = Runner.app/PkgInfo PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform PLATFORM_DISPLAY_NAME = iOS PLATFORM_NAME = iphoneos PLATFORM_PREFERRED_ARCH = arm64 PLATFORM_PRODUCT_BUILD_VERSION = 16B91 PLIST_FILE_OUTPUT_FORMAT = binary PLUGINS_FOLDER_PATH = Runner.app/PlugIns PODS_BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios PODS_CONFIGURATION_BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Release-iphoneos PODS_PODFILE_DIR_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/. PODS_ROOT = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES PRECOMP_DESTINATION_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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.testapp.brad PRODUCT_MODULE_NAME = Runner PRODUCT_NAME = Runner PRODUCT_SETTINGS_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner/Info.plist PRODUCT_TYPE = com.apple.product-type.application PROFILING_CODE = NO PROJECT = Runner PROJECT_DERIVED_FILE_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/DerivedSources PROJECT_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios PROJECT_FILE_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner.xcodeproj PROJECT_NAME = Runner PROJECT_TEMP_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build PROJECT_TEMP_ROOT = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources REZ_OBJECTS_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.1.sdk SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.1.sdk SDK_DIR_iphoneos12_1 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.1.sdk SDK_NAME = iphoneos12.1 SDK_NAMES = iphoneos12.1 SDK_PRODUCT_BUILD_VERSION = 16B91 SDK_VERSION = 12.1 SDK_VERSION_ACTUAL = 120100 SDK_VERSION_MAJOR = 120000 SDK_VERSION_MINOR = 100 SED = /usr/bin/sed SEPARATE_STRIP = NO SEPARATE_SYMBOL_EDIT = NO SET_DIR_MODE_OWNER_GROUP = YES SET_FILE_MODE_OWNER_GROUP = NO SHALLOW_BUNDLE = YES SHARED_DERIVED_FILE_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Release-iphoneos/DerivedSources SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks SHARED_PRECOMPS_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/SharedPrecompiledHeaders SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport SKIP_INSTALL = NO SOURCE_ROOT = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios SRCROOT = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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 = iphonesimulator iphoneos SUPPORTS_TEXT_BASED_API = NO SWIFT_PLATFORM_TARGET_PREFIX = ios SYMROOT = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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.app/Contents/Developer/Applications SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities SYSTEM_DOCUMENTATION_DIR = /Library/Documentation SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions SYSTEM_LIBRARY_DIR = /System/Library TAPI_VERIFY_MODE = ErrorsOnly TARGETED_DEVICE_FAMILY = 1,2 TARGETNAME = Runner TARGET_BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Release-iphoneos TARGET_NAME = Runner TARGET_TEMP_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_FILES_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_FILE_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_ROOT = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO UID = 501 UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app UNSTRIPPED_PRODUCT = NO USER = madhubhaskar USER_APPS_DIR = /Users/madhubhaskar/Applications USER_LIBRARY_DIR = /Users/madhubhaskar/Library USE_DYNAMIC_NO_PIC = YES USE_HEADERMAP = YES USE_HEADER_SYMLINKS = NO VALIDATE_PRODUCT = YES VALID_ARCHS = arm64 arm64e armv7 armv7s VERBOSE_PBXCP = NO VERSIONING_SYSTEM = apple-generic VERSIONPLIST_PATH = Runner.app/version.plist VERSION_INFO_BUILDER = madhubhaskar VERSION_INFO_FILE = Runner_vers.c VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-1" WRAPPER_EXTENSION = app WRAPPER_NAME = Runner.app WRAPPER_SUFFIX = .app WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode XCODE_PRODUCT_BUILD_VERSION = 10B61 XCODE_VERSION_ACTUAL = 1010 XCODE_VERSION_MAJOR = 1000 XCODE_VERSION_MINOR = 1010 XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices YACC = yacc arch = arm64 variant = normal [ +18 ms] executing: pod --version [ +431 ms] 1.5.3 [ +3 ms] Running pod install... [+1063 ms] Running pod install... (completed) [ ] CocoaPods' output: ↳ [ +1 ms] Preparing

           Analyzing dependencies

           Inspecting targets to integrate
             Using `ARCHS` setting to build architectures of target `Pods-Runner`: (``)
             Using `ARCHS` setting to build architectures of target `Pods-OneSignalNotificationServiceExtension`: (``)

           Finding Podfile changes
             - Flutter
             - OneSignal
             - onesignal

           Fetching external sources
           -> Fetching podspec for `Flutter` from `.symlinks/flutter/ios`
           -> Fetching podspec for `onesignal` from `.symlinks/plugins/onesignal/ios`

           Resolving dependencies of `Podfile`

           Comparing resolved specification to the sandbox manifest
             - Flutter
             - OneSignal
             - onesignal

           Downloading dependencies

           -> Using Flutter (1.0.0)

           -> Using OneSignal (2.9.3)

           -> Using onesignal (1.0.2)
             - Running pre install hooks

           Generating Pods project
             - Creating Pods project
             - Adding source files to Pods project
             - Adding frameworks to Pods project
             - Adding libraries to Pods project
             - Adding resources to Pods project
             - Adding development pod helper files to Pods project
             - Linking headers
             - Installing targets
               - Installing target `onesignal` iOS 8.0
               - Installing target `Pods-OneSignalNotificationServiceExtension` iOS 10.0
               - Installing target `Pods-Runner` iOS 10.0
             - Running post install hooks
               - Podfile
             - Writing Xcode project file to `Pods/Pods.xcodeproj`
               - Generating deterministic UUIDs
             - Writing Lockfile in `Podfile.lock`
             - Writing Manifest in `Pods/Manifest.lock`

           Integrating client project

           Integrating target `Pods-OneSignalNotificationServiceExtension` (`Runner.xcodeproj` project)

           Integrating target `Pods-Runner` (`Runner.xcodeproj` project)
             - Running post install hooks
               - cocoapods-stats from `/usr/local/Cellar/cocoapods/1.5.3/libexec/gems/cocoapods-stats-1.0.0/lib/cocoapods_plugin.rb`

           -> Pod installation complete! There are 3 dependencies from the Podfile and 3 total pods installed.

[ +24 ms] executing: mkfifo /var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/T/flutter_build_log_pipe.iw8DF5/pipe_to_stdout [ +6 ms] Exit code 0 from: mkfifo /var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/T/flutter_build_log_pipe.iw8DF5/pipe_to_stdout [ +2 ms] Starting Xcode build... [ +1 ms] executing: [/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/T/flutter_build_log_pipe.iw8DF5/pipe_to_stdout [+2956 ms] Starting Xcode build... (completed) [ ] ├─Assembling Flutter resources... [+1361 ms] ├─Assembling Flutter resources... (completed) [ ] Starting Xcode build... (completed) [ ] └─Compiling, linking and signing... [ +460 ms] Build settings from command line: ARCHS = x86_64 BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios SCRIPT_OUTPUT_STREAM_FILE = /var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/T/flutter_build_log_pipe.iw8DF5/pipe_to_stdout SDKROOT = iphonesimulator12.1 VERBOSE_SCRIPT_LOGGING = YES

                Prepare build
                note: Using legacy build system

                === BUILD TARGET onesignal OF PROJECT Pods WITH CONFIGURATION Debug ===

                Check dependencies

                CompileC /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalPlugin.o
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods
                    export LANG=en_US.US-ASCII
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11
                    -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600
                    -fbuild-session-file=/Users/madhubhaskar/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 -Wdocumentation -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 -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0
                    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations
                    -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version=2
                    -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-generated-files.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-own-target-headers.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-all-target-headers.hmap -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-project-headers.hmap
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private/onesignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources/x86_64
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -include /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\
                    Files/onesignal/onesignal-prefix.pch -MMD -MT dependencies -MF
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalPlugin.d
                    --serialize-diagnostics
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalPlugin.dia -c
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.m -o
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalPlugin.o
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.m:28:
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.h:29:
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:434:4: warning: 'UNMutableNotificationContent' is only available on iOS 10.0 or newer
                [-Wunguarded-availability]
                + (UNMutableNotificationContent*)didReceiveNotificationExtensionRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                   ^
                In module 'UserNotifications' imported from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter/Flutter/FlutterPlugin.h:9:
                /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h:60:12: note:
                'UNMutableNotificationContent' has been explicitly marked partial here
                @interface UNMutableNotificationContent : UNNotificationContent
                           ^
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.m:28:
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.h:29:
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:434:1: note: annotate 'didReceiveNotificationExtensionRequest:withMutableNotificationContent:' with an
                availability attribute to silence this warning
                + (UNMutableNotificationContent*)didReceiveNotificationExtensionRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                ^
                                                                                                                                                                                                         API_AVAILABLE(ios(10.0))
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:434:74: warning: 'UNNotificationRequest' is only available on iOS 10.0 or newer
                [-Wunguarded-availability]
                + (UNMutableNotificationContent*)didReceiveNotificationExtensionRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                                                                                         ^
                In module 'UserNotifications' imported from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter/Flutter/FlutterPlugin.h:9:
                /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationRequest.h:16:12: note:
                'UNNotificationRequest' has been explicitly marked partial here
                @interface UNNotificationRequest : NSObject <NSCopying, NSSecureCoding>
                           ^
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.m:28:
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.h:29:
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:434:1: note: annotate 'didReceiveNotificationExtensionRequest:withMutableNotificationContent:' with an
                availability attribute to silence this warning
                + (UNMutableNotificationContent*)didReceiveNotificationExtensionRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                ^
                                                                                                                                                                                                         API_AVAILABLE(ios(10.0))
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:434:137: warning: 'UNMutableNotificationContent' is only available on iOS 10.0 or newer
                [-Wunguarded-availability]
                + (UNMutableNotificationContent*)didReceiveNotificationExtensionRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                                                                                                                                                        ^
                In module 'UserNotifications' imported from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter/Flutter/FlutterPlugin.h:9:
                /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h:60:12: note:
                'UNMutableNotificationContent' has been explicitly marked partial here
                @interface UNMutableNotificationContent : UNNotificationContent
                           ^
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.m:28:
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.h:29:
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:434:1: note: annotate 'didReceiveNotificationExtensionRequest:withMutableNotificationContent:' with an
                availability attribute to silence this warning
                + (UNMutableNotificationContent*)didReceiveNotificationExtensionRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                ^
                                                                                                                                                                                                         API_AVAILABLE(ios(10.0))
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:435:4: warning: 'UNMutableNotificationContent' is only available on iOS 10.0 or newer
                [-Wunguarded-availability]
                + (UNMutableNotificationContent*)serviceExtensionTimeWillExpireRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                   ^
                In module 'UserNotifications' imported from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter/Flutter/FlutterPlugin.h:9:
                /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h:60:12: note:
                'UNMutableNotificationContent' has been explicitly marked partial here
                @interface UNMutableNotificationContent : UNNotificationContent
                           ^
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.m:28:
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.h:29:
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:435:1: note: annotate 'serviceExtensionTimeWillExpireRequest:withMutableNotificationContent:' with an
                availability attribute to silence this warning
                + (UNMutableNotificationContent*)serviceExtensionTimeWillExpireRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                ^
                                                                                                                                                                                                        API_AVAILABLE(ios(10.0))
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:435:73: warning: 'UNNotificationRequest' is only available on iOS 10.0 or newer
                [-Wunguarded-availability]
                + (UNMutableNotificationContent*)serviceExtensionTimeWillExpireRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                                                                                        ^
                In module 'UserNotifications' imported from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter/Flutter/FlutterPlugin.h:9:
                /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationRequest.h:16:12: note:
                'UNNotificationRequest' has been explicitly marked partial here
                @interface UNNotificationRequest : NSObject <NSCopying, NSSecureCoding>
                           ^
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.m:28:
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.h:29:
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:435:1: note: annotate 'serviceExtensionTimeWillExpireRequest:withMutableNotificationContent:' with an
                availability attribute to silence this warning
                + (UNMutableNotificationContent*)serviceExtensionTimeWillExpireRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                ^
                                                                                                                                                                                                        API_AVAILABLE(ios(10.0))
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:435:136: warning: 'UNMutableNotificationContent' is only available on iOS 10.0 or newer
                [-Wunguarded-availability]
                + (UNMutableNotificationContent*)serviceExtensionTimeWillExpireRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                                                                                                                                                       ^
                In module 'UserNotifications' imported from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter/Flutter/FlutterPlugin.h:9:
                /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h:60:12: note:
                'UNMutableNotificationContent' has been explicitly marked partial here
                @interface UNMutableNotificationContent : UNNotificationContent
                           ^
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.m:28:
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.h:29:
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:435:1: note: annotate 'serviceExtensionTimeWillExpireRequest:withMutableNotificationContent:' with an
                availability attribute to silence this warning
                + (UNMutableNotificationContent*)serviceExtensionTimeWillExpireRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                ^
                                                                                                                                                                                                        API_AVAILABLE(ios(10.0))
                6 warnings generated.

                CompileC
                /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalTagsController.o
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalTagsController.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods
                    export LANG=en_US.US-ASCII
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11
                    -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600
                    -fbuild-session-file=/Users/madhubhaskar/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 -Wdocumentation -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 -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0
                    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations
                    -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version=2
                    -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-generated-files.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-own-target-headers.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-all-target-headers.hmap -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-project-headers.hmap
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private/onesignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources/x86_64
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -include /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\
                    Files/onesignal/onesignal-prefix.pch -MMD -MT dependencies -MF
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalTagsController
                    .d --serialize-diagnostics
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalTagsController
                    .dia -c /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalTagsController.m -o
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalTagsController
                    .o
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalTagsController.m:29:
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:434:4: warning: 'UNMutableNotificationContent' is only available on iOS 10.0 or newer
                [-Wunguarded-availability]
                + (UNMutableNotificationContent*)didReceiveNotificationExtensionRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                   ^
                In module 'UserNotifications' imported from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter/Flutter/FlutterPlugin.h:9:
                /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h:60:12: note:
                'UNMutableNotificationContent' has been explicitly marked partial here
                @interface UNMutableNotificationContent : UNNotificationContent
                           ^
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalTagsController.m:29:
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:434:1: note: annotate 'didReceiveNotificationExtensionRequest:withMutableNotificationContent:' with an
                availability attribute to silence this warning
                + (UNMutableNotificationContent*)didReceiveNotificationExtensionRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                ^
                                                                                                                                                                                                         API_AVAILABLE(ios(10.0))
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:434:74: warning: 'UNNotificationRequest' is only available on iOS 10.0 or newer
                [-Wunguarded-availability]
                + (UNMutableNotificationContent*)didReceiveNotificationExtensionRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                                                                                         ^
                In module 'UserNotifications' imported from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter/Flutter/FlutterPlugin.h:9:
                /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationRequest.h:16:12: note:
                'UNNotificationRequest' has been explicitly marked partial here
                @interface UNNotificationRequest : NSObject <NSCopying, NSSecureCoding>
                           ^
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalTagsController.m:29:
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:434:1: note: annotate 'didReceiveNotificationExtensionRequest:withMutableNotificationContent:' with an
                availability attribute to silence this warning
                + (UNMutableNotificationContent*)didReceiveNotificationExtensionRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                ^
                                                                                                                                                                                                         API_AVAILABLE(ios(10.0))
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:434:137: warning: 'UNMutableNotificationContent' is only available on iOS 10.0 or newer
                [-Wunguarded-availability]
                + (UNMutableNotificationContent*)didReceiveNotificationExtensionRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                                                                                                                                                        ^
                In module 'UserNotifications' imported from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter/Flutter/FlutterPlugin.h:9:
                /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h:60:12: note:
                'UNMutableNotificationContent' has been explicitly marked partial here
                @interface UNMutableNotificationContent : UNNotificationContent
                           ^
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalTagsController.m:29:
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:434:1: note: annotate 'didReceiveNotificationExtensionRequest:withMutableNotificationContent:' with an
                availability attribute to silence this warning
                + (UNMutableNotificationContent*)didReceiveNotificationExtensionRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                ^
                                                                                                                                                                                                         API_AVAILABLE(ios(10.0))
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:435:4: warning: 'UNMutableNotificationContent' is only available on iOS 10.0 or newer
                [-Wunguarded-availability]
                + (UNMutableNotificationContent*)serviceExtensionTimeWillExpireRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                   ^
                In module 'UserNotifications' imported from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter/Flutter/FlutterPlugin.h:9:
                /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h:60:12: note:
                'UNMutableNotificationContent' has been explicitly marked partial here
                @interface UNMutableNotificationContent : UNNotificationContent
                           ^
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalTagsController.m:29:
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:435:1: note: annotate 'serviceExtensionTimeWillExpireRequest:withMutableNotificationContent:' with an
                availability attribute to silence this warning
                + (UNMutableNotificationContent*)serviceExtensionTimeWillExpireRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                ^
                                                                                                                                                                                                        API_AVAILABLE(ios(10.0))
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:435:73: warning: 'UNNotificationRequest' is only available on iOS 10.0 or newer
                [-Wunguarded-availability]
                + (UNMutableNotificationContent*)serviceExtensionTimeWillExpireRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                                                                                        ^
                In module 'UserNotifications' imported from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter/Flutter/FlutterPlugin.h:9:
                /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationRequest.h:16:12: note:
                'UNNotificationRequest' has been explicitly marked partial here
                @interface UNNotificationRequest : NSObject <NSCopying, NSSecureCoding>
                           ^
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalTagsController.m:29:
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:435:1: note: annotate 'serviceExtensionTimeWillExpireRequest:withMutableNotificationContent:' with an
                availability attribute to silence this warning
                + (UNMutableNotificationContent*)serviceExtensionTimeWillExpireRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                ^
                                                                                                                                                                                                        API_AVAILABLE(ios(10.0))
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:435:136: warning: 'UNMutableNotificationContent' is only available on iOS 10.0 or newer
                [-Wunguarded-availability]
                + (UNMutableNotificationContent*)serviceExtensionTimeWillExpireRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                                                                                                                                                       ^
                In module 'UserNotifications' imported from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter/Flutter/FlutterPlugin.h:9:
                /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h:60:12: note:
                'UNMutableNotificationContent' has been explicitly marked partial here
                @interface UNMutableNotificationContent : UNNotificationContent
                           ^
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalTagsController.m:29:
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:435:1: note: annotate 'serviceExtensionTimeWillExpireRequest:withMutableNotificationContent:' with an
                availability attribute to silence this warning
                + (UNMutableNotificationContent*)serviceExtensionTimeWillExpireRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                ^
                                                                                                                                                                                                        API_AVAILABLE(ios(10.0))
                6 warnings generated.

                CompileC
                /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalCategories.o
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods
                    export LANG=en_US.US-ASCII
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11
                    -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600
                    -fbuild-session-file=/Users/madhubhaskar/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 -Wdocumentation -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 -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0
                    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations
                    -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version=2
                    -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-generated-files.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-own-target-headers.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-all-target-headers.hmap -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-project-headers.hmap
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private/onesignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources/x86_64
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -include /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\
                    Files/onesignal/onesignal-prefix.pch -MMD -MT dependencies -MF
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalCategories.d
                    --serialize-diagnostics
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalCategories.dia
                    -c /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.m -o
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalCategories.o
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.m:28:
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.h:28:
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:434:4: warning: 'UNMutableNotificationContent' is only available on iOS 10.0 or newer
                [-Wunguarded-availability]
                + (UNMutableNotificationContent*)didReceiveNotificationExtensionRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                   ^
                In module 'UserNotifications' imported from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:50:
                /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h:60:12: note:
                'UNMutableNotificationContent' has been explicitly marked partial here
                @interface UNMutableNotificationContent : UNNotificationContent
                           ^
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.m:28:
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.h:28:
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:434:1: note: annotate 'didReceiveNotificationExtensionRequest:withMutableNotificationContent:' with an
                availability attribute to silence this warning
                + (UNMutableNotificationContent*)didReceiveNotificationExtensionRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                ^
                                                                                                                                                                                                         API_AVAILABLE(ios(10.0))
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:434:74: warning: 'UNNotificationRequest' is only available on iOS 10.0 or newer
                [-Wunguarded-availability]
                + (UNMutableNotificationContent*)didReceiveNotificationExtensionRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                                                                                         ^
                In module 'UserNotifications' imported from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:50:
                /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationRequest.h:16:12: note:
                'UNNotificationRequest' has been explicitly marked partial here
                @interface UNNotificationRequest : NSObject <NSCopying, NSSecureCoding>
                           ^
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.m:28:
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.h:28:
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:434:1: note: annotate 'didReceiveNotificationExtensionRequest:withMutableNotificationContent:' with an
                availability attribute to silence this warning
                + (UNMutableNotificationContent*)didReceiveNotificationExtensionRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                ^
                                                                                                                                                                                                         API_AVAILABLE(ios(10.0))
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:434:137: warning: 'UNMutableNotificationContent' is only available on iOS 10.0 or newer
                [-Wunguarded-availability]
                + (UNMutableNotificationContent*)didReceiveNotificationExtensionRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                                                                                                                                                        ^
                In module 'UserNotifications' imported from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:50:
                /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h:60:12: note:
                'UNMutableNotificationContent' has been explicitly marked partial here
                @interface UNMutableNotificationContent : UNNotificationContent
                           ^
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.m:28:
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.h:28:
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:434:1: note: annotate 'didReceiveNotificationExtensionRequest:withMutableNotificationContent:' with an
                availability attribute to silence this warning
                + (UNMutableNotificationContent*)didReceiveNotificationExtensionRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                ^
                                                                                                                                                                                                         API_AVAILABLE(ios(10.0))
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:435:4: warning: 'UNMutableNotificationContent' is only available on iOS 10.0 or newer
                [-Wunguarded-availability]
                + (UNMutableNotificationContent*)serviceExtensionTimeWillExpireRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                   ^
                In module 'UserNotifications' imported from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:50:
                /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h:60:12: note:
                'UNMutableNotificationContent' has been explicitly marked partial here
                @interface UNMutableNotificationContent : UNNotificationContent
                           ^
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.m:28:
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.h:28:
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:435:1: note: annotate 'serviceExtensionTimeWillExpireRequest:withMutableNotificationContent:' with an
                availability attribute to silence this warning
                + (UNMutableNotificationContent*)serviceExtensionTimeWillExpireRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                ^
                                                                                                                                                                                                        API_AVAILABLE(ios(10.0))
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:435:73: warning: 'UNNotificationRequest' is only available on iOS 10.0 or newer
                [-Wunguarded-availability]
                + (UNMutableNotificationContent*)serviceExtensionTimeWillExpireRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                                                                                        ^
                In module 'UserNotifications' imported from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:50:
                /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationRequest.h:16:12: note:
                'UNNotificationRequest' has been explicitly marked partial here
                @interface UNNotificationRequest : NSObject <NSCopying, NSSecureCoding>
                           ^
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.m:28:
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.h:28:
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:435:1: note: annotate 'serviceExtensionTimeWillExpireRequest:withMutableNotificationContent:' with an
                availability attribute to silence this warning
                + (UNMutableNotificationContent*)serviceExtensionTimeWillExpireRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                ^
                                                                                                                                                                                                        API_AVAILABLE(ios(10.0))
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:435:136: warning: 'UNMutableNotificationContent' is only available on iOS 10.0 or newer
                [-Wunguarded-availability]
                + (UNMutableNotificationContent*)serviceExtensionTimeWillExpireRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                                                                                                                                                       ^
                In module 'UserNotifications' imported from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:50:
                /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h:60:12: note:
                'UNMutableNotificationContent' has been explicitly marked partial here
                @interface UNMutableNotificationContent : UNNotificationContent
                           ^
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.m:28:
                In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.h:28:
                /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:435:1: note: annotate 'serviceExtensionTimeWillExpireRequest:withMutableNotificationContent:' with an
                availability attribute to silence this warning
                + (UNMutableNotificationContent*)serviceExtensionTimeWillExpireRequest:(UNNotificationRequest*)request withMutableNotificationContent:(UNMutableNotificationContent*)replacementContent;
                ^
                                                                                                                                                                                                        API_AVAILABLE(ios(10.0))
                6 warnings generated.

                CompileC /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/onesignal-dummy.o
                Target\ Support\ Files/onesignal/onesignal-dummy.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods
                    export LANG=en_US.US-ASCII
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11
                    -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600
                    -fbuild-session-file=/Users/madhubhaskar/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 -Wdocumentation -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 -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0
                    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations
                    -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version=2
                    -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-generated-files.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-own-target-headers.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-all-target-headers.hmap -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-project-headers.hmap
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private/onesignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources/x86_64
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -include /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\
                    Files/onesignal/onesignal-prefix.pch -MMD -MT dependencies -MF
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/onesignal-dummy.d
                    --serialize-diagnostics
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/onesignal-dummy.dia -c
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\ Files/onesignal/onesignal-dummy.m -o
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/onesignal-dummy.o

                Libtool /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal/libonesignal.a normal x86_64
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods
                    export IPHONEOS_DEPLOYMENT_TARGET=8.0
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only x86_64 -syslibroot
                    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
                    -L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -filelist
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/onesignal.LinkFileList
                    -o /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal/libonesignal.a

                === BUILD TARGET Pods-OneSignalNotificationServiceExtension OF PROJECT Pods WITH CONFIGURATION Debug ===
                Check dependencies

                CompileC
                /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-OneSignalNotificationServiceExtension.build/Objects-normal/x
                86_64/Pods-OneSignalNotificationServiceExtension-dummy.o Target\ Support\ Files/Pods-OneSignalNotificationServiceExtension/Pods-OneSignalNotificationServiceExtension-dummy.m normal x86_64 objective-c
                com.apple.compilers.llvm.clang.1_0.compiler
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods
                    export LANG=en_US.US-ASCII
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11
                    -fobjc-arc -fmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600
                    -fbuild-session-file=/Users/madhubhaskar/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 -fapplication-extension -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wdocumentation
                    -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 -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1
                    -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol
                    -Wdeprecated-declarations -mios-simulator-version-min=10.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body
                    -Wunguarded-availability -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-OneSignalNotificationServiceExtension.build/Pods-OneSign
                    alNotificationServiceExtension-generated-files.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-OneSignalNotificationServiceExtension.build/Pods-OneSi
                    gnalNotificationServiceExtension-own-target-headers.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-OneSignalNotificationServiceExtension.build/Pods-OneSi
                    gnalNotificationServiceExtension-all-target-headers.hmap -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-OneSignalNotificationServiceExtension.build/Pods-OneSign
                    alNotificationServiceExtension-project-headers.hmap -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/include
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-OneSignalNotificationServiceExtension.build/DerivedSou
                    rces/x86_64
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-OneSignalNotificationServiceExtension.build/DerivedSou
                    rces -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework
                    -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -isystem
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -MMD -MT dependencies
                    -MF
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-OneSignalNotificationServiceExtension.build/Objects-norm
                    al/x86_64/Pods-OneSignalNotificationServiceExtension-dummy.d --serialize-diagnostics
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-OneSignalNotificationServiceExtension.build/Objects-norm
                    al/x86_64/Pods-OneSignalNotificationServiceExtension-dummy.dia -c /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\
                    Files/Pods-OneSignalNotificationServiceExtension/Pods-OneSignalNotificationServiceExtension-dummy.m -o
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-OneSignalNotificationServiceExtension.build/Objects-norm
                    al/x86_64/Pods-OneSignalNotificationServiceExtension-dummy.o

                Libtool /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/libPods-OneSignalNotificationServiceExtension.a normal x86_64
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods
                    export IPHONEOS_DEPLOYMENT_TARGET=10.0
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only x86_64 -syslibroot
                    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
                    -filelist
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-OneSignalNotificationServiceExtension.build/Objects-norm
                    al/x86_64/Pods-OneSignalNotificationServiceExtension.LinkFileList -o /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/libPods-OneSignalNotificationServiceExtension.a

                === BUILD TARGET Pods-Runner OF PROJECT Pods WITH CONFIGURATION Debug ===
                Check dependencies

                CompileC
                /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-Runner.build/Objects-normal/x86_64/Pods-Runner-dummy.o
                Target\ Support\ Files/Pods-Runner/Pods-Runner-dummy.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods
                    export LANG=en_US.US-ASCII
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11
                    -fobjc-arc -fmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600
                    -fbuild-session-file=/Users/madhubhaskar/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 -Wdocumentation -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 -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0
                    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations
                    -mios-simulator-version-min=10.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability
                    -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-Runner.build/Pods-Runner-generated-files.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-Runner.build/Pods-Runner-own-target-headers.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-Runner.build/Pods-Runner-all-target-headers.hmap
                    -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-Runner.build/Pods-Runner-project-headers.hmap
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-Runner.build/DerivedSources/x86_64
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-Runner.build/DerivedSources
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -isystem
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -isystem
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -MMD -MT dependencies -MF
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-Runner.build/Objects-normal/x86_64/Pods-Runner-dummy.d
                    --serialize-diagnostics
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-Runner.build/Objects-normal/x86_64/Pods-Runner-dummy.dia
                    -c /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\ Files/Pods-Runner/Pods-Runner-dummy.m -o
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-Runner.build/Objects-normal/x86_64/Pods-Runner-dummy.o

                Libtool /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/libPods-Runner.a normal x86_64
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods
                    export IPHONEOS_DEPLOYMENT_TARGET=10.0
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only x86_64 -syslibroot
                    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
                    -L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -filelist
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-Runner.build/Objects-normal/x86_64/Pods-Runner.LinkFileL
                    ist -o /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/libPods-Runner.a

                === BUILD TARGET OneSignalNotificationServiceExtension OF PROJECT Runner WITH CONFIGURATION Debug ===
                Check dependencies

                Create product structure
                /bin/mkdir -p /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex

                ProcessInfoPlistFile /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex/Info.plist OneSignalNotificationServiceExtension/Info.plist
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    builtin-infoPlistUtility /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/OneSignalNotificationServiceExtension/Info.plist -expandbuildsettings -format binary -platform iphonesimulator -o
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex/Info.plist

                PhaseScriptExecution [CP]\ Check\ Pods\ Manifest.lock
                /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/Script-BD6078845B63
                427256C7AAD2.sh
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
                    /bin/sh -c
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/Script-BD607884
                    5B63427256C7AAD2.sh

                Ld /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex/OneSignalNotificationServiceExtension normal x86_64
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
                    export IPHONEOS_DEPLOYMENT_TARGET=11.0
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot
                    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
                    -L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -filelist
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/Objects-normal/
                    x86_64/OneSignalNotificationServiceExtension.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @executable_path/Frameworks
                    -Xlinker -rpath -Xlinker @executable_path/../../Frameworks -mios-simulator-version-min=11.0 -dead_strip -Xlinker -object_path_lto -Xlinker
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/Objects-normal/
                    x86_64/OneSignalNotificationServiceExtension_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -fapplication-extension -ObjC -lonesignal
                    -framework Flutter -framework OneSignal -framework SystemConfiguration -framework UIKit -framework UserNotifications -ObjC -framework OneSignal -framework SystemConfiguration -framework UIKit -framework
                    UserNotifications -e _NSExtensionMain -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/OneSignalNotifi
                    cationServiceExtension.appex-Simulated.xcent -framework UserNotifications -framework UIKit -framework SystemConfiguration -lPods-OneSignalNotificationServiceExtension -Xlinker -dependency_info -Xlinker
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/Objects-normal/
                    x86_64/OneSignalNotificationServiceExtension_dependency_info.dat -o
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex/OneSignalNotificationServiceExtension
                ld: warning: linking against a dylib which is not safe for use in application extensions: /Users/madhubhaskar/Desktop/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Flutter

                Touch /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    /usr/bin/touch -c /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex

                CodeSign /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
                    export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"

                Signing Identity:     "-"

                    /usr/bin/codesign --force --sign - --entitlements
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/OneSignalNotifi
                    cationServiceExtension.appex.xcent --timestamp=none /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex

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

                Check dependencies
                Code Signing Warning: Capabilities for Runner may not function correctly because its entitlements use a placeholder team ID. To resolve this, select a development team in the build settings editor.

                Create product structure
                /bin/mkdir -p /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/Runner.app
                /bin/mkdir -p /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/Runner.app/PlugIns

                ProcessProductPackaging ""
                /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"

                Entitlements:

                {
                    "application-identifier" = "FAKETEAMID.com.testapp.brad";
                    "aps-environment" = development;
                    "com.apple.security.application-groups" =     (
                        "group.com.testapp.brad.onesignal"
                    );
                }

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

                PhaseScriptExecution [CP]\ Check\ Pods\ Manifest.lock
                /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-55814C1A564E962A1F2101FE.sh
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
                    /bin/sh -c /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-55814C1A564E962A1F2101FE.sh

                PhaseScriptExecution Run\ Script
                /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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=madhubhaskar
                    export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
                    export ALWAYS_SEARCH_USER_PATHS=NO
                    export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
                    export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
                    export APPLE_INTERNAL_DIR=/AppleInternal
                    export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
                    export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
                    export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
                    export APPLICATION_EXTENSION_API_ONLY=NO
                    export APPLY_RULES_IN_COPY_FILES=NO
                    export ARCHS=x86_64
                    export ARCHS_STANDARD="i386 x86_64"
                    export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
                    export ARCHS_STANDARD_32_BIT=i386
                    export ARCHS_STANDARD_64_BIT=x86_64
                    export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
                    export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
                    export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
                    export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
                    export BITCODE_GENERATION_MODE=marker
                    export BUILD_ACTIVE_RESOURCES_ONLY=YES
                    export BUILD_COMPONENTS="headers build"
                    export BUILD_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios
                    export BUILD_ROOT=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Products
                    export BUILD_STYLE=
                    export BUILD_VARIANTS=normal
                    export BUILT_PRODUCTS_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
                    export CACHE_ROOT=/var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/C/com.apple.DeveloperTools/10.1-10B61/Xcode
                    export CCHROOT=/var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/C/com.apple.DeveloperTools/10.1-10B61/Xcode
                    export CHMOD=/bin/chmod
                    export CHOWN=/usr/sbin/chown
                    export CLANG_ANALYZER_NONNULL=YES
                    export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
                    export CLANG_CXX_LIBRARY=libc++
                    export CLANG_ENABLE_MODULES=YES
                    export CLANG_ENABLE_OBJC_ARC=YES
                    export CLANG_MODULES_BUILD_SESSION_FILE=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
                    export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
                    export CLANG_WARN_BOOL_CONVERSION=YES
                    export CLANG_WARN_COMMA=YES
                    export CLANG_WARN_CONSTANT_CONVERSION=YES
                    export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
                    export CLANG_WARN_EMPTY_BODY=YES
                    export CLANG_WARN_ENUM_CONVERSION=YES
                    export CLANG_WARN_INFINITE_RECURSION=YES
                    export CLANG_WARN_INT_CONVERSION=YES
                    export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
                    export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
                    export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
                    export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
                    export CLANG_WARN_STRICT_PROTOTYPES=YES
                    export CLANG_WARN_SUSPICIOUS_MOVE=YES
                    export CLANG_WARN_UNREACHABLE_CODE=YES
                    export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
                    export CLASS_FILE_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
                    export CLEAN_PRECOMPS=YES
                    export CLONE_HEADERS=NO
                    export CODESIGNING_FOLDER_PATH=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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_ENTITLEMENTS=Runner/Runner.entitlements
                    export CODE_SIGN_IDENTITY="iPhone Developer"
                    export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
                    export CODE_SIGN_STYLE=Manual
                    export COLOR_DIAGNOSTICS=NO
                    export COMBINE_HIDPI_IMAGES=NO
                    export COMMAND_MODE=legacy
                    export COMPILER_INDEX_STORE_ENABLE=Default
                    export COMPOSITE_SDK_DIRS=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/CompositeSDKs
                    export COMPRESS_PNG_FILES=YES
                    export CONFIGURATION=Debug
                    export CONFIGURATION_BUILD_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
                    export CONFIGURATION_TEMP_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
                    export CONTENTS_FOLDER_PATH=Runner.app
                    export COPYING_PRESERVES_HFS_DATA=NO
                    export COPY_HEADERS_RUN_UNIFDEF=NO
                    export COPY_PHASE_STRIP=NO
                    export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
                    export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
                    export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
                    export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.1.sdk
                    export CORRESPONDING_DEVICE_SDK_NAME=iphoneos12.1
                    export CP=/bin/cp
                    export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
                    export CURRENT_ARCH=x86_64
                    export CURRENT_PROJECT_VERSION=1
                    export CURRENT_VARIANT=normal
                    export DEAD_CODE_STRIPPING=YES
                    export DEBUGGING_SYMBOLS=YES
                    export DEBUG_INFORMATION_FORMAT=dwarf
                    export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
                    export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
                    export DEFINES_MODULE=NO
                    export DEPLOYMENT_LOCATION=NO
                    export DEPLOYMENT_POSTPROCESSING=NO
                    export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
                    export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
                    export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
                    export DEPLOYMENT_TARGET_LD_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
                    export DEPLOYMENT_TARGET_LD_FLAG_NAME=ios_simulator_version_min
                    export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
                    export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1"
MadhuSudhanBhaskar commented 5 years ago
                  export DERIVED_FILES_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
                    export DERIVED_FILE_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
                    export DERIVED_SOURCES_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
                    export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
                    export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
                    export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
                    export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
                    export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
                    export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
                    export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
                    export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
                    export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
                    export DEVELOPMENT_LANGUAGE=English
                    export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
                    export DO_HEADER_SCANNING_IN_JAM=NO
                    export DSTROOT=/tmp/Runner.dst
                    export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
                    export DWARF_DSYM_FILE_NAME=Runner.app.dSYM
                    export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
                    export DWARF_DSYM_FOLDER_PATH=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
                    export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
                    export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
                    export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
                    export ENABLE_BITCODE=NO
                    export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
                    export ENABLE_HEADER_DEPENDENCIES=YES
                    export ENABLE_ON_DEMAND_RESOURCES=YES
                    export ENABLE_STRICT_OBJC_MSGSEND=YES
                    export ENABLE_TESTABILITY=YES
                    export ENTITLEMENTS_DESTINATION=__entitlements
                    export ENTITLEMENTS_REQUIRED=YES
                    export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
                    export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
                    export EXECUTABLES_FOLDER_PATH=Runner.app/Executables
                    export EXECUTABLE_FOLDER_PATH=Runner.app
                    export EXECUTABLE_NAME=Runner
                    export EXECUTABLE_PATH=Runner.app/Runner
                    export EXPANDED_CODE_SIGN_IDENTITY=-
                    export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
                    export EXPANDED_PROVISIONING_PROFILE=
                    export FILE_LIST=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
                    export FIXED_FILES_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
                    export FLUTTER_APPLICATION_PATH=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example
                    export FLUTTER_BUILD_DIR=build
                    export FLUTTER_FRAMEWORK_DIR=/Users/madhubhaskar/Desktop/flutter/bin/cache/artifacts/engine/ios
                    export FLUTTER_ROOT=/Users/madhubhaskar/Desktop/flutter
                    export FLUTTER_TARGET=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/lib/main.dart
                    export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
                    export FRAMEWORK_FLAG_PREFIX=-framework
                    export FRAMEWORK_SEARCH_PATHS="/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework"
                    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  COCOAPODS=1 COCOAPODS=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/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/include /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal"
                    export HIDE_BITCODE_SYMBOLS=YES
                    export HOME=/Users/madhubhaskar
                    export ICONV=/usr/bin/iconv
                    export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
                    export INFOPLIST_FILE=Runner/Info.plist
                    export INFOPLIST_OUTPUT_FORMAT=binary
                    export INFOPLIST_PATH=Runner.app/Info.plist
                    export INFOPLIST_PREPROCESS=NO
                    export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings
                    export INLINE_PRIVATE_FRAMEWORKS=NO
                    export INSTALLHDRS_COPY_PHASE=NO
                    export INSTALLHDRS_SCRIPT_PHASE=NO
                    export INSTALL_DIR=/tmp/Runner.dst/Applications
                    export INSTALL_GROUP=staff
                    export INSTALL_MODE_FLAG=u+w,go-w,a+rX
                    export INSTALL_OWNER=madhubhaskar
                    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/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/
                    Runner_dependency_info.dat
                    export LD_GENERATE_MAP_FILE=NO
                    export
                    LD_MAP_FILE_PATH=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.
                    txt
                    export LD_NO_PIE=NO
                    export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
                    export LD_RUNPATH_SEARCH_PATHS=" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks"
                    export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
                    export LEX=lex
                    export LIBRARY_FLAG_NOSPACE=YES
                    export LIBRARY_FLAG_PREFIX=-l
                    export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
                    export LIBRARY_SEARCH_PATHS="/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal"
                    export LINKER_DISPLAYS_MANGLED_NAMES=NO
                    export
                    LINK_FILE_LIST_normal_x86_64=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x8
                    6_64/Runner.LinkFileList
                    export LINK_WITH_STANDARD_LIBRARIES=YES
                    export LLVM_TARGET_TRIPLE_SUFFIX=-simulator
                    export LOCALIZABLE_CONTENT_DIR=
                    export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
                    export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString"
                    export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
                    export LOCAL_APPS_DIR=/Applications
                    export LOCAL_DEVELOPER_DIR=/Library/Developer
                    export LOCAL_LIBRARY_DIR=/Library
                    export LOCROOT=
                    export LOCSYMROOT=
                    export MACH_O_TYPE=mh_execute
                    export MAC_OS_X_PRODUCT_BUILD_VERSION=18A391
                    export MAC_OS_X_VERSION_ACTUAL=101400
                    export MAC_OS_X_VERSION_MAJOR=101400
                    export MAC_OS_X_VERSION_MINOR=1400
                    export METAL_LIBRARY_FILE_BASE=default
                    export METAL_LIBRARY_OUTPUT_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/Runner.app
                    export MODULE_CACHE_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
                    export MTL_ENABLE_DEBUG_INFO=YES
                    export NATIVE_ARCH=i386
                    export NATIVE_ARCH_32_BIT=i386
                    export NATIVE_ARCH_64_BIT=x86_64
                    export NATIVE_ARCH_ACTUAL=x86_64
                    export NO_COMMON=YES
                    export OBJC_ABI_VERSION=2
                    export OBJECT_FILE_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
                    export OBJECT_FILE_DIR_normal=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
                    export OBJROOT=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex
                    export ONLY_ACTIVE_ARCH=YES
                    export OS=MACOS
                    export OSAC=/usr/bin/osacompile
                    export OTHER_CFLAGS=" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public\" -isystem
                    \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter\" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal\" -isystem
                    \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal\" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public\" -isystem
                    \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter\" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal\" -isystem
                    \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal\""
                    export OTHER_CPLUSPLUSFLAGS=" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public\" -isystem
                    \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter\" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal\" -isystem
                    \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal\" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public\" -isystem
                    \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter\" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal\" -isystem
                    \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal\""
                    export OTHER_LDFLAGS=" -ObjC -l\"onesignal\" -framework \"Flutter\" -framework \"OneSignal\" -framework \"SystemConfiguration\" -framework \"UIKit\" -framework \"UserNotifications\" -ObjC -l\"onesignal\" -framework
                    \"Flutter\" -framework \"OneSignal\" -framework \"SystemConfiguration\" -framework \"UIKit\" -framework \"UserNotifications\""
                    export PACKAGE_TYPE=com.apple.package-type.wrapper.application
                    export PASCAL_STRINGS=YES
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Cont
                    ents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iP
                    honeSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr
                    /local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/
                    Desktop/flutter/bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers
                    /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
                    export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist
                    export PFE_FILE_C_DIALECTS=objective-c
                    export PKGINFO_FILE_PATH=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
                    export PKGINFO_PATH=Runner.app/PkgInfo
                    export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
                    export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
                    export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
                    export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
                    export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
                    export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
                    export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
                    export PLATFORM_DISPLAY_NAME="iOS Simulator"
                    export PLATFORM_NAME=iphonesimulator
                    export PLATFORM_PREFERRED_ARCH=x86_64
                    export PLIST_FILE_OUTPUT_FORMAT=binary
                    export PLUGINS_FOLDER_PATH=Runner.app/PlugIns
                    export PODS_BUILD_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios
                    export PODS_CONFIGURATION_BUILD_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
                    export PODS_PODFILE_DIR_PATH=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/.
                    export PODS_ROOT=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods
                    export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
                    export PRECOMP_DESTINATION_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/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.testapp.brad
                    export PRODUCT_MODULE_NAME=Runner
                    export PRODUCT_NAME=Runner
                    export PRODUCT_SETTINGS_PATH=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/DerivedSources
                    export PROJECT_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
                    export PROJECT_FILE_PATH=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner.xcodeproj
                    export PROJECT_NAME=Runner
                    export PROJECT_TEMP_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build
                    export PROJECT_TEMP_ROOT=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/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/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
                    export
                    REZ_OBJECTS_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objec
                    ts
                    export REZ_SEARCH_PATHS="/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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/7k/rplqnssn1qv_jbkxfvm556pr0000gn/T/flutter_build_log_pipe.iw8DF5/pipe_to_stdout
                    export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
                    export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
                    export SDK_DIR_iphonesimulator12_1=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
                    export SDK_NAME=iphonesimulator12.1
                    export SDK_NAMES=iphonesimulator12.1
                    export SDK_PRODUCT_BUILD_VERSION=16B91
                    export SDK_VERSION=12.1
                    export SDK_VERSION_ACTUAL=120100
                    export SDK_VERSION_MAJOR=120000
                    export SDK_VERSION_MINOR=100
                    export SED=/usr/bin/sed
                    export SEPARATE_STRIP=NO
                    export SEPARATE_SYMBOL_EDIT=NO
                    export SET_DIR_MODE_OWNER_GROUP=YES
                    export SET_FILE_MODE_OWNER_GROUP=NO
                    export SHALLOW_BUNDLE=YES
                    export SHARED_DERIVED_FILE_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/DerivedSources
                    export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
                    export SHARED_PRECOMPS_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/PrecompiledHeaders
                    export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
                    export SKIP_INSTALL=NO
                    export SOURCE_ROOT=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
                    export SRCROOT=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
                    export STRINGS_FILE_OUTPUT_ENCODING=binary
                    export STRIP_BITCODE_FROM_COPIED_FILES=NO
                    export STRIP_INSTALLED_PRODUCT=YES
                    export STRIP_STYLE=all
                    export STRIP_SWIFT_SYMBOLS=YES
                    export SUPPORTED_DEVICE_FAMILIES=1,2
                    export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
                    export SUPPORTS_TEXT_BASED_API=NO
                    export SWIFT_PLATFORM_TARGET_PREFIX=ios
                    export SYMROOT=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Products
                    export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
                    export SYSTEM_APPS_DIR=/Applications
                    export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
                    export SYSTEM_DEMOS_DIR=/Applications/Extras
                    export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
                    export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
                    export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
                    export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
                    export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
                    export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
                    export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
                    export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
                    export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
                    export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
                    export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
                    export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
                    export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
                    export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
                    export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
                    export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
                    export SYSTEM_LIBRARY_DIR=/System/Library
                    export TAPI_VERIFY_MODE=ErrorsOnly
                    export TARGETED_DEVICE_FAMILY=1,2
                    export TARGETNAME=Runner
                    export TARGET_BUILD_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
                    export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder"
                    export TARGET_NAME=Runner
                    export TARGET_TEMP_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
                    export TEMP_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
                    export TEMP_FILES_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
                    export TEMP_FILE_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
                    export TEMP_ROOT=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex
                    export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
                    export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
                    export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
                    export UID=501
                    export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
                    export UNSTRIPPED_PRODUCT=NO
                    export USER=madhubhaskar
                    export USER_APPS_DIR=/Users/madhubhaskar/Applications
                    export USER_LIBRARY_DIR=/Users/madhubhaskar/Library
                    export USE_DYNAMIC_NO_PIC=YES
                    export USE_HEADERMAP=YES
                    export USE_HEADER_SYMLINKS=NO
                    export VALIDATE_PRODUCT=NO
                    export VALID_ARCHS="i386 x86_64"
                    export VERBOSE_PBXCP=NO
                    export VERBOSE_SCRIPT_LOGGING=YES
                    export VERSIONING_SYSTEM=apple-generic
                    export VERSIONPLIST_PATH=Runner.app/version.plist
                    export VERSION_INFO_BUILDER=madhubhaskar
                    export VERSION_INFO_FILE=Runner_vers.c
                    export VERSION_INFO_STRING="\"@(#)PROGRAM:Runner  PROJECT:Runner-1\""
                    export WRAPPER_EXTENSION=app
                    export WRAPPER_NAME=Runner.app
                    export WRAPPER_SUFFIX=.app
                    export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
                    export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
                    export XCODE_PRODUCT_BUILD_VERSION=10B61
                    export XCODE_VERSION_ACTUAL=1010
                    export XCODE_VERSION_MAJOR=1000
                    export XCODE_VERSION_MINOR=1010
                    export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
                    export YACC=yacc
                    export arch=x86_64
                    export variant=normal
                    /bin/sh -c /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
                ♦ mkdir -p -- /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Flutter
                ♦ rm -rf -- /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Flutter/App.framework
                ♦ rm -rf -- /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Flutter/Flutter.framework
                ♦ cp -r -- /Users/madhubhaskar/Desktop/flutter/bin/cache/artifacts/engine/ios/Flutter.framework /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Flutter
                ♦ find /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Flutter/Flutter.framework -type f -exec chmod a-w {} ;
                ♦ mkdir -p -- /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Flutter/App.framework
                ♦ eval 
                ♦ cp -- /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Flutter/AppFrameworkInfo.plist /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Flutter/App.framework/Info.plist
                ♦ /Users/madhubhaskar/Desktop/flutter/bin/flutter --suppress-analytics --verbose build bundle --target-platform=ios --target=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/lib/main.dart --debug
                --depfile=build/snapshot_blob.bin.d --asset-dir=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Flutter/flutter_assets
                [   +7 ms] executing: [/Users/madhubhaskar/Desktop/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
                [  +40 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
                [        ] origin/beta
                [        ] executing: [/Users/madhubhaskar/Desktop/flutter/] git rev-parse --abbrev-ref HEAD
                [   +6 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
                [        ] beta
                [        ] executing: [/Users/madhubhaskar/Desktop/flutter/] git ls-remote --get-url origin
                [   +6 ms] Exit code 0 from: git ls-remote --get-url origin
                [        ] https://github.com/flutter/flutter.git
                [        ] executing: [/Users/madhubhaskar/Desktop/flutter/] git log -n 1 --pretty=format:%H
                [   +7 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
                [        ] d48e6e433cc5ca67b24b19f70aaa197e84ba63c1
                [   +2 ms] executing: [/Users/madhubhaskar/Desktop/flutter/] git log -n 1 --pretty=format:%ar
                [   +7 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
                [        ] 18 hours ago
                [        ] executing: [/Users/madhubhaskar/Desktop/flutter/] git describe --match v*.*.* --first-parent --long --tags
                [   +9 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
                [        ] v0.11.9-0-gd48e6e433c
                [ +265 ms] Found plugin onesignal at /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/
                [  +62 ms] Found plugin onesignal at /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/
                [ +360 ms] Skipping kernel compilation. Fingerprint match.
                [ +138 ms] Building bundle
                [   +1 ms] Writing asset files to /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Flutter/flutter_assets
                [  +49 ms] Wrote /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Flutter/flutter_assets
                [   +8 ms] "flutter bundle" took 761ms.
                Project /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example built and packaged successfully.

                CompileC /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o
                Runner/AppDelegate.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
                    export LANG=en_US.US-ASCII
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99
                    -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600
                    -fbuild-session-file=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module
                    -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code
                    -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch
                    -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants
                    -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign
                    -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DCOCOAPODS=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot
                    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations
                    -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch
                    -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -isystem
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -isystem
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -isystem
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -isystem
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -MMD -MT dependencies -MF
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.d
                    --serialize-diagnostics
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.dia -c
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner/AppDelegate.m -o
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o

                CompileC /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o
                Runner/main.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
                    export LANG=en_US.US-ASCII
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99
                    -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600
                    -fbuild-session-file=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module
                    -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code
                    -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch
                    -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants
                    -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign
                    -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DCOCOAPODS=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot
                    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations
                    -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch
                    -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -isystem
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -isystem
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -isystem
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -isystem
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -MMD -MT dependencies -MF
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.d
                    --serialize-diagnostics
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.dia -c
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner/main.m -o
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o

                CompileC
                /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o
                Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
                    export LANG=en_US.US-ASCII
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99
                    -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600
                    -fbuild-session-file=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module
                    -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code
                    -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch
                    -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants
                    -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign
                    -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DCOCOAPODS=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot
                    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations
                    -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch
                    -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -isystem
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -isystem
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -isystem
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -isystem
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -MMD -MT dependencies -MF
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistran
                    t.d --serialize-diagnostics
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistran
                    t.dia -c /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner/GeneratedPluginRegistrant.m -o
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistran
                    t.o

                CompileC /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.o
                /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c normal x86_64 c
                com.apple.compilers.llvm.clang.1_0.compiler
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
                    export LANG=en_US.US-ASCII
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fmodules
                    -gmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600
                    -fbuild-session-file=/Users/madhubhaskar/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
                    -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -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 -DDEBUG=1 -DCOCOAPODS=1 -DCOCOAPODS=1 -isysroot
                    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g
                    -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal
                    -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64
                    -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -isystem
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -isystem
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -isystem
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -isystem
                    /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -MMD -MT dependencies -MF
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.d
                    --serialize-diagnostics
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.dia -c
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c -o
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.o

                Ld /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64
                    cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
                    export IPHONEOS_DEPLOYMENT_TARGET=8.0
                    export
                    PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter
                    /bin:/Users/madhubhaskar/Desktop/flutter/bin"
                    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot
                    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
                    -L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
                    -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -filelist
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
                    -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker
                    -rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=8.0 -dead_strip -Xlinker -object_path_lto -Xlinker
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/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 -ObjC -lonesignal -framework Flutter -framework OneSignal -framework SystemConfiguration -framework
                    UIKit -framework UserNotifications -ObjC -lonesignal -framework Flutter -framework OneSignal -framework SystemConfiguration -framework UIKit -framework UserNotifications -Xlinker -sectcreate -Xlinker __TEXT
                    -Xlinker __entitlements -Xlinker
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent -framework Flutter
                    -framework App -lPods-Runner -Xlinker -dependency_info -Xlinker
                    /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.d
                    at -o /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/Runner.app/Runner
                ld: framework not found App
                clang: error: linker command failed with exit code 1 (use -v to see invocation)

                ** BUILD FAILED **

                The following build commands failed:
                    Ld /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64
                (1 failure)

[ +115 ms] └─Compiling, linking and signing... (completed) [ ] Starting Xcode build... (completed) [ +13 ms] Xcode build done. 4.9s [ ] executing: [/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/T/flutter_build_log_pipe.iw8DF5/pipe_to_stdout -showBuildSettings [+1402 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/T/flutter_build_log_pipe.iw8DF5/pipe_to_stdout -showBuildSettings [ +1 ms] Build settings from command line: ARCHS = x86_64 BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios SCRIPT_OUTPUT_STREAM_FILE = /var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/T/flutter_build_log_pipe.iw8DF5/pipe_to_stdout SDKROOT = iphonesimulator12.1 VERBOSE_SCRIPT_LOGGING = YES

       Build settings for action build and target Runner:
           ACTION = build
           AD_HOC_CODE_SIGNING_ALLOWED = YES
           ALTERNATE_GROUP = staff
           ALTERNATE_MODE = u+w,go-w,a+rX
           ALTERNATE_OWNER = madhubhaskar
           ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
           ALWAYS_SEARCH_USER_PATHS = NO
           ALWAYS_USE_SEPARATE_HEADERMAPS = NO
           APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
           APPLE_INTERNAL_DIR = /AppleInternal
           APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
           APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
           APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
           APPLICATION_EXTENSION_API_ONLY = NO
           APPLY_RULES_IN_COPY_FILES = NO
           ARCHS = x86_64
           ARCHS_STANDARD = i386 x86_64
           ARCHS_STANDARD_32_64_BIT = i386 x86_64
           ARCHS_STANDARD_32_BIT = i386
           ARCHS_STANDARD_64_BIT = x86_64
           ARCHS_STANDARD_INCLUDING_64_BIT = i386 x86_64
           ARCHS_UNIVERSAL_IPHONE_OS = i386 x86_64
           ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
           AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
           BITCODE_GENERATION_MODE = marker
           BUILD_ACTIVE_RESOURCES_ONLY = NO
           BUILD_COMPONENTS = headers build
           BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios
           BUILD_ROOT = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Products
           BUILD_STYLE = 
           BUILD_VARIANTS = normal
           BUILT_PRODUCTS_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
           CACHE_ROOT = /var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/C/com.apple.DeveloperTools/10.1-10B61/Xcode
           CCHROOT = /var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/C/com.apple.DeveloperTools/10.1-10B61/Xcode
           CHMOD = /bin/chmod
           CHOWN = /usr/sbin/chown
           CLANG_ANALYZER_NONNULL = YES
           CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
           CLANG_CXX_LIBRARY = libc++
           CLANG_ENABLE_MODULES = YES
           CLANG_ENABLE_OBJC_ARC = YES
           CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
           CLANG_WARN_BOOL_CONVERSION = YES
           CLANG_WARN_COMMA = YES
           CLANG_WARN_CONSTANT_CONVERSION = YES
           CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
           CLANG_WARN_EMPTY_BODY = YES
           CLANG_WARN_ENUM_CONVERSION = YES
           CLANG_WARN_INFINITE_RECURSION = YES
           CLANG_WARN_INT_CONVERSION = YES
           CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
           CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
           CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
           CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
           CLANG_WARN_STRICT_PROTOTYPES = YES
           CLANG_WARN_SUSPICIOUS_MOVE = YES
           CLANG_WARN_UNREACHABLE_CODE = YES
           CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
           CLASS_FILE_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
           CLEAN_PRECOMPS = YES
           CLONE_HEADERS = NO
           CODESIGNING_FOLDER_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/Runner.app
           CODE_SIGNING_ALLOWED = YES
           CODE_SIGNING_REQUIRED = YES
           CODE_SIGN_CONTEXT_CLASS = XCiPhoneSimulatorCodeSignContext
           CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements
           CODE_SIGN_IDENTITY = iPhone Developer
           CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
           CODE_SIGN_STYLE = Manual
           COLOR_DIAGNOSTICS = NO
           COMBINE_HIDPI_IMAGES = NO
           COMPILER_INDEX_STORE_ENABLE = Default
           COMPOSITE_SDK_DIRS = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/CompositeSDKs
           COMPRESS_PNG_FILES = YES
           CONFIGURATION = Debug
           CONFIGURATION_BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
           CONFIGURATION_TEMP_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
           CONTENTS_FOLDER_PATH = Runner.app
           COPYING_PRESERVES_HFS_DATA = NO
           COPY_HEADERS_RUN_UNIFDEF = NO
           COPY_PHASE_STRIP = NO
           COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
           CORRESPONDING_DEVICE_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
           CORRESPONDING_DEVICE_PLATFORM_NAME = iphoneos
           CORRESPONDING_DEVICE_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.1.sdk
           CORRESPONDING_DEVICE_SDK_NAME = iphoneos12.1
           CP = /bin/cp
           CREATE_INFOPLIST_SECTION_IN_BINARY = NO
           CURRENT_ARCH = x86_64
           CURRENT_PROJECT_VERSION = 1
           CURRENT_VARIANT = normal
           DEAD_CODE_STRIPPING = YES
           DEBUGGING_SYMBOLS = YES
           DEBUG_INFORMATION_FORMAT = dwarf
           DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
           DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
           DEFINES_MODULE = NO
           DEPLOYMENT_LOCATION = NO
           DEPLOYMENT_POSTPROCESSING = NO
           DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
           DEPLOYMENT_TARGET_CLANG_FLAG_NAME = mios-simulator-version-min
           DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -mios-simulator-version-min=
           DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
           DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_simulator_version_min
           DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
           DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1
           DERIVED_FILES_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
           DERIVED_FILE_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
           DERIVED_SOURCES_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
           DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
           DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
           DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
           DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
           DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
           DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
           DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
           DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
           DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
           DEVELOPMENT_LANGUAGE = English
           DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
           DO_HEADER_SCANNING_IN_JAM = NO
           DSTROOT = /tmp/Runner.dst
           DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
           DWARF_DSYM_FILE_NAME = Runner.app.dSYM
           DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
           DWARF_DSYM_FOLDER_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
           EFFECTIVE_PLATFORM_NAME = -iphonesimulator
           EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
           EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
           ENABLE_BITCODE = NO
           ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
           ENABLE_HEADER_DEPENDENCIES = YES
           ENABLE_ON_DEMAND_RESOURCES = YES
           ENABLE_STRICT_OBJC_MSGSEND = YES
           ENABLE_TESTABILITY = YES
           ENTITLEMENTS_DESTINATION = __entitlements
           ENTITLEMENTS_REQUIRED = YES
           EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
           EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
           EXECUTABLES_FOLDER_PATH = Runner.app/Executables
           EXECUTABLE_FOLDER_PATH = Runner.app
           EXECUTABLE_NAME = Runner
           EXECUTABLE_PATH = Runner.app/Runner
           EXPANDED_CODE_SIGN_IDENTITY = 
           EXPANDED_CODE_SIGN_IDENTITY_NAME = 
           EXPANDED_PROVISIONING_PROFILE = 
           FILE_LIST = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
           FIXED_FILES_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
           FLUTTER_APPLICATION_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example
           FLUTTER_BUILD_DIR = build
           FLUTTER_FRAMEWORK_DIR = /Users/madhubhaskar/Desktop/flutter/bin/cache/artifacts/engine/ios
           FLUTTER_ROOT = /Users/madhubhaskar/Desktop/flutter
           FLUTTER_TARGET = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/lib/main.dart
           FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
           FRAMEWORK_FLAG_PREFIX = -framework
           FRAMEWORK_SEARCH_PATHS =  "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios"
           "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios"
           "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework"
           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 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
           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/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter"
           "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal"
           "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter"
           "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal"
           HIDE_BITCODE_SYMBOLS = YES
           HOME = /Users/madhubhaskar
           ICONV = /usr/bin/iconv
           INFOPLIST_EXPAND_BUILD_SETTINGS = YES
           INFOPLIST_FILE = Runner/Info.plist
           INFOPLIST_OUTPUT_FORMAT = binary
           INFOPLIST_PATH = Runner.app/Info.plist
           INFOPLIST_PREPROCESS = NO
           INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings
           INLINE_PRIVATE_FRAMEWORKS = NO
           INSTALLHDRS_COPY_PHASE = NO
           INSTALLHDRS_SCRIPT_PHASE = NO
           INSTALL_DIR = /tmp/Runner.dst/Applications
           INSTALL_GROUP = staff
           INSTALL_MODE_FLAG = u+w,go-w,a+rX
           INSTALL_OWNER = madhubhaskar
           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/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/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/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/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' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks
           LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
           LEX = lex
           LIBRARY_FLAG_NOSPACE = YES
           LIBRARY_FLAG_PREFIX = -l
           LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
           LIBRARY_SEARCH_PATHS =  "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal"
           "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal"
           LINKER_DISPLAYS_MANGLED_NAMES = NO
           LINK_FILE_LIST_normal_x86_64 = 
           LINK_WITH_STANDARD_LIBRARIES = YES
           LLVM_TARGET_TRIPLE_SUFFIX = -simulator
           LOCALIZABLE_CONTENT_DIR = 
           LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
           LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString
           LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
           LOCAL_APPS_DIR = /Applications
           LOCAL_DEVELOPER_DIR = /Library/Developer
           LOCAL_LIBRARY_DIR = /Library
           LOCROOT = 
           LOCSYMROOT = 
           MACH_O_TYPE = mh_execute
           MAC_OS_X_PRODUCT_BUILD_VERSION = 18A391
           MAC_OS_X_VERSION_ACTUAL = 101400
           MAC_OS_X_VERSION_MAJOR = 101400
           MAC_OS_X_VERSION_MINOR = 1400
           METAL_LIBRARY_FILE_BASE = default
           METAL_LIBRARY_OUTPUT_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/Runner.app
           MODULE_CACHE_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
           MTL_ENABLE_DEBUG_INFO = YES
           NATIVE_ARCH = i386
           NATIVE_ARCH_32_BIT = i386
           NATIVE_ARCH_64_BIT = x86_64
           NATIVE_ARCH_ACTUAL = x86_64
           NO_COMMON = YES
           OBJC_ABI_VERSION = 2
           OBJECT_FILE_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
           OBJECT_FILE_DIR_normal = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
           OBJROOT = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex
           ONLY_ACTIVE_ARCH = YES
           OS = MACOS
           OSAC = /usr/bin/osacompile
           OTHER_CFLAGS =  -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter" -isystem
           "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal" -isystem
           "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter" -isystem
           "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal"
           OTHER_CPLUSPLUSFLAGS =  -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter"
           -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal" -isystem
           "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter" -isystem
           "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal" -isystem "/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal"
           OTHER_LDFLAGS =  -ObjC -l"onesignal" -framework "Flutter" -framework "OneSignal" -framework "SystemConfiguration" -framework "UIKit" -framework "UserNotifications" -ObjC -l"onesignal" -framework "Flutter" -framework
           "OneSignal" -framework "SystemConfiguration" -framework "UIKit" -framework "UserNotifications"
           PACKAGE_TYPE = com.apple.package-type.wrapper.application
           PASCAL_STRINGS = YES
           PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madhubhaskar/Desktop/flutter/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/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
           PKGINFO_PATH = Runner.app/PkgInfo
           PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
           PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
           PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
           PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
           PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
           PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
           PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
           PLATFORM_DISPLAY_NAME = iOS Simulator
           PLATFORM_NAME = iphonesimulator
           PLATFORM_PREFERRED_ARCH = x86_64
           PLIST_FILE_OUTPUT_FORMAT = binary
           PLUGINS_FOLDER_PATH = Runner.app/PlugIns
           PODS_BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios
           PODS_CONFIGURATION_BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
           PODS_PODFILE_DIR_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/.
           PODS_ROOT = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods
           PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
           PRECOMP_DESTINATION_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/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.testapp.brad
           PRODUCT_MODULE_NAME = Runner
           PRODUCT_NAME = Runner
           PRODUCT_SETTINGS_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner/Info.plist
           PRODUCT_TYPE = com.apple.product-type.application
           PROFILING_CODE = NO
           PROJECT = Runner
           PROJECT_DERIVED_FILE_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/DerivedSources
           PROJECT_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
           PROJECT_FILE_PATH = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner.xcodeproj
           PROJECT_NAME = Runner
           PROJECT_TEMP_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build
           PROJECT_TEMP_ROOT = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/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/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
           REZ_OBJECTS_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/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/7k/rplqnssn1qv_jbkxfvm556pr0000gn/T/flutter_build_log_pipe.iw8DF5/pipe_to_stdout
           SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
           SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
           SDK_DIR_iphonesimulator12_1 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
           SDK_NAME = iphonesimulator12.1
           SDK_NAMES = iphonesimulator12.1
           SDK_PRODUCT_BUILD_VERSION = 16B91
           SDK_VERSION = 12.1
           SDK_VERSION_ACTUAL = 120100
           SDK_VERSION_MAJOR = 120000
           SDK_VERSION_MINOR = 100
           SED = /usr/bin/sed
           SEPARATE_STRIP = NO
           SEPARATE_SYMBOL_EDIT = NO
           SET_DIR_MODE_OWNER_GROUP = YES
           SET_FILE_MODE_OWNER_GROUP = NO
           SHALLOW_BUNDLE = YES
           SHARED_DERIVED_FILE_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/DerivedSources
           SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
           SHARED_PRECOMPS_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/PrecompiledHeaders
           SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
           SKIP_INSTALL = NO
           SOURCE_ROOT = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
           SRCROOT = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
           STRINGS_FILE_OUTPUT_ENCODING = binary
           STRIP_BITCODE_FROM_COPIED_FILES = NO
           STRIP_INSTALLED_PRODUCT = YES
           STRIP_STYLE = all
           STRIP_SWIFT_SYMBOLS = YES
           SUPPORTED_DEVICE_FAMILIES = 1,2
           SUPPORTED_PLATFORMS = iphonesimulator iphoneos
           SUPPORTS_TEXT_BASED_API = NO
           SWIFT_PLATFORM_TARGET_PREFIX = ios
           SYMROOT = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Products
           SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
           SYSTEM_APPS_DIR = /Applications
           SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
           SYSTEM_DEMOS_DIR = /Applications/Extras
           SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
           SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
           SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
           SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
           SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
           SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
           SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
           SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
           SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
           SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
           SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
           SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
           SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
           SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
           SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
           SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
           SYSTEM_LIBRARY_DIR = /System/Library
           TAPI_VERIFY_MODE = ErrorsOnly
           TARGETED_DEVICE_FAMILY = 1,2
           TARGETNAME = Runner
           TARGET_BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
           TARGET_NAME = Runner
           TARGET_TEMP_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
           TEMP_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
           TEMP_FILES_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
           TEMP_FILE_DIR = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
           TEMP_ROOT = /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex
           TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
           TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
           UID = 501
           UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
           UNSTRIPPED_PRODUCT = NO
           USER = madhubhaskar
           USER_APPS_DIR = /Users/madhubhaskar/Applications
           USER_LIBRARY_DIR = /Users/madhubhaskar/Library
           USE_DYNAMIC_NO_PIC = YES
           USE_HEADERMAP = YES
           USE_HEADER_SYMLINKS = NO
           VALIDATE_PRODUCT = NO
           VALID_ARCHS = i386 x86_64
           VERBOSE_PBXCP = NO
           VERBOSE_SCRIPT_LOGGING = YES
           VERSIONING_SYSTEM = apple-generic
           VERSIONPLIST_PATH = Runner.app/version.plist
           VERSION_INFO_BUILDER = madhubhaskar
           VERSION_INFO_FILE = Runner_vers.c
           VERSION_INFO_STRING = "@(#)PROGRAM:Runner  PROJECT:Runner-1"
           WRAPPER_EXTENSION = app
           WRAPPER_NAME = Runner.app
           WRAPPER_SUFFIX = .app
           WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
           XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode
           XCODE_PRODUCT_BUILD_VERSION = 10B61
           XCODE_VERSION_ACTUAL = 1010
           XCODE_VERSION_MAJOR = 1000
           XCODE_VERSION_MINOR = 1010
           XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
           YACC = yacc
           arch = x86_64
           variant = normal

[ +9 ms] Failed to build iOS app [ ] Error output from Xcode build: ↳ [ ] BUILD FAILED

           The following build commands failed:
            Ld /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64
           (1 failure)

[ ] Xcode's output: ↳ [ +91 ms] Build settings from command line: ARCHS = x86_64 BUILD_DIR = /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios SCRIPT_OUTPUT_STREAM_FILE = /var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/T/flutter_build_log_pipe.iw8DF5/pipe_to_stdout SDKROOT = iphonesimulator12.1 VERBOSE_SCRIPT_LOGGING = YES

           Prepare build
           note: Using legacy build system

           === BUILD TARGET onesignal OF PROJECT Pods WITH CONFIGURATION Debug ===

           Check dependencies

           CompileC /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalPlugin.o
           /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
               cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods
               export LANG=en_US.US-ASCII
               export

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/madhubhaskar/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 -Wdocumentation -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 -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-generated-files.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-own-target-headers.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-all-target-headers.hmap -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-project-headers.hmap -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private/onesignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources/x86_64 -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -include /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\ Files/onesignal/onesignal-prefix.pch -MMD -MT dependencies -MF /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalPlugin.d --serialize-diagnostics /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalPlugin.dia -c /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.m -o /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalPlugin.o In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.m:28: In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalPlugin.h:29: /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:434:4: warning: 'UNMutableNotificationContent' is only available on iOS 10.0 or newer [-Wunguarded-availability]

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/madhubhaskar/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 -Wdocumentation -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 -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-generated-files.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-own-target-headers.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-all-target-headers.hmap -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-project-headers.hmap -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private/onesignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources/x86_64 -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -include /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\ Files/onesignal/onesignal-prefix.pch -MMD -MT dependencies -MF /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalTagsController.d --serialize-diagnostics /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalTagsController.dia -c /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalTagsController.m -o /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalTagsController.o In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalTagsController.m:29: /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:434:4: warning: 'UNMutableNotificationContent' is only available on iOS 10.0 or newer [-Wunguarded-availability]

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/madhubhaskar/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 -Wdocumentation -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 -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-generated-files.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-own-target-headers.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-all-target-headers.hmap -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-project-headers.hmap -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private/onesignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources/x86_64 -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -include /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\ Files/onesignal/onesignal-prefix.pch -MMD -MT dependencies -MF /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalCategories.d --serialize-diagnostics /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalCategories.dia -c /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.m -o /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/OneSignalCategories.o In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.m:28: In file included from /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ios/Classes/OneSignalCategories.h:28: /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:434:4: warning: 'UNMutableNotificationContent' is only available on iOS 10.0 or newer [-Wunguarded-availability]

MadhuSudhanBhaskar commented 5 years ago
                                                                                                                                                                                                    API_AVAILABLE(ios(10.0))
           /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal/OneSignal/OneSignal.h:435:4: warning: 'UNMutableNotificationContent' is only available on iOS 10.0 or newer

[-Wunguarded-availability]

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/madhubhaskar/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 -Wdocumentation -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 -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-generated-files.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-own-target-headers.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-all-target-headers.hmap -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/onesignal-project-headers.hmap -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Private/onesignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources/x86_64 -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/DerivedSources -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -include /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\ Files/onesignal/onesignal-prefix.pch -MMD -MT dependencies -MF /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/onesignal-dummy.d --serialize-diagnostics /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/onesignal-dummy.dia -c /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\ Files/onesignal/onesignal-dummy.m -o /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/onesignal-dummy.o

           Libtool /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal/libonesignal.a normal x86_64
               cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods
               export IPHONEOS_DEPLOYMENT_TARGET=8.0
               export

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only x86_64 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -filelist /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/onesignal.build/Objects-normal/x86_64/onesignal.LinkFileList -o /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal/libonesignal.a

           === BUILD TARGET Pods-OneSignalNotificationServiceExtension OF PROJECT Pods WITH CONFIGURATION Debug ===
           Check dependencies

           CompileC

/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-OneSignalNotificationServiceExtension.build/Objects-normal/x86_64/Pods-OneSi gnalNotificationServiceExtension-dummy.o Target\ Support\ Files/Pods-OneSignalNotificationServiceExtension/Pods-OneSignalNotificationServiceExtension-dummy.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods export LANG=en_US.US-ASCII export

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/madhubhaskar/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 -fapplication-extension -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wdocumentation -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 -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=10.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote

/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-OneSignalNotificationServiceExtension.build/Pods-OneSignalNotificationSe rviceExtension-generated-files.hmap

-I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-OneSignalNotificationServiceExtension.build/Pods-OneSignalNotification ServiceExtension-own-target-headers.hmap

-I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-OneSignalNotificationServiceExtension.build/Pods-OneSignalNotification ServiceExtension-all-target-headers.hmap -iquote

/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-OneSignalNotificationServiceExtension.build/Pods-OneSignalNotificationSe rviceExtension-project-headers.hmap -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal

-I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-OneSignalNotificationServiceExtension.build/DerivedSources/x86_64 -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-OneSignalNotificationServiceExtension.build/DerivedSources -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -MMD -MT dependencies -MF

/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-OneSignalNotificationServiceExtension.build/Objects-normal/x86_64/Pods-O neSignalNotificationServiceExtension-dummy.d --serialize-diagnostics

/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-OneSignalNotificationServiceExtension.build/Objects-normal/x86_64/Pods-O neSignalNotificationServiceExtension-dummy.dia -c /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\ Files/Pods-OneSignalNotificationServiceExtension/Pods-OneSignalNotificationServiceExtension-dummy.m -o

/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-OneSignalNotificationServiceExtension.build/Objects-normal/x86_64/Pods-O neSignalNotificationServiceExtension-dummy.o

           Libtool /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/libPods-OneSignalNotificationServiceExtension.a normal x86_64
               cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods
               export IPHONEOS_DEPLOYMENT_TARGET=10.0
               export

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only x86_64 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator -filelist

/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-OneSignalNotificationServiceExtension.build/Objects-normal/x86_64/Pods-O neSignalNotificationServiceExtension.LinkFileList -o /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/libPods-OneSignalNotificationServiceExtension.a

           === BUILD TARGET Pods-Runner OF PROJECT Pods WITH CONFIGURATION Debug ===
           Check dependencies

           CompileC /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-Runner.build/Objects-normal/x86_64/Pods-Runner-dummy.o

Target\ Support\ Files/Pods-Runner/Pods-Runner-dummy.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods export LANG=en_US.US-ASCII export

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/madhubhaskar/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 -Wdocumentation -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 -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=10.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-Runner.build/Pods-Runner-generated-files.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-Runner.build/Pods-Runner-own-target-headers.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-Runner.build/Pods-Runner-all-target-headers.hmap -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-Runner.build/Pods-Runner-project-headers.hmap -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-Runner.build/DerivedSources/x86_64 -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-Runner.build/DerivedSources -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -MMD -MT dependencies -MF /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-Runner.build/Objects-normal/x86_64/Pods-Runner-dummy.d --serialize-diagnostics /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-Runner.build/Objects-normal/x86_64/Pods-Runner-dummy.dia -c /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Target\ Support\ Files/Pods-Runner/Pods-Runner-dummy.m -o /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-Runner.build/Objects-normal/x86_64/Pods-Runner-dummy.o

           Libtool /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/libPods-Runner.a normal x86_64
               cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods
               export IPHONEOS_DEPLOYMENT_TARGET=10.0
               export

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only x86_64 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator -L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -filelist /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Pods-Runner.build/Objects-normal/x86_64/Pods-Runner.LinkFileList -o /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/libPods-Runner.a

           === BUILD TARGET OneSignalNotificationServiceExtension OF PROJECT Runner WITH CONFIGURATION Debug ===
           Check dependencies

           Create product structure
           /bin/mkdir -p /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex

           ProcessInfoPlistFile /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex/Info.plist OneSignalNotificationServiceExtension/Info.plist
               cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
               export

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin" builtin-infoPlistUtility /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/OneSignalNotificationServiceExtension/Info.plist -expandbuildsettings -format binary -platform iphonesimulator -o /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex/Info.plist

           PhaseScriptExecution [CP]\ Check\ Pods\ Manifest.lock

/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/Script-BD6078845B63427256C7AAD2.sh cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios /bin/sh -c

/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/Script-BD6078845B63427256C7AAD2 .sh

           Ld /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex/OneSignalNotificationServiceExtension normal x86_64
               cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
               export IPHONEOS_DEPLOYMENT_TARGET=11.0
               export

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator -L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -filelist

/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/Objects-normal/x86_64/OneSignal NotificationServiceExtension.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @executable_path/../../Frameworks -mios-simulator-version-min=11.0 -dead_strip -Xlinker -object_path_lto -Xlinker

/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/Objects-normal/x86_64/OneSignal NotificationServiceExtension_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -fapplication-extension -ObjC -lonesignal -framework Flutter -framework OneSignal -framework SystemConfiguration -framework UIKit -framework UserNotifications -ObjC -framework OneSignal -framework SystemConfiguration -framework UIKit -framework UserNotifications -e _NSExtensionMain -Xlinker -sectcreate -Xlinker TEXT -Xlinker entitlements -Xlinker

/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/OneSignalNotificationServiceExt ension.appex-Simulated.xcent -framework UserNotifications -framework UIKit -framework SystemConfiguration -lPods-OneSignalNotificationServiceExtension -Xlinker -dependency_info -Xlinker

/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/Objects-normal/x86_64/OneSignal NotificationServiceExtension_dependency_info.dat -o /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex/OneSignalNotificationServiceExtension ld: warning: linking against a dylib which is not safe for use in application extensions: /Users/madhubhaskar/Desktop/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Flutter

           Touch /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex
               cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
               export

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin" /usr/bin/touch -c /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex

           CodeSign /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex
               cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
               export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
               export

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin"

           Signing Identity:     "-"

               /usr/bin/codesign --force --sign - --entitlements

/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/OneSignalNotificationServiceExtension.build/OneSignalNotificationServiceExt ension.appex.xcent --timestamp=none /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/OneSignalNotificationServiceExtension.appex

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

           Check dependencies
           Code Signing Warning: Capabilities for Runner may not function correctly because its entitlements use a placeholder team ID. To resolve this, select a development team in the build settings editor.

           Create product structure
           /bin/mkdir -p /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/Runner.app
           /bin/mkdir -p /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/Runner.app/PlugIns

           ProcessProductPackaging "" /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent
               cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
               export

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin"

           Entitlements:

           {
               "application-identifier" = "FAKETEAMID.com.testapp.brad";
               "aps-environment" = development;
               "com.apple.security.application-groups" =     (
                   "group.com.testapp.brad.onesignal"
               );
           }

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

           PhaseScriptExecution [CP]\ Check\ Pods\ Manifest.lock
           /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-55814C1A564E962A1F2101FE.sh
               cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
               /bin/sh -c /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-55814C1A564E962A1F2101FE.sh

           PhaseScriptExecution Run\ Script
           /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
               cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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=madhubhaskar
               export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
               export ALWAYS_SEARCH_USER_PATHS=NO
               export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
               export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
               export APPLE_INTERNAL_DIR=/AppleInternal
               export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
               export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
               export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
               export APPLICATION_EXTENSION_API_ONLY=NO
               export APPLY_RULES_IN_COPY_FILES=NO
               export ARCHS=x86_64
               export ARCHS_STANDARD="i386 x86_64"
               export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
               export ARCHS_STANDARD_32_BIT=i386
               export ARCHS_STANDARD_64_BIT=x86_64
               export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
               export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
               export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
               export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
               export BITCODE_GENERATION_MODE=marker
               export BUILD_ACTIVE_RESOURCES_ONLY=YES
               export BUILD_COMPONENTS="headers build"
               export BUILD_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios
               export BUILD_ROOT=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Products
               export BUILD_STYLE=
               export BUILD_VARIANTS=normal
               export BUILT_PRODUCTS_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
               export CACHE_ROOT=/var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/C/com.apple.DeveloperTools/10.1-10B61/Xcode
               export CCHROOT=/var/folders/7k/rplqnssn1qv_jbkxfvm556pr0000gn/C/com.apple.DeveloperTools/10.1-10B61/Xcode
               export CHMOD=/bin/chmod
               export CHOWN=/usr/sbin/chown
               export CLANG_ANALYZER_NONNULL=YES
               export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
               export CLANG_CXX_LIBRARY=libc++
               export CLANG_ENABLE_MODULES=YES
               export CLANG_ENABLE_OBJC_ARC=YES
               export CLANG_MODULES_BUILD_SESSION_FILE=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
               export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
               export CLANG_WARN_BOOL_CONVERSION=YES
               export CLANG_WARN_COMMA=YES
               export CLANG_WARN_CONSTANT_CONVERSION=YES
               export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
               export CLANG_WARN_EMPTY_BODY=YES
               export CLANG_WARN_ENUM_CONVERSION=YES
               export CLANG_WARN_INFINITE_RECURSION=YES
               export CLANG_WARN_INT_CONVERSION=YES
               export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
               export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
               export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
               export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
               export CLANG_WARN_STRICT_PROTOTYPES=YES
               export CLANG_WARN_SUSPICIOUS_MOVE=YES
               export CLANG_WARN_UNREACHABLE_CODE=YES
               export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
               export CLASS_FILE_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
               export CLEAN_PRECOMPS=YES
               export CLONE_HEADERS=NO
               export CODESIGNING_FOLDER_PATH=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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_ENTITLEMENTS=Runner/Runner.entitlements
               export CODE_SIGN_IDENTITY="iPhone Developer"
               export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
               export CODE_SIGN_STYLE=Manual
               export COLOR_DIAGNOSTICS=NO
               export COMBINE_HIDPI_IMAGES=NO
               export COMMAND_MODE=legacy
               export COMPILER_INDEX_STORE_ENABLE=Default
               export COMPOSITE_SDK_DIRS=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/CompositeSDKs
               export COMPRESS_PNG_FILES=YES
               export CONFIGURATION=Debug
               export CONFIGURATION_BUILD_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
               export CONFIGURATION_TEMP_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
               export CONTENTS_FOLDER_PATH=Runner.app
               export COPYING_PRESERVES_HFS_DATA=NO
               export COPY_HEADERS_RUN_UNIFDEF=NO
               export COPY_PHASE_STRIP=NO
               export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
               export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
               export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
               export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.1.sdk
               export CORRESPONDING_DEVICE_SDK_NAME=iphoneos12.1
               export CP=/bin/cp
               export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
               export CURRENT_ARCH=x86_64
               export CURRENT_PROJECT_VERSION=1
               export CURRENT_VARIANT=normal
               export DEAD_CODE_STRIPPING=YES
               export DEBUGGING_SYMBOLS=YES
               export DEBUG_INFORMATION_FORMAT=dwarf
               export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
               export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
               export DEFINES_MODULE=NO
               export DEPLOYMENT_LOCATION=NO
               export DEPLOYMENT_POSTPROCESSING=NO
               export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
               export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
               export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
               export DEPLOYMENT_TARGET_LD_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
               export DEPLOYMENT_TARGET_LD_FLAG_NAME=ios_simulator_version_min
               export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
               export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1"
               export DERIVED_FILES_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
               export DERIVED_FILE_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
               export DERIVED_SOURCES_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
               export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
               export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
               export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
               export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
               export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
               export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
               export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
               export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
               export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
               export DEVELOPMENT_LANGUAGE=English
               export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
               export DO_HEADER_SCANNING_IN_JAM=NO
               export DSTROOT=/tmp/Runner.dst
               export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
               export DWARF_DSYM_FILE_NAME=Runner.app.dSYM
               export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
               export DWARF_DSYM_FOLDER_PATH=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator
               export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
               export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
               export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
               export ENABLE_BITCODE=NO
               export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
               export ENABLE_HEADER_DEPENDENCIES=YES
               export ENABLE_ON_DEMAND_RESOURCES=YES
               export ENABLE_STRICT_OBJC_MSGSEND=YES
               export ENABLE_TESTABILITY=YES
               export ENTITLEMENTS_DESTINATION=__entitlements
               export ENTITLEMENTS_REQUIRED=YES
               export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
               export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
               export EXECUTABLES_FOLDER_PATH=Runner.app/Executables
               export EXECUTABLE_FOLDER_PATH=Runner.app
               export EXECUTABLE_NAME=Runner
               export EXECUTABLE_PATH=Runner.app/Runner
               export EXPANDED_CODE_SIGN_IDENTITY=-
               export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
               export EXPANDED_PROVISIONING_PROFILE=
               export FILE_LIST=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
               export FIXED_FILES_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
               export FLUTTER_APPLICATION_PATH=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example
               export FLUTTER_BUILD_DIR=build
               export FLUTTER_FRAMEWORK_DIR=/Users/madhubhaskar/Desktop/flutter/bin/cache/artifacts/engine/ios
               export FLUTTER_ROOT=/Users/madhubhaskar/Desktop/flutter
               export FLUTTER_TARGET=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/lib/main.dart
               export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
               export FRAMEWORK_FLAG_PREFIX=-framework
               export FRAMEWORK_SEARCH_PATHS="/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios
               /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework"
               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  COCOAPODS=1 COCOAPODS=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/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/include /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public
               /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal
               /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal"
               export HIDE_BITCODE_SYMBOLS=YES
               export HOME=/Users/madhubhaskar
               export ICONV=/usr/bin/iconv
               export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
               export INFOPLIST_FILE=Runner/Info.plist
               export INFOPLIST_OUTPUT_FORMAT=binary
               export INFOPLIST_PATH=Runner.app/Info.plist
               export INFOPLIST_PREPROCESS=NO
               export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings
               export INLINE_PRIVATE_FRAMEWORKS=NO
               export INSTALLHDRS_COPY_PHASE=NO
               export INSTALLHDRS_SCRIPT_PHASE=NO
               export INSTALL_DIR=/tmp/Runner.dst/Applications
               export INSTALL_GROUP=staff
               export INSTALL_MODE_FLAG=u+w,go-w,a+rX
               export INSTALL_OWNER=madhubhaskar
               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/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependenc y_info.dat export LD_GENERATE_MAP_FILE=NO export LD_MAP_FILE_PATH=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt export LD_NO_PIE=NO export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES export LD_RUNPATH_SEARCH_PATHS=" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks" export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer export LEX=lex export LIBRARY_FLAG_NOSPACE=YES export LIBRARY_FLAG_PREFIX=-l export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions export LIBRARY_SEARCH_PATHS="/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal" export LINKER_DISPLAYS_MANGLED_NAMES=NO export

LINK_FILE_LIST_normal_x86_64=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.Link FileList export LINK_WITH_STANDARD_LIBRARIES=YES export LLVM_TARGET_TRIPLE_SUFFIX=-simulator export LOCALIZABLE_CONTENT_DIR= export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString" export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities export LOCAL_APPS_DIR=/Applications export LOCAL_DEVELOPER_DIR=/Library/Developer export LOCAL_LIBRARY_DIR=/Library export LOCROOT= export LOCSYMROOT= export MACH_O_TYPE=mh_execute export MAC_OS_X_PRODUCT_BUILD_VERSION=18A391 export MAC_OS_X_VERSION_ACTUAL=101400 export MAC_OS_X_VERSION_MAJOR=101400 export MAC_OS_X_VERSION_MINOR=1400 export METAL_LIBRARY_FILE_BASE=default export METAL_LIBRARY_OUTPUT_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/Runner.app export MODULE_CACHE_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex export MTL_ENABLE_DEBUG_INFO=YES export NATIVE_ARCH=i386 export NATIVE_ARCH_32_BIT=i386 export NATIVE_ARCH_64_BIT=x86_64 export NATIVE_ARCH_ACTUAL=x86_64 export NO_COMMON=YES export OBJC_ABI_VERSION=2 export OBJECT_FILE_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects export OBJECT_FILE_DIR_normal=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal export OBJROOT=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex export ONLY_ACTIVE_ARCH=YES export OS=MACOS export OSAC=/usr/bin/osacompile export OTHER_CFLAGS=" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public\" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter\" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal\" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal\" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public\" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter\" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal\" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal\"" export OTHER_CPLUSPLUSFLAGS=" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public\" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter\" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal\" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal\" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public\" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter\" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal\" -isystem \"/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal\"" export OTHER_LDFLAGS=" -ObjC -l\"onesignal\" -framework \"Flutter\" -framework \"OneSignal\" -framework \"SystemConfiguration\" -framework \"UIKit\" -framework \"UserNotifications\" -ObjC -l\"onesignal\" -framework \"Flutter\" -framework \"OneSignal\" -framework \"SystemConfiguration\" -framework \"UIKit\" -framework \"UserNotifications\"" export PACKAGE_TYPE=com.apple.package-type.wrapper.application export PASCAL_STRINGS=YES export

PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/T

oolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer

/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Deve

loper/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madhubhaskar/Desktop/flutter/bin" export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms" export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist export PFE_FILE_C_DIALECTS=objective-c export PKGINFO_FILE_PATH=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo export PKGINFO_PATH=Runner.app/PkgInfo export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform export PLATFORM_DISPLAY_NAME="iOS Simulator" export PLATFORM_NAME=iphonesimulator export PLATFORM_PREFERRED_ARCH=x86_64 export PLIST_FILE_OUTPUT_FORMAT=binary export PLUGINS_FOLDER_PATH=Runner.app/PlugIns export PODS_BUILD_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios export PODS_CONFIGURATION_BUILD_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator export PODS_PODFILE_DIR_PATH=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/. export PODS_ROOT=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES export PRECOMP_DESTINATION_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/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.testapp.brad export PRODUCT_MODULE_NAME=Runner export PRODUCT_NAME=Runner export PRODUCT_SETTINGS_PATH=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/DerivedSources export PROJECT_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios export PROJECT_FILE_PATH=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner.xcodeproj export PROJECT_NAME=Runner export PROJECT_TEMP_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build export PROJECT_TEMP_ROOT=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/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/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources export REZ_OBJECTS_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects export REZ_SEARCH_PATHS="/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/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/7k/rplqnssn1qv_jbkxfvm556pr0000gn/T/flutter_build_log_pipe.iw8DF5/pipe_to_stdout export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk export SDK_DIR_iphonesimulator12_1=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk export SDK_NAME=iphonesimulator12.1 export SDK_NAMES=iphonesimulator12.1 export SDK_PRODUCT_BUILD_VERSION=16B91 export SDK_VERSION=12.1 export SDK_VERSION_ACTUAL=120100 export SDK_VERSION_MAJOR=120000 export SDK_VERSION_MINOR=100 export SED=/usr/bin/sed export SEPARATE_STRIP=NO export SEPARATE_SYMBOL_EDIT=NO export SET_DIR_MODE_OWNER_GROUP=YES export SET_FILE_MODE_OWNER_GROUP=NO export SHALLOW_BUNDLE=YES export SHARED_DERIVED_FILE_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/DerivedSources export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks export SHARED_PRECOMPS_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/PrecompiledHeaders export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport export SKIP_INSTALL=NO export SOURCE_ROOT=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios export SRCROOT=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios export STRINGS_FILE_OUTPUT_ENCODING=binary export STRIP_BITCODE_FROM_COPIED_FILES=NO export STRIP_INSTALLED_PRODUCT=YES export STRIP_STYLE=all export STRIP_SWIFT_SYMBOLS=YES export SUPPORTED_DEVICE_FAMILIES=1,2 export SUPPORTED_PLATFORMS="iphonesimulator iphoneos" export SUPPORTS_TEXT_BASED_API=NO export SWIFT_PLATFORM_TARGET_PREFIX=ios export SYMROOT=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Products export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities export SYSTEM_APPS_DIR=/Applications export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices export SYSTEM_DEMOS_DIR=/Applications/Extras export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples" export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library" export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools" export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools" export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools" export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes" export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools" export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools" export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions export SYSTEM_LIBRARY_DIR=/System/Library export TAPI_VERIFY_MODE=ErrorsOnly export TARGETED_DEVICE_FAMILY=1,2 export TARGETNAME=Runner export TARGET_BUILD_DIR=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder" export TARGET_NAME=Runner export TARGET_TEMP_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_FILES_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_FILE_DIR=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_ROOT=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO export UID=501 export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app export UNSTRIPPED_PRODUCT=NO export USER=madhubhaskar export USER_APPS_DIR=/Users/madhubhaskar/Applications export USER_LIBRARY_DIR=/Users/madhubhaskar/Library export USE_DYNAMIC_NO_PIC=YES export USE_HEADERMAP=YES export USE_HEADER_SYMLINKS=NO export VALIDATE_PRODUCT=NO export VALID_ARCHS="i386 x86_64" export VERBOSE_PBXCP=NO export VERBOSE_SCRIPT_LOGGING=YES export VERSIONING_SYSTEM=apple-generic export VERSIONPLIST_PATH=Runner.app/version.plist export VERSION_INFO_BUILDER=madhubhaskar export VERSION_INFO_FILE=Runner_vers.c export VERSION_INFO_STRING="\"@(#)PROGRAM:Runner PROJECT:Runner-1\"" export WRAPPER_EXTENSION=app export WRAPPER_NAME=Runner.app export WRAPPER_SUFFIX=.app export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode export XCODE_PRODUCT_BUILD_VERSION=10B61 export XCODE_VERSION_ACTUAL=1010 export XCODE_VERSION_MAJOR=1000 export XCODE_VERSION_MINOR=1010 export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices export YACC=yacc export arch=x86_64 export variant=normal /bin/sh -c /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh ♦ mkdir -p -- /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Flutter ♦ rm -rf -- /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Flutter/App.framework ♦ rm -rf -- /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Flutter/Flutter.framework ♦ cp -r -- /Users/madhubhaskar/Desktop/flutter/bin/cache/artifacts/engine/ios/Flutter.framework /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Flutter ♦ find /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Flutter/Flutter.framework -type f -exec chmod a-w {} ; ♦ mkdir -p -- /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Flutter/App.framework ♦ eval ♦ cp -- /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Flutter/AppFrameworkInfo.plist /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Flutter/App.framework/Info.plist ♦ /Users/madhubhaskar/Desktop/flutter/bin/flutter --suppress-analytics --verbose build bundle --target-platform=ios --target=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/lib/main.dart --debug --depfile=build/snapshot_blob.bin.d --asset-dir=/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Flutter/flutter_assets [ +7 ms] executing: [/Users/madhubhaskar/Desktop/flutter/] git rev-parse --abbrev-ref --symbolic @{u} [ +40 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ ] origin/beta [ ] executing: [/Users/madhubhaskar/Desktop/flutter/] git rev-parse --abbrev-ref HEAD [ +6 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ ] beta [ ] executing: [/Users/madhubhaskar/Desktop/flutter/] git ls-remote --get-url origin [ +6 ms] Exit code 0 from: git ls-remote --get-url origin [ ] https://github.com/flutter/flutter.git [ ] executing: [/Users/madhubhaskar/Desktop/flutter/] git log -n 1 --pretty=format:%H [ +7 ms] Exit code 0 from: git log -n 1 --pretty=format:%H [ ] d48e6e433cc5ca67b24b19f70aaa197e84ba63c1 [ +2 ms] executing: [/Users/madhubhaskar/Desktop/flutter/] git log -n 1 --pretty=format:%ar [ +7 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar [ ] 18 hours ago [ ] executing: [/Users/madhubhaskar/Desktop/flutter/] git describe --match v.. --first-parent --long --tags [ +9 ms] Exit code 0 from: git describe --match v.. --first-parent --long --tags [ ] v0.11.9-0-gd48e6e433c [ +265 ms] Found plugin onesignal at /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ [ +62 ms] Found plugin onesignal at /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/ [ +360 ms] Skipping kernel compilation. Fingerprint match. [ +138 ms] Building bundle [ +1 ms] Writing asset files to /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Flutter/flutter_assets [ +49 ms] Wrote /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Flutter/flutter_assets [ +8 ms] "flutter bundle" took 761ms. Project /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example built and packaged successfully.

           CompileC /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o

Runner/AppDelegate.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios export LANG=en_US.US-ASCII export

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DCOCOAPODS=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -MMD -MT dependencies -MF /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.d --serialize-diagnostics /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.dia -c /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner/AppDelegate.m -o /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o

           CompileC /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o Runner/main.m

normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios export LANG=en_US.US-ASCII export

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DCOCOAPODS=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -MMD -MT dependencies -MF /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.d --serialize-diagnostics /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.dia -c /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner/main.m -o /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o

           CompileC

/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios export LANG=en_US.US-ASCII export

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DCOCOAPODS=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -MMD -MT dependencies -MF /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d --serialize-diagnostics /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.dia -c /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Runner/GeneratedPluginRegistrant.m -o /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o

           CompileC /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.o
           /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c normal x86_64 c
           com.apple.compilers.llvm.clang.1_0.compiler
               cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
               export LANG=en_US.US-ASCII
               export

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fmodules -gmodules -fmodules-cache-path=/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/madhubhaskar/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 -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -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 -DDEBUG=1 -DCOCOAPODS=1 -DCOCOAPODS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Index/DataStore -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/include -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -I/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/Flutter -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/OneSignal -isystem /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/Headers/Public/onesignal -MMD -MT dependencies -MF /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.d --serialize-diagnostics /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.dia -c /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/Runner_vers.c -o /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_vers.o

           Ld /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64
               cd /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios
               export IPHONEOS_DEPLOYMENT_TARGET=8.0
               export

PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Desktop/flutter/bin:/Users/madh ubhaskar/Desktop/flutter/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator -L/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/onesignal -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/../.symlinks/flutter/ios -F/Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/ios/Pods/OneSignal/iOS_SDK/OneSignalSDK/Framework -filelist /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=8.0 -dead_strip -Xlinker -object_path_lto -Xlinker /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/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 -ObjC -lonesignal -framework Flutter -framework OneSignal -framework SystemConfiguration -framework UIKit -framework UserNotifications -ObjC -lonesignal -framework Flutter -framework OneSignal -framework SystemConfiguration -framework UIKit -framework UserNotifications -Xlinker -sectcreate -Xlinker TEXT -Xlinker entitlements -Xlinker /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent -framework Flutter -framework App -lPods-Runner -Xlinker -dependency_info -Xlinker /Users/madhubhaskar/Library/Developer/Xcode/DerivedData/Runner-gmiuuvjqfzulkvbbwqngqxyociwn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat -o /Users/madhubhaskar/Desktop/OneSignal-Flutter-SDK/example/build/ios/Debug-iphonesimulator/Runner.app/Runner ld: framework not found App clang: error: linker command failed with exit code 1 (use -v to see invocation)

[ +66 ms] Could not build the application for the simulator. [ +2 ms] Error launching application on iPhone XR. [ +4 ms] "flutter run" took 16,098ms.

0 throwToolExit (package:flutter_tools/src/base/common.dart:26:3)

1 RunCommand.runCommand (package:flutter_tools/src/commands/run.dart:404:7)

#2 FlutterCommand.verifyThenRunCommand (package:flutter_tools/src/runner/flutter_command.dart:401:18) #3 _asyncThenWrapperHelper. (dart:async/runtime/libasync_patch.dart:77:64) #4 _rootRunUnary (dart:async/zone.dart:1132:38) #5 _CustomZone.runUnary (dart:async/zone.dart:1029:19) #6 _FutureListener.handleValue (dart:async/future_impl.dart:129:18) #7 Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:642:45) #8 Future._propagateToListeners (dart:async/future_impl.dart:671:32) #9 Future._complete (dart:async/future_impl.dart:476:7) #10 _SyncCompleter.complete (dart:async/future_impl.dart:51:12) #11 _AsyncAwaitCompleter.complete (dart:async/runtime/libasync_patch.dart:28:18) #12 _completeOnAsyncReturn (dart:async/runtime/libasync_patch.dart:295:13) #13 RunCommand.usageValues (package:flutter_tools/src/commands/run.dart) #14 _asyncThenWrapperHelper. (dart:async/runtime/libasync_patch.dart:77:64) #15 _rootRunUnary (dart:async/zone.dart:1132:38) #16 _CustomZone.runUnary (dart:async/zone.dart:1029:19) #17 _FutureListener.handleValue (dart:async/future_impl.dart:129:18) #18 Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:642:45) #19 Future._propagateToListeners (dart:async/future_impl.dart:671:32) #20 Future._complete (dart:async/future_impl.dart:476:7) #21 _SyncCompleter.complete (dart:async/future_impl.dart:51:12) #22 _AsyncAwaitCompleter.complete. (dart:async/runtime/libasync_patch.dart:33:20) #23 _rootRun (dart:async/zone.dart:1124:13) #24 _CustomZone.run (dart:async/zone.dart:1021:19) #25 _CustomZone.bindCallback. (dart:async/zone.dart:947:23) #26 _microtaskLoop (dart:async/schedule_microtask.dart:41:21) #27 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5) #28 _runPendingImmediateCallback (dart:isolate/runtime/libisolate_patch.dart:115:13) #29 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:172:5) no luck @sjmcdowall
MadhuSudhanBhaskar commented 5 years ago

Xcode's output: ↳ === BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION Debug === Code Signing Warning: Capabilities for Runner may not function correctly because its entitlements use a placeholder team ID. To resolve this, select a development team in the build settings editor. === BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION Debug === ld: framework not found App clang: error: linker command failed with exit code 1 (use -v to see invocation)

Could not build the application for the simulator. Error launching application on iPhone XR.

@sjmcdowall this only with flutter run

sjmcdowall commented 5 years ago

Have you gone into Xcode and set it all up correctly for normal builds? Can you run an iOS flutter example / library example thing from the flutter GIT itself? That error message to me suggests something inXCode isn't setup correctly for development ..

MadhuSudhanBhaskar commented 5 years ago

I am Able to run and build other projects of mine on iOS. I wanted to implement push notification so checked out this repo. On 21-Nov-2018 11:02 PM, "S McDowall" notifications@github.com wrote:

Have you gone into Xcode and set it all up correctly for normal builds? Can you run an iOS flutter example / library example thing from the flutter GIT itself? That error message to me suggests something inXCode isn't setup correctly for development ..

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/OneSignal/OneSignal-Flutter-SDK/issues/36#issuecomment-440824475, or mute the thread https://github.com/notifications/unsubscribe-auth/ABE_TwaZEhjkt4mwKts17VUrc1lg6udqks5uxc2FgaJpZM4YnBfb .

sjmcdowall commented 5 years ago

OK - -fair enough -- just trying to remove the obvious problems .. :)

MadhuSudhanBhaskar commented 5 years ago

Oh yes I understand. :-) On 21-Nov-2018 11:11 PM, "S McDowall" notifications@github.com wrote:

OK - -fair enough -- just trying to remove the obvious problems .. :)

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/OneSignal/OneSignal-Flutter-SDK/issues/36#issuecomment-440826148, or mute the thread https://github.com/notifications/unsubscribe-auth/ABE_T0y0aTuUiEuHIjv18cUvq8s8HPOFks5uxc99gaJpZM4YnBfb .

Nightsd01 commented 5 years ago

@MadhuSudhanBhaskar When you post a really really long debugging post, please just post a URL to Pastebin or something to make the thread easier to read.

Does your project build successfully if you run directly from Xcode instead of using the Flutter CLI?

Can you try cloning our repository and try running our example/demo project? Does it build & run successfully on your machine?

Lastly, it is much easier to help with issues like this if you can post a zip of a project that reproduces this issue.

MadhuSudhanBhaskar commented 5 years ago

@Nightsd01 I tried other project of mine from Xcode, made a build from there and I see it working. Ya the project that I am trying is just a clone of yours which just app id change. But I have still not added any certificates or enabled iOS for push notifications, I hope that is not causing any issue. Its a build issue or am I wrong?

And sorry about the long logs! will take care of it next time.

this Is again from new fresh clone Error output from Xcode build: ↳ BUILD FAILED

Xcode's output: ↳ ld: warning: directory not found for option '-L/Users/madhubhaskar/Desktop/newtest/OneSignal-Flutter-SDK/example/build/i os/Debug-iphonesimulator/onesignal' ld: library not found for -lonesignal clang: error: linker command failed with exit code 1 (use -v to see invocation)

@Nightsd01 Android I have no issue, its jut replace app id and get it going.

DevFatani commented 5 years ago

The workaround here is to install natively on iOS and Android it work with me

garaving commented 5 years ago

Description:

I spent 5 hours today tracking down why -- after following the instructions for installing OneSignal my flutter app wouldn't run anymore. Not a lot of fun.

The issue is that depending on whim or who knows -- Xcode saves the Runner -> project.pbxproj with all the bundle id's listed (one per scheme) in "random" (doubtful but still) order. This means that the new scheme/target for OneSignal -- PRODUCT_BUNDLE_IDENTIFIER = com.xxx.app.OneSignalNotificationServiceExtension;

Could be first -- and then flutter uses the FIRST BUNDLE_ID it finds if the Info.plist is set to $(PRODUCT_BUNDLE_ID). Which it is by default. Hence, when you run it "simctl launch" tries to launch the wrong bundle id.

The easiest solution - if not the cleanest -- is to set in the Info.plist

<key>CFBundleIdentifier</key>
<string>com.xxx.app</string>

Which takes precedence .. the other option is to handle arrange the project.pbxproj to make sure the real app is first - but I think opening Xcode again and saving could re-arrange it? Hard to tell ..

Environment

iOS

Steps to Reproduce Issue:

  1. See above

Anything else:

(crash stacktraces, as well as any other information here)

of which Info.plist i have to change

CFBundleIdentifier com.xxx.app ?

sjmcdowall commented 5 years ago

The path to the Info.plist in your Flutter app is ./ios/Runner/Info.pllist

That's what you have to change the <CFBundleIdentifier>

Nightsd01 commented 5 years ago

In regards to the top issue from @sjmcdowall we've never been able to reproduce this. The CFBundleIdentifier should be set automatically by Xcode, you shouldn't need to do it manually

Are you saying you added the CFBundleIdentifier to the root Info.plist or did you change it? If you changed it, what was the value of CFBundleIdentifier before you change it?

sjmcdowall commented 5 years ago

@Nightsd01 -- Sorry to disagree, but then you haven't written enough Flutter applications. This is a side-effect of Flutter's scaffolding .. combined with create a complex app with lots of plugins / Podfiles, etc.

Nightsd01 commented 5 years ago

@sjmcdowall Are you saying you added the CFBundleIdentifier to the root Info.plist or did you change it? If you changed it, what was the value of CFBundleIdentifier before you change it?

sjmcdowall commented 5 years ago

@Nightsd01 - I did not ADD CFBundleIdentifer to the ./ios/Runner/Info.plist (which is the main target of a standard Flutter app). Rather, it's initial value is

    <key>CFBundleIdentifier</key>
    <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>

Flutter tries to insert the proper value by scanning it's (originally) generated Xcode project file .. but adding more targets like OneSignal, etc. can cause Xcode, when saved, to re-arrange the project file and if that happens then the BundleId gets "corrupted" to the wrong one and nothing works.

Does this clarify things?

Nightsd01 commented 5 years ago

Closing this issue since no one else seems to have had a problem with this.

Sethmr commented 5 years ago

This seems to be the problem I am having.

I need to change the Product Bundle Identifier, inside the Build settings of the OneSignalNotificationServiceExtension, dynamically in order to match with our projects current identifier.

I currently use fastlane scripts to update the projects Bundle Identifier and was wandering if there was a way to do this with fastlane or somehow inheriting the Bundle ID from the Build Settings of the main project.

Nightsd01 commented 5 years ago

@Sethmr the extension service isn’t specific to our SDK, it’s actually an iOS app extension. Provisioning the Extension service dynamically is pretty far outside our ability to control.

It might just be easier to create separate extension service targets for each flavor of app target you have (ie. dev vs production).

Alternatively if there’s a way to do this from fast lane I couldn’t really say. You might also be able to accomplish this in a script using sed or awk to change the bundle ID dynamically.