fastlane: Error 65: Timed out waiting for AX loaded notification

New Issue Checklist

Issue Description

Kind of similar to #8365 Running snapshot, I am getting:

Timed out waiting for AX loaded notification With error 65.

✅ fastlane environment ✅

Stack

Key Value
OS 10.13.2
Ruby 2.2.4
Bundler? false
Git git version 2.14.3 (Apple Git-98)
Installation Source ~/.fastlane/bin/bundle/bin/fastlane
Host Mac OS X 10.13.2 (17C88)
Ruby Lib Dir ~/.fastlane/bin/bundle/lib
OpenSSL Version OpenSSL 1.0.2g 1 Mar 2016
Is contained false
Is homebrew true
Is installed via Fabric.app false
Xcode Path /Applications/Xcode.app/Contents/Developer/
Xcode Version 9.2

System Locale

Variable Value
LANG en_US.UTF-8
LC_ALL en_US.UTF-8
LANGUAGE en_US.UTF-8

fastlane files:

`./fastlane/Fastfile`
# Customize this file, documentation can be found here:
# https://docs.fastlane.tools/actions/
# All available actions: https://docs.fastlane.tools/actions
# can also be listed using the `fastlane actions` command

# Change the syntax highlighting to Ruby
# All lines starting with a # are ignored when running `fastlane`

# If you want to automatically update fastlane if a new version is available:
# update_fastlane

# This is the minimum version number required.
# Update this, if you use features of a newer version
min_fastlane_version("2.72.0")

default_platform(:ios)

platform :ios do
  before_all do
    #gym(
    #    project: "platforms/ios/Locals Menu.xcodeproj"
    #)
    # ENV["SLACK_URL"] = "https://hooks.slack.com/services/..."
    # cocoapods
    # cocoapods
  end

  desc "Runs all the tests"
  lane :test do
    run_tests
  end

  desc "Creates screenshots"
  lane :screenshots do
    # sh "cd .. && sudo ionic cordova build ios --prod"
    snapshot(
      output_simulator_logs: true,
      reinstall_app: false,
      erase_simulator: true,
      scheme: "ionic-screen-shots"
    )
  end

  desc "Submit a new Beta Build to Apple TestFlight"
  desc "This will also make sure the profile is up to date"
  lane :beta do
    # sync_code_signing(type: "appstore") # more information: https://codesigning.guide
    build_app # more options available
    upload_to_testflight

    # sh "your_script.sh"
    # You can also use other beta testing services here (run `fastlane actions`)
  end

  desc "Deploy a new version to the App Store"
  lane :release do
    # sync_code_signing(type: "appstore")
    capture_screenshots
    build_app # more options available
    upload_to_app_store(force: true)
    # frame_screenshots
  end

  # You can define as many lanes as you want

  after_all do |lane|
    # This block is called, only if the executed lane was successful

    # slack(
    #   message: "Successfully deployed new App Update."
    # )
  end

  error do |lane, exception|
    # slack(
    #   message: exception.message,
    #   success: false
    # )
  end
end


# More information about multiple platforms in fastlane: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
# All available actions: https://docs.fastlane.tools/actions

# fastlane reports which actions are used. No personal data is recorded.
# Learn more at https://docs.fastlane.tools/#metrics


platform :android do
  before_all do
    # ENV["SLACK_URL"] = "https://hooks.slack.com/services/..."
  end

  desc "Runs all the tests"
  lane :test do
    gradle(task: "test")
  end

  desc "Submit a new Beta Build to Crashlytics Beta"
  lane :beta do
    gradle(task: "assembleRelease")
    crashlytics

    # sh "your_script.sh"
    # You can also use other beta testing services here
  end

  desc "Deploy a new version to the Google Play"
  lane :deploy do
    gradle(task: "assembleRelease")
    supply
  end

  # You can define as many lanes as you want

  after_all do |lane|
    # This block is called, only if the executed lane was successful

    # slack(
    #   message: "Successfully deployed new App Update."
    # )
  end

  error do |lane, exception|
    # slack(
    #   message: exception.message,
    #   success: false
    # )
  end
end

`./fastlane/Appfile`
app_identifier "com.localsmenu.app" # The bundle identifier of your app
apple_id "my-email@gmail.com" # Your Apple email address
# app_name "Locals Menu"

itc_team_id "118794585" # Locals Menu Team

team_id "MNCYC572MR" # Developer Portal Team ID

# you can even provide different app identifiers, Apple IDs and team names per lane:
# More information: https://docs.fastlane.tools/advanced/#appfile

json_key_file "certificates/android/google_play_key.json" # Path to the json secret file - Follow https://github.com/fastlane/supply#setup to get one
package_name "com.localsmenu.app"

fastlane gems

Gem Version Update-Status
fastlane 2.74.0 ✅ Up-To-Date

Loaded fastlane plugins:

Plugin Version Update-Status
fastlane-plugin-ionic_integration 0.1.3 ✅ Up-To-Date
Loaded gems
Gem Version
slack-notifier 1.5.1
CFPropertyList 2.3.6
claide 1.0.2
colored2 3.1.2
nanaimo 0.2.3
xcodeproj 1.5.4
rouge 1.11.1
xcpretty 0.2.6
terminal-notifier 1.8.0
unicode-display_width 1.1.3
terminal-table 1.7.3
plist 3.4.0
public_suffix 2.0.5
addressable 2.5.2
multipart-post 2.0.0
word_wrap 1.0.0
tty-screen 0.6.4
tty-cursor 0.5.0
tty-spinner 0.7.0
babosa 1.0.2
colored 1.2
highline 1.7.10
commander-fastlane 4.4.5
excon 0.60.0
faraday 0.13.1
unf_ext 0.0.7.4
unf 0.1.4
domain_name 0.5.20170404
http-cookie 1.0.3
faraday-cookie_jar 0.0.6
fastimage 2.1.1
gh_inspector 1.0.3
json 1.8.1
mini_magick 4.5.1
multi_json 1.12.2
multi_xml 0.6.0
rubyzip 1.2.1
security 0.1.3
xcpretty-travis-formatter 0.0.4
dotenv 2.2.1
bundler 1.14.6
faraday_middleware 0.11.0.1
uber 0.1.0
declarative 0.0.10
declarative-option 0.1.0
representable 3.0.4
retriable 3.1.1
mime-types-data 3.2016.0521
mime-types 3.1
little-plugger 1.1.4
logging 2.2.2
jwt 1.5.6
memoist 0.16.0
os 0.9.6
signet 0.7.3
googleauth 0.5.1
httpclient 2.8.3
google-api-client 0.13.6
libxml-ruby 3.0.0
fastlane-plugin-ionic_integration 0.1.3

generated on: 2018-01-08

Complete output when running fastlane, including the stack trace and command used
`sudo fastlane ios screenshots --capture_output`
[16:45:02]: fastlane detected a Gemfile in the current directory
[16:45:02]: however it seems like you don't use `bundle exec`
[16:45:02]: to launch fastlane faster, please use
[16:45:02]: 
[16:45:02]: $ bundle exec fastlane ios screenshots --capture_output
[16:45:02]: 
[16:45:02]: Get started using a Gemfile for fastlane https://docs.fastlane.tools/getting-started/ios/setup/#use-a-gemfile
DEBUG [2018-01-08 16:45:03.30]: Checking if there are any plugins that should be loaded...
DEBUG [2018-01-08 16:45:03.34]: Loading 'fastlane-plugin-ionic_integration' plugin
INFO [2018-01-08 16:45:03.43]: gem 'fastlane-plugin-ionic_integration' is already installed
INFO [2018-01-08 16:45:03.68]: ----------------------------------------
INFO [2018-01-08 16:45:03.68]: --- Step: Verifying fastlane version ---
INFO [2018-01-08 16:45:03.68]: ----------------------------------------
INFO [2018-01-08 16:45:03.68]: Your fastlane version 2.74.0 matches the minimum requirement of 2.72.0  ✅
INFO [2018-01-08 16:45:03.71]: ------------------------------
INFO [2018-01-08 16:45:03.71]: --- Step: default_platform ---
INFO [2018-01-08 16:45:03.71]: ------------------------------
INFO [2018-01-08 16:45:03.71]: Driving the lane 'ios screenshots' 🚀
INFO [2018-01-08 16:45:03.75]: ----------------------
INFO [2018-01-08 16:45:03.75]: --- Step: snapshot ---
INFO [2018-01-08 16:45:03.75]: ----------------------
INFO [2018-01-08 16:45:04.35]: Successfully loaded '/Users/admin/dev/locals-menu/fastlane/Snapfile' 📄
DEBUG [2018-01-08 16:45:04.35]: Fetching available simulator devices
INFO [2018-01-08 16:45:04.52]: $ xcodebuild -list -project platforms/ios/Locals\ Menu.xcodeproj
INFO [2018-01-08 16:45:05.22]: $ xcodebuild -showBuildSettings -scheme ionic-screen-shots -project platforms/ios/Locals\ Menu.xcodeproj
DEBUG [2018-01-08 16:45:06.64]: Fetching available simulator devices
DEBUG [2018-01-08 16:45:06.87]: Found 18 simulators.
DEBUG [2018-01-08 16:45:06.87]: Fetching available simulator devices
DEBUG [2018-01-08 16:45:07.23]: Checking that helper files contain SnapshotHelperVersion [1.8]
WARN [2018-01-08 16:45:08.24]: Clearing previously generated screenshots
INFO [2018-01-08 16:45:08.24]: Building and running project - this might take some time...
DEBUG [2018-01-08 16:45:08.24]: Fetching available simulator devices
INFO [2018-01-08 16:45:08.67]: Patching simulators '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' to scale to 100%
DEBUG [2018-01-08 16:45:08.67]: Fetching available simulator devices
INFO [2018-01-08 16:45:08.84]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.iPhone-5s' '1.0'
INFO [2018-01-08 16:45:08.86]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.iPhone-6' '1.0'
INFO [2018-01-08 16:45:08.89]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.iPhone-6-Plus' '1.0'
INFO [2018-01-08 16:45:08.92]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.iPhone-6s' '1.0'
INFO [2018-01-08 16:45:08.94]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.iPhone-6s-Plus' '1.0'
INFO [2018-01-08 16:45:08.97]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.iPhone-7' '1.0'
INFO [2018-01-08 16:45:08.99]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.iPhone-7-Plus' '1.0'
INFO [2018-01-08 16:45:09.01]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.iPhone-8' '1.0'
INFO [2018-01-08 16:45:09.04]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus' '1.0'
INFO [2018-01-08 16:45:09.06]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.iPhone-SE' '1.0'
INFO [2018-01-08 16:45:09.09]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.iPhone-X' '1.0'
INFO [2018-01-08 16:45:09.12]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.iPad-Air' '1.0'
INFO [2018-01-08 16:45:09.16]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.iPad-Air-2' '1.0'
INFO [2018-01-08 16:45:09.20]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.iPad-(5th-generation)' '1.0'
INFO [2018-01-08 16:45:09.22]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.iPad-Pro-(9.7-inch)' '1.0'
INFO [2018-01-08 16:45:09.25]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.iPad-Pro-(12.9-inch)' '1.0'
INFO [2018-01-08 16:45:09.27]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.iPad-Pro-(12.9-inch)-(2nd-generation)' '1.0'
INFO [2018-01-08 16:45:09.30]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.iPad-Pro-(10.5-inch)' '1.0'
INFO [2018-01-08 16:45:09.33]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.Apple-TV' '1.0'
INFO [2018-01-08 16:45:09.37]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K' '1.0'
INFO [2018-01-08 16:45:09.41]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-(at-1080p)' '1.0'
INFO [2018-01-08 16:45:09.45]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.Apple-Watch---38mm' '1.0'
INFO [2018-01-08 16:45:09.47]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.Apple-Watch---42mm' '1.0'
INFO [2018-01-08 16:45:09.50]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2---38mm' '1.0'
INFO [2018-01-08 16:45:09.52]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2---42mm' '1.0'
INFO [2018-01-08 16:45:09.55]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3---38mm' '1.0'
INFO [2018-01-08 16:45:09.58]: $ defaults write '/Users/admin/Library/Preferences/com.apple.iphonesimulator.plist' 'SimulatorWindowLastScale-com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3---42mm' '1.0'
DEBUG [2018-01-08 16:45:09.61]: Patching simulator to work with secure text fields
INFO [2018-01-08 16:45:09.61]: $ defaults write com.apple.iphonesimulator ConnectHardwareKeyboard 0
DEBUG [2018-01-08 16:45:09.64]: Erasing iPhone X...
DEBUG [2018-01-08 16:45:09.64]: Fetching available simulator devices
WARN [2018-01-08 16:45:09.90]: Erasing iPhone X...
DEBUG [2018-01-08 16:45:10.52]: Fetching available simulator devices
WARN [2018-01-08 16:45:10.74]: Running snapshot on: iPhone X
INFO [2018-01-08 16:45:10.74]: $ set -o pipefail && xcodebuild -scheme ionic-screen-shots -project platforms/ios/Locals\ Menu.xcodeproj -derivedDataPath '/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/snapshot_derived20180108-45230-1sn88bl' -destination 'platform=iOS Simulator,name=iPhone X,OS=11.2' FASTLANE_SNAPSHOT=YES build test | tee /Users/admin/Library/Logs/snapshot/Locals\ Menu-ionic-screen-shots.log | xcpretty 
INFO [2018-01-08 16:45:10.74]: ▸ Loading...
INFO [2018-01-08 16:45:12.01]: ▸ Building CordovaLib/CordovaLib [Debug]
INFO [2018-01-08 16:45:12.03]: ▸ Check Dependencies
INFO [2018-01-08 16:45:12.14]: ▸ Copying CDV.h
INFO [2018-01-08 16:45:12.14]: ▸ Copying CDVScreenOrientationDelegate.h
INFO [2018-01-08 16:45:12.14]: ▸ Copying CDVWebViewEngineProtocol.h
INFO [2018-01-08 16:45:12.15]: ▸ Copying CDVCommandDelegateImpl.h
INFO [2018-01-08 16:45:12.15]: ▸ Copying CDVCommandQueue.h
INFO [2018-01-08 16:45:12.16]: ▸ Copying CDVWhitelist.h
INFO [2018-01-08 16:45:12.16]: ▸ Copying CDVAppDelegate.h
INFO [2018-01-08 16:45:12.16]: ▸ Copying CDVPlugin+Resources.h
INFO [2018-01-08 16:45:12.16]: ▸ Copying CDVAvailability.h
INFO [2018-01-08 16:45:12.16]: ▸ Copying CDVUIWebViewDelegate.h
INFO [2018-01-08 16:45:12.16]: ▸ Copying CDVPluginResult.h
INFO [2018-01-08 16:45:12.16]: ▸ Copying NSMutableArray+QueueAdditions.h
INFO [2018-01-08 16:45:12.17]: ▸ Copying CDVInvokedUrlCommand.h
INFO [2018-01-08 16:45:12.17]: ▸ Copying NSDictionary+CordovaPreferences.h
INFO [2018-01-08 16:45:12.17]: ▸ Copying CDVPlugin.h
INFO [2018-01-08 16:45:12.17]: ▸ Copying CDVURLProtocol.h
INFO [2018-01-08 16:45:12.17]: ▸ Copying CDVCommandDelegate.h
INFO [2018-01-08 16:45:12.17]: ▸ Copying CDVAvailabilityDeprecated.h
INFO [2018-01-08 16:45:12.17]: ▸ Copying CDVUserAgentUtil.h
INFO [2018-01-08 16:45:12.17]: ▸ Copying CDVTimer.h
INFO [2018-01-08 16:45:12.17]: ▸ Copying CDVConfigParser.h
INFO [2018-01-08 16:45:12.17]: ▸ Copying CDVViewController.h
INFO [2018-01-08 16:45:12.18]: ▸ Precompiling CordovaLib_Prefix.pch
INFO [2018-01-08 16:45:13.24]: ▸ Compiling CDVViewController.m
INFO [2018-01-08 16:45:16.11]: ▸ Compiling NSDictionary+CordovaPreferences.m
INFO [2018-01-08 16:45:16.11]: ▸ Compiling CDVAppDelegate.m
INFO [2018-01-08 16:45:16.11]: ▸ Compiling CDVUIWebViewDelegate.m
INFO [2018-01-08 16:45:16.11]: ▸ Compiling CDVJSON_private.m
INFO [2018-01-08 16:45:16.12]: ▸ Compiling CDVCommandDelegateImpl.m
INFO [2018-01-08 16:45:16.12]: ▸ Compiling CDVWhitelist.m
INFO [2018-01-08 16:45:16.12]: ▸ Compiling CDVInvokedUrlCommand.m
INFO [2018-01-08 16:45:16.12]: ▸ Compiling CDVTimer.m
INFO [2018-01-08 16:45:16.12]: ▸ Compiling CDVUserAgentUtil.m
INFO [2018-01-08 16:45:16.12]: ▸ Compiling CDVConfigParser.m
INFO [2018-01-08 16:45:16.12]: ▸ Compiling CDVGestureHandler.m
INFO [2018-01-08 16:45:16.13]: ▸ Compiling CDVHandleOpenURL.m
INFO [2018-01-08 16:45:16.13]: ▸ Compiling CDVUIWebViewNavigationDelegate.m
INFO [2018-01-08 16:45:16.13]: ▸ Compiling NSMutableArray+QueueAdditions.m
INFO [2018-01-08 16:45:16.13]: ▸ Compiling CDVCommandQueue.m
INFO [2018-01-08 16:45:16.13]: ▸ Compiling CDVPluginResult.m
INFO [2018-01-08 16:45:16.13]: ▸ Compiling CDVPlugin+Resources.m
INFO [2018-01-08 16:45:16.13]: ▸ Compiling CDVURLProtocol.m
INFO [2018-01-08 16:45:16.14]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/CordovaLib/Classes/Public/CDVURLProtocol.m:60:9: 'ALAssetsLibraryAssetForURLResultBlock' is deprecated: first deprecated in iOS 9.0 - Use fetchAssetsWithLocalIdentifiers:options: on PHAsset to fetch assets by local identifier (or to lookup PHAssets by a previously known ALAssetPropertyAssetURL use fetchAssetsWithALAssetURLs:options:) from the Photos framework instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:16.14]: ▸ ALAssetsLibraryAssetForURLResultBlock resultBlock = ^(ALAsset* asset) {
INFO [2018-01-08 16:45:16.14]: ▸         ^
INFO [2018-01-08 16:45:16.14]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/CordovaLib/Classes/Public/CDVURLProtocol.m:63:69: 'defaultRepresentation' is deprecated: first deprecated in iOS 9.0 - Use PHImageRequestOptions with the PHImageManager from the Photos framework instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:16.14]: ▸ ALAssetRepresentation* assetRepresentation = [asset defaultRepresentation];
INFO [2018-01-08 16:45:16.14]: ▸                ^
INFO [2018-01-08 16:45:16.14]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/CordovaLib/Classes/Public/CDVURLProtocol.m:64:142: 'UTI' is deprecated: first deprecated in iOS 9.0 - Use requestImageDataForAsset:options:resultHandler: on PHImageManager for a PHAsset to request image data from the Photos framework and check the dataUTI passed to your result handler instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:16.14]: ▸ NSString* MIMEType = (__bridge_transfer NSString*)UTTypeCopyPreferredTagWithClass((__bridge CFStringRef)[assetRepresentation UTI], kUTTagClassMIMEType);
INFO [2018-01-08 16:45:16.14]: ▸ ^
INFO [2018-01-08 16:45:16.15]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/CordovaLib/Classes/Public/CDVURLProtocol.m:65:82: 'size' is deprecated: first deprecated in iOS 9.0 - Use requestImageDataForAsset:options:resultHandler: on PHImageManager to request image data for a PHAsset from the Photos framework instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:16.15]: ▸ Byte* buffer = (Byte*)malloc((unsigned long)[assetRepresentation size]);
INFO [2018-01-08 16:45:16.15]: ▸ ^
INFO [2018-01-08 16:45:16.15]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/CordovaLib/Classes/Public/CDVURLProtocol.m:66:133: 'size' is deprecated: first deprecated in iOS 9.0 - Use requestImageDataForAsset:options:resultHandler: on PHImageManager to request image data for a PHAsset from the Photos framework instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:16.15]: ▸ NSUInteger bufferSize = [assetRepresentation getBytes:buffer fromOffset:0.0 length:(NSUInteger)[assetRepresentation size] error:nil];
INFO [2018-01-08 16:45:16.15]: ▸ ^
INFO [2018-01-08 16:45:16.15]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/CordovaLib/Classes/Public/CDVURLProtocol.m:66:62: 'getBytes:fromOffset:length:error:' is deprecated: first deprecated in iOS 9.0 - Use requestImageDataForAsset:options:resultHandler: on PHImageManager to request image data for a PHAsset from the Photos framework instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:16.15]: ▸ NSUInteger bufferSize = [assetRepresentation getBytes:buffer fromOffset:0.0 length:(NSUInteger)[assetRepresentation size] error:nil];
INFO [2018-01-08 16:45:16.16]: ▸ ^
INFO [2018-01-08 16:45:16.16]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/CordovaLib/Classes/Public/CDVURLProtocol.m:60:63: 'ALAsset' is deprecated: first deprecated in iOS 9.0 - Use PHAsset from the Photos framework instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:16.16]: ▸ ALAssetsLibraryAssetForURLResultBlock resultBlock = ^(ALAsset* asset) {
INFO [2018-01-08 16:45:16.16]: ▸ ^
INFO [2018-01-08 16:45:16.16]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/CordovaLib/Classes/Public/CDVURLProtocol.m:63:17: 'ALAssetRepresentation' is deprecated: first deprecated in iOS 9.0 - Use PHImageRequestOptions with the PHImageManager from the Photos framework instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:16.16]: ▸ ALAssetRepresentation* assetRepresentation = [asset defaultRepresentation];
INFO [2018-01-08 16:45:16.16]: ▸            ^
INFO [2018-01-08 16:45:16.17]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/CordovaLib/Classes/Public/CDVURLProtocol.m:74:9: 'ALAssetsLibraryAccessFailureBlock' is deprecated: first deprecated in iOS 9.0 - Use the Photos framework instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:16.17]: ▸ ALAssetsLibraryAccessFailureBlock failureBlock = ^(NSError* error) {
INFO [2018-01-08 16:45:16.17]: ▸            ^
INFO [2018-01-08 16:45:16.17]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/CordovaLib/Classes/Public/CDVURLProtocol.m:79:9: 'ALAssetsLibrary' is deprecated: first deprecated in iOS 9.0 - Use PHPhotoLibrary from the Photos framework instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:16.17]: ▸ ALAssetsLibrary* assetsLibrary = [[ALAssetsLibrary alloc] init];
INFO [2018-01-08 16:45:16.17]: ▸                ^
INFO [2018-01-08 16:45:16.17]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/CordovaLib/Classes/Public/CDVURLProtocol.m:79:60: 'ALAssetsLibrary' is deprecated: first deprecated in iOS 9.0 - Use PHPhotoLibrary from the Photos framework instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:16.17]: ▸ ALAssetsLibrary* assetsLibrary = [[ALAssetsLibrary alloc] init];
INFO [2018-01-08 16:45:16.17]: ▸            ^
INFO [2018-01-08 16:45:16.18]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/CordovaLib/Classes/Public/CDVURLProtocol.m:80:24: 'assetForURL:resultBlock:failureBlock:' is deprecated: first deprecated in iOS 9.0 - Use fetchAssetsWithLocalIdentifiers:options: on PHAsset to fetch assets by local identifier (or to lookup PHAssets by a previously known ALAssetPropertyAssetURL use fetchAssetsWithALAssetURLs:options:) from the Photos framework instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:16.18]: ▸ [assetsLibrary assetForURL:url resultBlock:resultBlock failureBlock:failureBlock];
INFO [2018-01-08 16:45:16.18]: ▸            ^
INFO [2018-01-08 16:45:16.18]: ▸ Compiling CDVLogger.m
INFO [2018-01-08 16:45:16.19]: ▸ Compiling CDVUIWebViewEngine.m
INFO [2018-01-08 16:45:16.19]: ▸ Compiling CDVPlugin.m
INFO [2018-01-08 16:45:16.19]: ▸ Compiling CDVLocalStorage.m
INFO [2018-01-08 16:45:16.19]: ▸ Compiling CDVIntentAndNavigationFilter.m
INFO [2018-01-08 16:45:16.20]: ▸ Building library libCordova.a
INFO [2018-01-08 16:45:16.20]: ▸ Building Locals Menu/Locals Menu [Debug]
INFO [2018-01-08 16:45:16.20]: ▸ Check Dependencies
INFO [2018-01-08 16:45:16.20]: ▸ Running script 'Copy www directory'
INFO [2018-01-08 16:45:16.85]: ▸ Copying Locals\ Menu/Resources/GoogleMaps.bundle
INFO [2018-01-08 16:45:16.88]: ▸ Compiling MainViewController.xib
INFO [2018-01-08 16:45:18.41]: ▸ Compiling DatePicker.xib
INFO [2018-01-08 16:45:18.83]: ▸ Compiling CDVLaunchScreen.storyboard
INFO [2018-01-08 16:45:19.98]: ▸ Processing Locals Menu-Info.plist
INFO [2018-01-08 16:45:22.40]: ▸ Compiling NativeGeocoder.swift
INFO [2018-01-08 16:45:25.42]: ▸ Precompiling Menu-Prefix.pch
INFO [2018-01-08 16:45:27.40]: ▸ Precompiling Menu-Prefix.pch
INFO [2018-01-08 16:45:27.46]: ▸ Compiling main.m
INFO [2018-01-08 16:45:27.67]: ▸ Compiling AppDelegate.m
INFO [2018-01-08 16:45:27.72]: ▸ Compiling MainViewController.m
INFO [2018-01-08 16:45:27.73]: ▸ Compiling DatePicker.m
INFO [2018-01-08 16:45:27.83]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-datepicker/DatePicker.m:19:23: 'UIPopoverController' is deprecated: first deprecated in iOS 9.0 - UIPopoverController is deprecated. Popovers are now implemented as UIViewController presentations. Use a modal presentation style of UIModalPresentationPopover and UIPopoverPresentationController. [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:27.83]: ▸ @property (nonatomic) UIPopoverController *datePickerPopover;
INFO [2018-01-08 16:45:27.83]: ▸ ^
INFO [2018-01-08 16:45:27.84]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-datepicker/DatePicker.m:164:45: 'UIPopoverController' is deprecated: first deprecated in iOS 9.0 - UIPopoverController is deprecated. Popovers are now implemented as UIViewController presentations. Use a modal presentation style of UIModalPresentationPopover and UIPopoverPresentationController. [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:27.84]: ▸ - (void)popoverControllerDidDismissPopover:(UIPopoverController *)popoverController {
INFO [2018-01-08 16:45:27.84]: ▸            ^
INFO [2018-01-08 16:45:27.85]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-datepicker/DatePicker.m:170:4: 'UIPopoverController' is deprecated: first deprecated in iOS 9.0 - UIPopoverController is deprecated. Popovers are now implemented as UIViewController presentations. Use a modal presentation style of UIModalPresentationPopover and UIPopoverPresentationController. [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:27.85]: ▸ - (UIPopoverController *)createPopover:(NSMutableDictionary *)options {
INFO [2018-01-08 16:45:27.85]: ▸            ^
INFO [2018-01-08 16:45:27.85]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-datepicker/DatePicker.m:188:3: 'UIPopoverController' is deprecated: first deprecated in iOS 9.0 - UIPopoverController is deprecated. Popovers are now implemented as UIViewController presentations. Use a modal presentation style of UIModalPresentationPopover and UIPopoverPresentationController. [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:27.85]: ▸ UIPopoverController *popover = [[UIPopoverController alloc] initWithContentViewController:datePickerViewController];
INFO [2018-01-08 16:45:27.85]: ▸            ^
INFO [2018-01-08 16:45:27.86]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-datepicker/DatePicker.m:188:56: 'UIPopoverController' is deprecated: first deprecated in iOS 9.0 - UIPopoverController is deprecated. Popovers are now implemented as UIViewController presentations. Use a modal presentation style of UIModalPresentationPopover and UIPopoverPresentationController. [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:27.86]: ▸ UIPopoverController *popover = [[UIPopoverController alloc] initWithContentViewController:datePickerViewController];
INFO [2018-01-08 16:45:27.86]: ▸            ^
INFO [2018-01-08 16:45:27.86]: ▸ Compiling CDVDevice.m
INFO [2018-01-08 16:45:27.86]: ▸ Compiling CDVLocation.m
INFO [2018-01-08 16:45:28.03]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-geolocation/CDVLocation.m:85:10: unused variable 'locationServicesEnabledInstancePropertyAvailable' [-Wunused-variable]
INFO [2018-01-08 16:45:28.04]: ▸ BOOL locationServicesEnabledInstancePropertyAvailable = [self.locationManager respondsToSelector:@selector(locationServicesEnabled)]; // iOS 3.x
INFO [2018-01-08 16:45:28.04]: ▸            ^
INFO [2018-01-08 16:45:28.04]: ▸ Compiling CDVGlobalization.m
INFO [2018-01-08 16:45:28.04]: ▸ Compiling FacebookConnectPlugin.m
INFO [2018-01-08 16:45:28.52]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-facebook4/FacebookConnectPlugin.m:275:17: 'contentTitle' is deprecated: `contentTitle` is deprecated from Graph API 2.9 [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:28.52]: ▸ content.contentTitle = [params objectForKey:@"caption"];
INFO [2018-01-08 16:45:28.52]: ▸          ^
INFO [2018-01-08 16:45:28.52]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-facebook4/FacebookConnectPlugin.m:276:17: 'imageURL' is deprecated: `imageURL` is deprecated from Graph API 2.9 [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:28.52]: ▸ content.imageURL = [NSURL URLWithString:[params objectForKey:@"picture"]];
INFO [2018-01-08 16:45:28.53]: ▸                                                                ^
INFO [2018-01-08 16:45:28.53]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-facebook4/FacebookConnectPlugin.m:277:17: 'contentDescription' is deprecated: `contentDescription` is deprecated from Graph API 2.9 [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:28.53]: ▸ content.contentDescription = [params objectForKey:@"description"];
INFO [2018-01-08 16:45:28.53]: ▸                                                                ^
INFO [2018-01-08 16:45:28.53]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-facebook4/FacebookConnectPlugin.m:287:17: 'contentTitle' is deprecated: `contentTitle` is deprecated from Graph API 2.9 [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:28.53]: ▸ content.contentTitle = params[@"caption"];
INFO [2018-01-08 16:45:28.53]: ▸                                                                ^
INFO [2018-01-08 16:45:28.54]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-facebook4/FacebookConnectPlugin.m:288:17: 'imageURL' is deprecated: `imageURL` is deprecated from Graph API 2.9 [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:28.54]: ▸ content.imageURL = [NSURL URLWithString:params[@"picture"]];
INFO [2018-01-08 16:45:28.54]: ▸                                                                ^
INFO [2018-01-08 16:45:28.54]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-facebook4/FacebookConnectPlugin.m:289:17: 'contentDescription' is deprecated: `contentDescription` is deprecated from Graph API 2.9 [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:28.54]: ▸ content.contentDescription = params[@"description"];
INFO [2018-01-08 16:45:28.54]: ▸                                                                ^
INFO [2018-01-08 16:45:28.54]: ▸ Compiling UniversalAnalyticsPlugin.m
INFO [2018-01-08 16:45:28.55]: ▸ Compiling PluginCircle.m
INFO [2018-01-08 16:45:28.55]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-googlemaps/PluginCircle.m:299:18: unused variable 'circle' [-Wunused-variable]
INFO [2018-01-08 16:45:28.55]: ▸ GMSCircle *circle = (GMSCircle *)[self.mapCtrl.objects objectForKey:key];
INFO [2018-01-08 16:45:28.55]: ▸                                                                ^
INFO [2018-01-08 16:45:28.55]: ▸ Compiling PluginGeocoder.m
INFO [2018-01-08 16:45:28.55]: ▸ Compiling Environment.m
INFO [2018-01-08 16:45:28.55]: ▸ Compiling CordovaGoogleMaps.m
INFO [2018-01-08 16:45:28.56]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-googlemaps/CordovaGoogleMaps.m:35:11: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:28.56]: ▸ UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"API key is not setted."
INFO [2018-01-08 16:45:28.56]: ▸                  ^
INFO [2018-01-08 16:45:28.56]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-googlemaps/CordovaGoogleMaps.m:35:46: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:28.56]: ▸ UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"API key is not setted."
INFO [2018-01-08 16:45:28.56]: ▸            ^
INFO [2018-01-08 16:45:28.56]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-googlemaps/CordovaGoogleMaps.m:363:9: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:28.57]: ▸ UIAlertView *alertView = [[UIAlertView alloc]
INFO [2018-01-08 16:45:28.57]: ▸            ^
INFO [2018-01-08 16:45:28.57]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-googlemaps/CordovaGoogleMaps.m:363:48: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:28.57]: ▸ UIAlertView *alertView = [[UIAlertView alloc]
INFO [2018-01-08 16:45:28.57]: ▸            ^
INFO [2018-01-08 16:45:28.57]: ▸ Compiling GoogleMapsViewController.m
INFO [2018-01-08 16:45:28.62]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-googlemaps/GoogleMapsViewController.m:791:23: 'sizeWithFont:constrainedToSize:' is deprecated: first deprecated in iOS 7.0 - Use -boundingRectWithSize:options:attributes:context: [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:28.62]: ▸ textSize = [title sizeWithFont:titleFont constrainedToSize: CGSizeMake(mapView.frame.size.width - 13, mapView.frame.size.height - 13)];
INFO [2018-01-08 16:45:28.62]: ▸            ^
INFO [2018-01-08 16:45:28.63]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-googlemaps/GoogleMapsViewController.m:798:30: 'sizeWithFont:constrainedToSize:' is deprecated: first deprecated in iOS 7.0 - Use -boundingRectWithSize:options:attributes:context: [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:28.63]: ▸ snippetSize = [snippet sizeWithFont:snippetFont constrainedToSize: CGSizeMake(mapView.frame.size.width - 13, mapView.frame.size.height - 13)];
INFO [2018-01-08 16:45:28.63]: ▸ ^
INFO [2018-01-08 16:45:28.63]: ▸ Compiling PluginGroundOverlay.m
INFO [2018-01-08 16:45:28.63]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-googlemaps/PluginGroundOverlay.m:472:25: unused variable 'groundOverlay' [-Wunused-variable]
INFO [2018-01-08 16:45:28.63]: ▸ GMSGroundOverlay *groundOverlay = (GMSGroundOverlay *)[self.mapCtrl.objects objectForKey:key];
INFO [2018-01-08 16:45:28.63]: ▸ ^
INFO [2018-01-08 16:45:28.64]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-googlemaps/PluginGroundOverlay.m:525:26: 'sendAsynchronousRequest:queue:completionHandler:' is deprecated: first deprecated in iOS 9.0 - Use [NSURLSession dataTaskWithRequest:completionHandler:] (see NSURLSession.h [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:28.64]: ▸ [NSURLConnection sendAsynchronousRequest:req
INFO [2018-01-08 16:45:28.64]: ▸                         ^
INFO [2018-01-08 16:45:28.65]: ▸ Compiling PluginKmlOverlay.m
INFO [2018-01-08 16:45:28.65]: ▸ Compiling PluginMap.m
INFO [2018-01-08 16:45:28.97]: ▸ Compiling PluginMarker.m
INFO [2018-01-08 16:45:29.05]: ▸ Compiling PluginUtil.m
INFO [2018-01-08 16:45:29.05]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-googlemaps/PluginUtil.m:136:19: assigning to 'id<CAAnimationDelegate> _Nullable' from incompatible type 'CAAnimationGroup *const __strong'
INFO [2018-01-08 16:45:29.05]: ▸ self.delegate = self;
INFO [2018-01-08 16:45:29.05]: ▸ ^
INFO [2018-01-08 16:45:29.06]: ▸ Compiling PluginPolygon.m
INFO [2018-01-08 16:45:29.06]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-googlemaps/PluginPolygon.m:225:19: unused variable 'polygon' [-Wunused-variable]
INFO [2018-01-08 16:45:29.06]: ▸ GMSPolygon *polygon = (GMSPolygon *)[self.mapCtrl.objects objectForKey:polygonKey];
INFO [2018-01-08 16:45:29.06]: ▸                   ^ ~~~~
INFO [2018-01-08 16:45:29.06]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-googlemaps/PluginPolygon.m:388:19: unused variable 'polygon' [-Wunused-variable]
INFO [2018-01-08 16:45:29.06]: ▸ GMSPolygon *polygon = (GMSPolygon *)[self.mapCtrl.objects objectForKey:polygonKey];
INFO [2018-01-08 16:45:29.06]: ▸                   ^
INFO [2018-01-08 16:45:29.06]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-googlemaps/PluginPolygon.m:638:19: unused variable 'polygon' [-Wunused-variable]
INFO [2018-01-08 16:45:29.06]: ▸ GMSPolygon *polygon = [self.mapCtrl.objects objectForKey:polygonKey];
INFO [2018-01-08 16:45:29.06]: ▸                   ^
INFO [2018-01-08 16:45:29.06]: ▸ Compiling PluginPolyline.m
INFO [2018-01-08 16:45:29.06]: ▸ Compiling PluginTileProvider.m
INFO [2018-01-08 16:45:29.07]: ▸ Compiling TBXML.m
INFO [2018-01-08 16:45:29.07]: ▸ Compiling PluginTileOverlay.m
INFO [2018-01-08 16:45:29.07]: ▸ Compiling NSData+Base64.m
INFO [2018-01-08 16:45:29.07]: ▸ Compiling GMSCoordinateBounds+Geometry.m
INFO [2018-01-08 16:45:29.07]: ▸ Compiling MyPluginLayer.m
INFO [2018-01-08 16:45:29.19]: ▸ Compiling MyPluginLayerDebugView.m
INFO [2018-01-08 16:45:29.19]: ▸ Compiling MyPluginScrollView.m
INFO [2018-01-08 16:45:29.20]: ▸ Compiling PluginMarkerCluster.m
INFO [2018-01-08 16:45:29.41]: ▸ Compiling UIImageCache.m
INFO [2018-01-08 16:45:29.41]: ▸ Compiling CDVSplashScreen.m
INFO [2018-01-08 16:45:29.42]: ▸ Compiling CDVViewController+SplashScreen.m
INFO [2018-01-08 16:45:29.42]: ▸ Compiling CDVStatusBar.m
INFO [2018-01-08 16:45:29.42]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-statusbar/CDVStatusBar.m:288:44: 'setStatusBarStyle:' is deprecated: first deprecated in iOS 9.0 - Use -[UIViewController preferredStatusBarStyle] [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:29.42]: ▸ [[UIApplication sharedApplication] setStatusBarStyle:style];
INFO [2018-01-08 16:45:29.42]: ▸                   ^
INFO [2018-01-08 16:45:29.43]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-statusbar/CDVStatusBar.m:385:14: 'setStatusBarHidden:' is deprecated: first deprecated in iOS 9.0 - Use -[UIViewController prefersStatusBarHidden] [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:29.43]: ▸ [app setStatusBarHidden:YES];
INFO [2018-01-08 16:45:29.43]: ▸                                                  ^
INFO [2018-01-08 16:45:29.44]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-statusbar/CDVStatusBar.m:418:14: 'setStatusBarHidden:' is deprecated: first deprecated in iOS 9.0 - Use -[UIViewController prefersStatusBarHidden] [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:29.44]: ▸ [app setStatusBarHidden:NO];
INFO [2018-01-08 16:45:29.44]: ▸                                                               ^
INFO [2018-01-08 16:45:29.44]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-statusbar/CDVStatusBar.m:502:48: 'applicationFrame' is deprecated: first deprecated in iOS 9.0 - Use -[UIScreen bounds] [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:29.44]: ▸ CGRect bounds = [[UIScreen mainScreen] applicationFrame];
INFO [2018-01-08 16:45:29.44]: ▸                                                               ^
INFO [2018-01-08 16:45:29.45]: ▸ Compiling IonicConstant.m
INFO [2018-01-08 16:45:29.45]: ▸ Compiling IonicDeploy.m
INFO [2018-01-08 16:45:29.78]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/IonicDeploy.m:355:29: comparison of distinct pointer types ('NSString *' and 'NSNull * _Nonnull') [-Wcompare-distinct-pointer-types]
INFO [2018-01-08 16:45:29.78]: ▸ if (uuid == nil || uuid == [NSNull null] || [uuid isEqualToString:@""] || [uuid isEqualToString:@"null"]) {
INFO [2018-01-08 16:45:29.78]: ▸                                      ^
INFO [2018-01-08 16:45:29.78]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/IonicDeploy.m:359:29: comparison of distinct pointer types ('NSString *' and 'NSNull * _Nonnull') [-Wcompare-distinct-pointer-types]
INFO [2018-01-08 16:45:29.78]: ▸ if (uuid == nil || uuid == [NSNull null] || [uuid isEqualToString:@""] || [uuid isEqualToString:@"null"]) {
INFO [2018-01-08 16:45:29.78]: ▸                        ~~~~ ^  ~~~~~~~~~~~~~
INFO [2018-01-08 16:45:29.78]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/IonicDeploy.m:477:64: implicit conversion from enumeration type 'enum NSRegularExpressionOptions' to different enumeration type 'NSMatchingOptions' (aka 'enum NSMatchingOptions') [-Wenum-conversion]
INFO [2018-01-08 16:45:29.79]: ▸ options:NSRegularExpressionCaseInsensitive
INFO [2018-01-08 16:45:29.79]: ▸                        ~~~~ ^  ~~~~~~~~~~~~~
INFO [2018-01-08 16:45:29.79]: ▸ Compiling Download.m
INFO [2018-01-08 16:45:29.79]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/Download.m:84:48: 'initWithRequest:delegate:startImmediately:' is deprecated: first deprecated in iOS 9.0 - Use NSURLSession (see NSURLSession.h) [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:29.79]: ▸ self.connection = [[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:NO];
INFO [2018-01-08 16:45:29.79]: ▸                                                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
INFO [2018-01-08 16:45:29.79]: ▸ Compiling DownloadManager.m
INFO [2018-01-08 16:45:29.79]: ▸ Compiling SSZipArchive.m
INFO [2018-01-08 16:45:29.80]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/SSZipArchive.m:381:18: 'NSYearCalendarUnit' is deprecated: first deprecated in iOS 8.0 - Use NSCalendarUnitYear instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:29.80]: ▸ uint flags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit;
INFO [2018-01-08 16:45:29.80]: ▸ ^
INFO [2018-01-08 16:45:29.80]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/SSZipArchive.m:381:39: 'NSMonthCalendarUnit' is deprecated: first deprecated in iOS 8.0 - Use NSCalendarUnitMonth instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:29.80]: ▸ uint flags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit;
INFO [2018-01-08 16:45:29.80]: ▸         ^
INFO [2018-01-08 16:45:29.80]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/SSZipArchive.m:381:61: 'NSDayCalendarUnit' is deprecated: first deprecated in iOS 8.0 - Use NSCalendarUnitDay instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:29.81]: ▸ uint flags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit;
INFO [2018-01-08 16:45:29.81]: ▸         ^
INFO [2018-01-08 16:45:29.81]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/SSZipArchive.m:381:81: 'NSHourCalendarUnit' is deprecated: first deprecated in iOS 8.0 - Use NSCalendarUnitHour instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:29.81]: ▸ uint flags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit;
INFO [2018-01-08 16:45:29.81]: ▸         ^
INFO [2018-01-08 16:45:29.81]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/SSZipArchive.m:381:102: 'NSMinuteCalendarUnit' is deprecated: first deprecated in iOS 8.0 - Use NSCalendarUnitMinute instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:29.81]: ▸ uint flags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit;
INFO [2018-01-08 16:45:29.81]: ▸         ^
INFO [2018-01-08 16:45:29.82]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/SSZipArchive.m:381:125: 'NSSecondCalendarUnit' is deprecated: first deprecated in iOS 8.0 - Use NSCalendarUnitSecond instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:29.82]: ▸ uint flags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit;
INFO [2018-01-08 16:45:29.82]: ▸         ^
INFO [2018-01-08 16:45:29.82]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/SSZipArchive.m:509:62: 'NSGregorianCalendar' is deprecated: first deprecated in iOS 8.0 - Use NSCalendarIdentifierGregorian instead [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:29.82]: ▸ gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
INFO [2018-01-08 16:45:29.82]: ▸         ^
INFO [2018-01-08 16:45:29.82]: ▸ Compiling ioapi.c
INFO [2018-01-08 16:45:30.10]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/ioapi.c:124:48: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
INFO [2018-01-08 16:45:30.10]: ▸ ioposix->filenameLength = strlen(filename) + 1;
INFO [2018-01-08 16:45:30.10]: ▸                                    ^
INFO [2018-01-08 16:45:30.10]: ▸ Compiling unzip.c
INFO [2018-01-08 16:45:30.51]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/unzip.c:649:27: implicit conversion loses integer precision: 'uLong' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32]
INFO [2018-01-08 16:45:30.51]: ▸ number_disk_next = s->number_disk;
INFO [2018-01-08 16:45:30.51]: ▸                             ~ ~~~~~~~~~~~~~~~~~^~~
INFO [2018-01-08 16:45:30.51]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/unzip.c:656:45: implicit conversion loses integer precision: 'uLong' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32]
INFO [2018-01-08 16:45:30.51]: ▸ number_disk_next = s->cur_file_info.disk_num_start;
INFO [2018-01-08 16:45:30.51]: ▸                      ~ ~~~^~~~~~~~~~~
INFO [2018-01-08 16:45:30.51]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/unzip.c:1393:84: implicit conversion loses integer precision: 'long' to 'uInt' (aka 'unsigned int') [-Wshorten-64-to-32]
INFO [2018-01-08 16:45:30.51]: ▸ bytes_not_read = pfile_in_zip_read_info->read_buffer + UNZ_BUFSIZE -
INFO [2018-01-08 16:45:30.51]: ▸                          ~ ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~
INFO [2018-01-08 16:45:30.51]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/unzip.c:1410:30: implicit conversion loses integer precision: 'uLong' (aka 'unsigned long') to 'uInt' (aka 'unsigned int') [-Wshorten-64-to-32]
INFO [2018-01-08 16:45:30.51]: ▸ bytes_read = ZREAD64(pfile_in_zip_read_info->z_filefunc, pfile_in_zip_read_info->filestream,
INFO [2018-01-08 16:45:30.51]: ▸                                ~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
INFO [2018-01-08 16:45:30.52]: ▸ Compiling zip.c
INFO [2018-01-08 16:45:30.60]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/zip.c:513:52: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
INFO [2018-01-08 16:45:30.60]: ▸ number_disk_next = zi->number_disk_with_CD - 1;
INFO [2018-01-08 16:45:30.60]: ▸                                                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
INFO [2018-01-08 16:45:30.60]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/zip.c:538:40: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
INFO [2018-01-08 16:45:30.60]: ▸ number_disk_next = zi->number_disk + 1;
INFO [2018-01-08 16:45:30.60]: ▸                          ~ ~~~~~~~~~~~~~~~~~~~~~~~~^~~
INFO [2018-01-08 16:45:30.60]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/zip.c:1431:19: implicit conversion loses integer precision: 'uLong' (aka 'unsigned long') to 'uInt' (aka 'unsigned int') [-Wshorten-64-to-32]
INFO [2018-01-08 16:45:30.60]: ▸ written = ZWRITE64(zi->z_filefunc, zi->filestream, zi->ci.buffered_data + total_written, max_write);
INFO [2018-01-08 16:45:30.60]: ▸                      ~ ~~~~~~~~~~~~~~~~^~~
INFO [2018-01-08 16:45:30.60]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/zip.c:1787:46: implicit conversion loses integer precision: 'uLong' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32]
INFO [2018-01-08 16:45:30.60]: ▸ zipGoToSpecificDisk(file, zi->ci.number_disk, 1);
INFO [2018-01-08 16:45:30.60]: ▸                                                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
INFO [2018-01-08 16:45:30.60]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/zip.c:1821:39: implicit conversion loses integer precision: 'uLong' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32]
INFO [2018-01-08 16:45:30.61]: ▸ zipGoToSpecificDisk(file, cur_number_disk, 1);
INFO [2018-01-08 16:45:30.61]: ▸             ~~~~~~~~~~~~~~~~~~~       ~~~~~~~^~~~~~~~~~~
INFO [2018-01-08 16:45:30.61]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/zip.c:1880:25: implicit conversion loses integer precision: 'uLong' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32]
INFO [2018-01-08 16:45:30.61]: ▸ write = ZWRITE64(zi->z_filefunc, zi->filestream, ldi->data, ldi->filled_in_this_block);
INFO [2018-01-08 16:45:30.61]: ▸             ~~~~~~~~~~~~~~~~~~~       ^~~~~~~~~~~~~~~
INFO [2018-01-08 16:45:30.61]: ▸ Compiling adler32.c
INFO [2018-01-08 16:45:30.61]: ▸ Compiling compress.c
INFO [2018-01-08 16:45:30.61]: ▸ Compiling crc32.c
INFO [2018-01-08 16:45:30.61]: ▸ Compiling deflate.c
INFO [2018-01-08 16:45:30.61]: ▸ Compiling gzclose.c
INFO [2018-01-08 16:45:30.61]: ▸ Compiling gzlib.c
INFO [2018-01-08 16:45:30.62]: ▸ Compiling gzread.c
INFO [2018-01-08 16:45:30.62]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/gzread.c:30:15: implicit conversion loses integer precision: 'ssize_t' (aka 'long') to 'int' [-Wshorten-64-to-32]
INFO [2018-01-08 16:45:30.62]: ▸ ret = read(state->fd, buf + *have, len - *have);
INFO [2018-01-08 16:45:30.62]: ▸                                                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
INFO [2018-01-08 16:45:30.62]: ▸ Compiling gzwrite.c
INFO [2018-01-08 16:45:30.62]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/gzwrite.c:84:15: implicit conversion loses integer precision: 'ssize_t' (aka 'long') to 'int' [-Wshorten-64-to-32]
INFO [2018-01-08 16:45:30.62]: ▸ got = write(state->fd, strm->next_in, strm->avail_in);
INFO [2018-01-08 16:45:30.62]: ▸             ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
INFO [2018-01-08 16:45:30.62]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/gzwrite.c:101:33: implicit conversion loses integer precision: 'ssize_t' (aka 'long') to 'int' [-Wshorten-64-to-32]
INFO [2018-01-08 16:45:30.62]: ▸ if (have && ((got = write(state->fd, state->x.next, have)) < 0 ||
INFO [2018-01-08 16:45:30.62]: ▸             ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
INFO [2018-01-08 16:45:30.62]: ▸ Compiling infback.c
INFO [2018-01-08 16:45:30.63]: ▸ Compiling inffast.c
INFO [2018-01-08 16:45:30.63]: ▸ Compiling inflate.c
INFO [2018-01-08 16:45:30.63]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/inflate.c:1507:61: shifting a negative signed value is undefined [-Wshift-negative-value]
INFO [2018-01-08 16:45:30.63]: ▸ if (strm == Z_NULL || strm->state == Z_NULL) return -1L << 16;
INFO [2018-01-08 16:45:30.63]: ▸                               ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
INFO [2018-01-08 16:45:30.63]: ▸ Compiling inftrees.c
INFO [2018-01-08 16:45:30.63]: ▸ Compiling trees.c
INFO [2018-01-08 16:45:30.63]: ▸ Compiling uncompr.c
INFO [2018-01-08 16:45:30.63]: ▸ Compiling zutil.c
INFO [2018-01-08 16:45:30.63]: ▸ Compiling Base64.m
INFO [2018-01-08 16:45:30.64]: ▸ Compiling UNIHTTPClientHelper.m
INFO [2018-01-08 16:45:30.66]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/UNIHTTPClientHelper.m:51:51: 'CFURLCreateStringByAddingPercentEscapes' is deprecated: first deprecated in iOS 9.0 - Use [NSString stringByAddingPercentEncodingWithAllowedCharacters:] instead, which always uses the recommended UTF-8 encoding, and which encodes for a specific URL component or subcomponent (since each URL component or subcomponent has different rules for what characters are valid). [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:30.66]: ▸ NSString* result = (NSString *)CFBridgingRelease(CFURLCreateStringByAddingPercentEscapes(
INFO [2018-01-08 16:45:30.66]: ▸                                                         ~~~ ^
INFO [2018-01-08 16:45:30.66]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/UNIHTTPClientHelper.m:127:101: values of type 'NSUInteger' should not be used as format arguments; add an explicit cast to 'unsigned long' instead [-Wformat]
INFO [2018-01-08 16:45:30.67]: ▸ [body appendData:[[NSString stringWithFormat:@"Content-Length: %d\r\n\r\n", data.length] dataUsingEncoding:NSUTF8StringEncoding]];
INFO [2018-01-08 16:45:30.67]: ▸             ^
INFO [2018-01-08 16:45:30.67]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/UNIHTTPClientHelper.m:206:38: 'sendSynchronousRequest:returningResponse:error:' is deprecated: first deprecated in iOS 9.0 - Use [NSURLSession dataTaskWithRequest:completionHandler:] (see NSURLSession.h [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:30.67]: ▸ NSData * data = [NSURLConnection sendSynchronousRequest:requestObj returningResponse:&response error:error];
INFO [2018-01-08 16:45:30.67]: ▸                                                                                        ~~           ^~~~~~~~~~~
INFO [2018-01-08 16:45:30.67]: ▸ Compiling UNIHTTPRequest.m
INFO [2018-01-08 16:45:30.68]: ▸ Compiling UNIHTTPRequestWithBody.m
INFO [2018-01-08 16:45:30.68]: ▸ Compiling UNIRest.m
INFO [2018-01-08 16:45:30.76]: ▸ Compiling UNIUrlConnection.m
INFO [2018-01-08 16:45:30.76]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/ionic-plugin-deploy/UNIUrlConnection.m:53:43: 'initWithRequest:delegate:startImmediately:' is deprecated: first deprecated in iOS 9.0 - Use NSURLSession (see NSURLSession.h) [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:30.76]: ▸ connection = [[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:NO];
INFO [2018-01-08 16:45:30.76]: ▸ ^
INFO [2018-01-08 16:45:30.77]: ▸ Compiling UNIBaseRequest.m
INFO [2018-01-08 16:45:30.77]: ▸ Compiling UNIBodyRequest.m
INFO [2018-01-08 16:45:30.78]: ▸ Compiling UNISimpleRequest.m
INFO [2018-01-08 16:45:30.78]: ▸ Compiling UNIHTTPBinaryResponse.m
INFO [2018-01-08 16:45:30.78]: ▸ Compiling UNIHTTPJsonResponse.m
INFO [2018-01-08 16:45:30.79]: ▸ Compiling UNIHTTPResponse.m
INFO [2018-01-08 16:45:30.80]: ▸ Compiling UNIHTTPStringResponse.m
INFO [2018-01-08 16:45:30.85]: ▸ Compiling UNIJsonNode.m
INFO [2018-01-08 16:45:30.86]: ▸ Compiling IonicKeyboard.m
INFO [2018-01-08 16:45:30.90]: ▸ Compiling CDVWKWebViewEngine.m
INFO [2018-01-08 16:45:32.29]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-ionic-webview/CDVWKWebViewEngine.m:148:23: 'mediaPlaybackRequiresUserAction' is deprecated: first deprecated in iOS 9.0 [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:32.29]: ▸ configuration.mediaPlaybackRequiresUserAction = YES;
INFO [2018-01-08 16:45:32.29]: ▸ ^
INFO [2018-01-08 16:45:32.29]: ▸ ⚠️  /Users/admin/dev/locals-menu/platforms/ios/Locals Menu/Plugins/cordova-plugin-ionic-webview/CDVWKWebViewEngine.m:587:91: 'stringByAddingPercentEscapesUsingEncoding:' is deprecated: first deprecated in iOS 9.0 - Use -stringByAddingPercentEncodingWithAllowedCharacters: instead, which always uses the recommended UTF-8 encoding, and which encodes for a specific URL component or subcomponent since each URL component or subcomponent has different rules for what characters are valid. [-Wdeprecated-declarations]
INFO [2018-01-08 16:45:32.29]: ▸ errorUrl = [NSURL URLWithString:[NSString stringWithFormat:@"?error=%@", [message stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]] relativeToURL:errorUrl];
INFO [2018-01-08 16:45:32.30]: ▸                            ^
INFO [2018-01-08 16:45:32.30]: ▸ Compiling CDVWKWebViewUIDelegate.m
INFO [2018-01-08 16:45:32.30]: ▸ Compiling CDVWKProcessPoolFactory.m
INFO [2018-01-08 16:45:32.30]: ▸ Compiling GCDWebServer.m
INFO [2018-01-08 16:45:32.30]: ▸ Compiling GCDWebServerConnection.m
INFO [2018-01-08 16:45:32.30]: ▸ Compiling GCDWebServerFunctions.m
INFO [2018-01-08 16:45:32.31]: ▸ Compiling GCDWebServerRequest.m
INFO [2018-01-08 16:45:32.31]: ▸ Compiling GCDWebServerResponse.m
INFO [2018-01-08 16:45:32.31]: ▸ Compiling GCDWebServerDataRequest.m
INFO [2018-01-08 16:45:32.31]: ▸ Compiling GCDWebServerFileRequest.m
INFO [2018-01-08 16:45:32.31]: ▸ Compiling GCDWebServerMultiPartFormRequest.m
INFO [2018-01-08 16:45:32.31]: ▸ Compiling GCDWebServerURLEncodedFormRequest.m
INFO [2018-01-08 16:45:32.32]: ▸ Compiling GCDWebServerDataResponse.m
INFO [2018-01-08 16:45:32.32]: ▸ Compiling GCDWebServerErrorResponse.m
INFO [2018-01-08 16:45:32.32]: ▸ Compiling GCDWebServerFileResponse.m
INFO [2018-01-08 16:45:32.32]: ▸ Compiling GCDWebServerStreamedResponse.m
INFO [2018-01-08 16:45:32.32]: ▸ Linking Locals\
INFO [2018-01-08 16:45:33.06]: ▸ ⚠️  ld: instance method 'center' in category from /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/snapshot_derived20180108-45230-1sn88bl/Build/Intermediates.noindex/Locals Menu.build/Debug-iphonesimulator/Locals Menu.build/Objects-normal/x86_64/GMSCoordinateBounds+Geometry.o overrides method from class in Locals Menu/Plugins/com.googlemaps.ios/GoogleMapsBase.framework/GoogleMapsBase
INFO [2018-01-08 16:45:33.06]: ▸ Generating 'Locals\ Menu.app.dSYM'
INFO [2018-01-08 16:45:34.24]: Running Tests: ▸ Touching Locals\ Menu.app
INFO [2018-01-08 16:45:34.26]: ▸ Signing /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/snapshot_derived20180108-45230-1sn88bl/Build/Products/Debug-iphonesimulator/Locals\ Menu.app
INFO [2018-01-08 16:45:34.82]: ▸ Build Succeeded
INFO [2018-01-08 16:45:34.92]: ▸ 2018-01-08 16:45:34.921 xcodebuild[45334:843478]  IDETestOperationsObserverDebug: Writing diagnostic log for test session to:
INFO [2018-01-08 16:45:34.92]: ▸ /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/com.apple.dt.XCTest/IDETestRunSession-C2F301F9-63FF-4C33-9D7F-2A33BEE018FE/ionic-screen-shots-3E03965A-E119-4C01-8677-25C3AC4167DD/Session-ionic-screen-shots-2018-01-08_164534-c62mzf.log
INFO [2018-01-08 16:45:34.92]: ▸ 2018-01-08 16:45:34.921 xcodebuild[45334:842440] [MT] IDETestOperationsObserverDebug: (CF26C7EC-F758-44BC-961D-9A8BB83F3DCC) Beginning test session ionic-screen-shots-CF26C7EC-F758-44BC-961D-9A8BB83F3DCC at 2018-01-08 16:45:34.921 with Xcode 9C40b on target <DVTiPhoneSimulator: 0x7fa42c61e280> {
INFO [2018-01-08 16:45:34.92]: ▸ SimDevice: iPhone X (D65B3D69-9E61-4407-B75D-00C397764B2E, iOS 11.2, Booted)
INFO [2018-01-08 16:45:34.92]: ▸ } (11.2 (15C107))
INFO [2018-01-08 16:45:34.97]: ▸ Building CordovaLib/CordovaLib [Debug]
INFO [2018-01-08 16:45:34.97]: ▸ Check Dependencies
INFO [2018-01-08 16:45:35.06]: ▸ Building Locals Menu/Locals Menu [Debug]
INFO [2018-01-08 16:45:35.06]: ▸ Check Dependencies
INFO [2018-01-08 16:45:35.17]: ▸ Running script 'Copy www directory'
INFO [2018-01-08 16:45:36.12]: ▸ Processing Locals Menu-Info.plist
INFO [2018-01-08 16:45:36.17]: ▸ Generating 'Locals\ Menu.app.dSYM'
INFO [2018-01-08 16:45:37.82]: ▸ Signing /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/snapshot_derived20180108-45230-1sn88bl/Build/Products/Debug-iphonesimulator/Locals\ Menu.app
INFO [2018-01-08 16:45:38.71]: ▸ Building Locals Menu/ionic-screen-shots [Debug]
INFO [2018-01-08 16:45:38.71]: ▸ Check Dependencies
INFO [2018-01-08 16:45:38.72]: ▸ Copying Info.plist
INFO [2018-01-08 16:45:38.72]: ▸ Processing Info.plist
INFO [2018-01-08 16:45:38.73]: ▸ Copying /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/PrivateFrameworks/XCTAutomationSupport.framework
INFO [2018-01-08 16:45:38.75]: ▸ skipping copy phase strip, binary is code signed: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/PrivateFrameworks/XCTAutomationSupport.framework/XCTAutomationSupport
INFO [2018-01-08 16:45:38.75]: ▸ Copying /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework
INFO [2018-01-08 16:45:38.79]: ▸ skipping copy phase strip, binary is code signed: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/XCTest
INFO [2018-01-08 16:45:38.81]: ▸ Preprocessing /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Xcode/Agents/XCTRunner.app/Info.plist
INFO [2018-01-08 16:45:42.29]: ▸ Compiling ui-snapshots.swift
INFO [2018-01-08 16:45:42.99]: ▸ Compiling SnapshotHelper.swift
INFO [2018-01-08 16:45:43.64]: ▸ Linking ionic-screen-shots
INFO [2018-01-08 16:45:43.94]: ▸ Generating 'ionic-screen-shots.xctest.dSYM'
INFO [2018-01-08 16:45:45.57]: Running Tests: ▸ Touching ionic-screen-shots.xctest
INFO [2018-01-08 16:45:45.60]: ▸ Signing /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/snapshot_derived20180108-45230-1sn88bl/Build/Products/Debug-iphonesimulator/ionic-screen-shots-Runner.app/PlugIns/ionic-screen-shots.xctest
INFO [2018-01-08 16:47:21.51]: ▸ 2018-01-08 16:47:21.519 xcodebuild[45334:842440] Error Domain=IDETestOperationsObserverErrorDomain Code=13 "Timed out waiting for AX loaded notification If you believe this error represents a bug, please attach the log file at /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/com.apple.dt.XCTest/IDETestRunSession-C2F301F9-63FF-4C33-9D7F-2A33BEE018FE/ionic-screen-shots-3E03965A-E119-4C01-8677-25C3AC4167DD/Session-ionic-screen-shots-2018-01-08_164534-c62mzf.log" UserInfo={NSLocalizedDescription=Timed out waiting for AX loaded notification If you believe this error represents a bug, please attach the log file at /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/com.apple.dt.XCTest/IDETestRunSession-C2F301F9-63FF-4C33-9D7F-2A33BEE018FE/ionic-screen-shots-3E03965A-E119-4C01-8677-25C3AC4167DD/Session-ionic-screen-shots-2018-01-08_164534-c62mzf.log}
INFO [2018-01-08 16:47:21.52]: ▸ Testing failed:
INFO [2018-01-08 16:47:21.52]: ▸ Timed out waiting for AX loaded notification If you believe this error represents a bug, please attach the log file at /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/com.apple.dt.XCTest/IDETestRunSession-C2F301F9-63FF-4C33-9D7F-2A33BEE018FE/ionic-screen-shots-3E03965A-E119-4C01-8677-25C3AC4167DD/Session-ionic-screen-shots-2018-01-08_164534-c62mzf.log
INFO [2018-01-08 16:47:21.52]: ▸ ** TEST FAILED **
ERROR [2018-01-08 16:47:32.58]: Exit status: 65
WARN [2018-01-08 16:47:32.59]: Tests failed while running on: iPhone X
WARN [2018-01-08 16:47:32.59]: For more detail about the test failures, check the logs here:
WARN [2018-01-08 16:47:32.59]: /Users/admin/Library/Logs/snapshot/Locals Menu-ionic-screen-shots.log
WARN [2018-01-08 16:47:32.59]:  
WARN [2018-01-08 16:47:32.59]: You can also find the test result data here:
WARN [2018-01-08 16:47:32.59]: /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/snapshot_derived20180108-45230-1sn88bl/Logs/Test
WARN [2018-01-08 16:47:32.59]:  
WARN [2018-01-08 16:47:32.59]: You can find the incomplete screenshots here:
WARN [2018-01-08 16:47:32.59]: /Users/admin/Library/Caches/tools.fastlane/screenshots
WARN [2018-01-08 16:47:32.59]: /Users/admin/dev/locals-menu/fastlane/screenshots
ERROR [2018-01-08 16:47:32.59]: Caught error... 65
WARN [2018-01-08 16:47:32.59]: Retrying on devices: iPhone X
WARN [2018-01-08 16:47:32.59]: Number of retries remaining: 0
INFO [2018-01-08 16:47:32.59]: $ set -o pipefail && xcodebuild -scheme ionic-screen-shots -project platforms/ios/Locals\ Menu.xcodeproj -derivedDataPath '/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/snapshot_derived20180108-45230-1sn88bl' -destination 'platform=iOS Simulator,name=iPhone X,OS=11.2' FASTLANE_SNAPSHOT=YES build test | tee /Users/admin/Library/Logs/snapshot/Locals\ Menu-ionic-screen-shots.log | xcpretty 
INFO [2018-01-08 16:47:32.60]: ▸ Loading...
INFO [2018-01-08 16:47:33.73]: ▸ Building CordovaLib/CordovaLib [Debug]
INFO [2018-01-08 16:47:33.75]: ▸ Check Dependencies
INFO [2018-01-08 16:47:33.83]: ▸ Building Locals Menu/Locals Menu [Debug]
INFO [2018-01-08 16:47:33.83]: ▸ Check Dependencies
INFO [2018-01-08 16:47:34.30]: ▸ Running script 'Copy www directory'
INFO [2018-01-08 16:47:34.74]: ▸ Processing Locals Menu-Info.plist
INFO [2018-01-08 16:47:34.77]: ▸ Generating 'Locals\ Menu.app.dSYM'
INFO [2018-01-08 16:47:35.79]: ▸ Signing /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/snapshot_derived20180108-45230-1sn88bl/Build/Products/Debug-iphonesimulator/Locals\ Menu.app
INFO [2018-01-08 16:47:36.38]: ▸ Build Succeeded
INFO [2018-01-08 16:47:36.49]: ▸ 2018-01-08 16:47:36.494 xcodebuild[46043:851045]  IDETestOperationsObserverDebug: Writing diagnostic log for test session to:
INFO [2018-01-08 16:47:36.49]: ▸ /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/com.apple.dt.XCTest/IDETestRunSession-B805F8B4-EF9F-4D15-B62A-F0C279B062E9/ionic-screen-shots-53E6DD7D-8C52-4F06-B7FD-24BAEA3A2F96/Session-ionic-screen-shots-2018-01-08_164736-sAngSv.log
INFO [2018-01-08 16:47:36.49]: ▸ 2018-01-08 16:47:36.495 xcodebuild[46043:851043] [MT] IDETestOperationsObserverDebug: (807CDE5E-05FE-42B7-8595-24CE569662DE) Beginning test session ionic-screen-shots-807CDE5E-05FE-42B7-8595-24CE569662DE at 2018-01-08 16:47:36.494 with Xcode 9C40b on target <DVTiPhoneSimulator: 0x7fc8f4bcca50> {
INFO [2018-01-08 16:47:36.49]: ▸ SimDevice: iPhone X (D65B3D69-9E61-4407-B75D-00C397764B2E, iOS 11.2, Booted)
INFO [2018-01-08 16:47:36.49]: ▸ } (11.2 (15C107))
INFO [2018-01-08 16:47:36.54]: ▸ Building CordovaLib/CordovaLib [Debug]
INFO [2018-01-08 16:47:36.54]: ▸ Check Dependencies
INFO [2018-01-08 16:47:36.63]: ▸ Building Locals Menu/Locals Menu [Debug]
INFO [2018-01-08 16:47:36.63]: ▸ Check Dependencies
INFO [2018-01-08 16:47:36.74]: ▸ Running script 'Copy www directory'
INFO [2018-01-08 16:47:37.91]: ▸ Processing Locals Menu-Info.plist
INFO [2018-01-08 16:47:37.97]: ▸ Generating 'Locals\ Menu.app.dSYM'
INFO [2018-01-08 16:47:39.11]: ▸ Signing /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/snapshot_derived20180108-45230-1sn88bl/Build/Products/Debug-iphonesimulator/Locals\ Menu.app
INFO [2018-01-08 16:47:39.68]: ▸ Building Locals Menu/ionic-screen-shots [Debug]
INFO [2018-01-08 16:47:39.68]: ▸ Check Dependencies
INFO [2018-01-08 16:49:07.45]: ▸ 2018-01-08 16:49:07.452 xcodebuild[46043:851043] Error Domain=IDETestOperationsObserverErrorDomain Code=13 "Timed out waiting for AX loaded notification If you believe this error represents a bug, please attach the log file at /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/com.apple.dt.XCTest/IDETestRunSession-B805F8B4-EF9F-4D15-B62A-F0C279B062E9/ionic-screen-shots-53E6DD7D-8C52-4F06-B7FD-24BAEA3A2F96/Session-ionic-screen-shots-2018-01-08_164736-sAngSv.log" UserInfo={NSLocalizedDescription=Timed out waiting for AX loaded notification If you believe this error represents a bug, please attach the log file at /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/com.apple.dt.XCTest/IDETestRunSession-B805F8B4-EF9F-4D15-B62A-F0C279B062E9/ionic-screen-shots-53E6DD7D-8C52-4F06-B7FD-24BAEA3A2F96/Session-ionic-screen-shots-2018-01-08_164736-sAngSv.log}
INFO [2018-01-08 16:49:07.45]: ▸ Testing failed:
INFO [2018-01-08 16:49:07.45]: ▸ Test target ionic-screen-shots encountered an error (Timed out waiting for AX loaded notification If you believe this error represents a bug, please attach the log file at /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/com.apple.dt.XCTest/IDETestRunSession-B805F8B4-EF9F-4D15-B62A-F0C279B062E9/ionic-screen-shots-53E6DD7D-8C52-4F06-B7FD-24BAEA3A2F96/Session-ionic-screen-shots-2018-01-08_164736-sAngSv.log)
INFO [2018-01-08 16:49:07.45]: ▸ ** TEST FAILED **
ERROR [2018-01-08 16:49:11.63]: Exit status: 65
WARN [2018-01-08 16:49:11.65]: Tests failed while running on: iPhone X
WARN [2018-01-08 16:49:11.65]: For more detail about the test failures, check the logs here:
WARN [2018-01-08 16:49:11.65]: /Users/admin/Library/Logs/snapshot/Locals Menu-ionic-screen-shots.log
WARN [2018-01-08 16:49:11.65]:  
WARN [2018-01-08 16:49:11.65]: You can also find the test result data here:
WARN [2018-01-08 16:49:11.65]: /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/snapshot_derived20180108-45230-1sn88bl/Logs/Test
WARN [2018-01-08 16:49:11.65]:  
WARN [2018-01-08 16:49:11.65]: You can find the incomplete screenshots here:
WARN [2018-01-08 16:49:11.65]: /Users/admin/Library/Caches/tools.fastlane/screenshots
WARN [2018-01-08 16:49:11.65]: /Users/admin/dev/locals-menu/fastlane/screenshots
ERROR [2018-01-08 16:49:11.65]: Caught error... 65
WARN [2018-01-08 16:49:11.67]: Lane Context:
INFO [2018-01-08 16:49:11.67]: {:DEFAULT_PLATFORM=>:ios, :PLATFORM_NAME=>:ios, :LANE_NAME=>"ios screenshots"}
ERROR [2018-01-08 16:49:11.67]: iPhone X: No tests were executed
INFO [2018-01-08 16:49:11.68]: Successfully generated documentation at path '/Users/admin/dev/locals-menu/fastlane/README.md'
DEBUG [2018-01-08 16:49:11.69]: All plugins are up to date
ERROR [2018-01-08 16:49:11.69]: fastlane finished with errors
DEBUG [2018-01-08 16:49:11.69]: All plugins are up to date
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! locals-menu@0.0.1 fastlane:ios:screenshots: `sudo fastlane ios screenshots --capture_output`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the locals-menu@0.0.1 fastlane:ios:screenshots script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/admin/.npm/_logs/2018-01-08T14_49_11_785Z-debug.log

Process finished with exit code 1

About this issue

  • Original URL
  • State: closed
  • Created 6 years ago
  • Comments: 16 (4 by maintainers)

Most upvoted comments

It seems like this issue might be related to code signing 🚫

Have you seen our new Code Signing Troubleshooting Guide? It will help you resolve the most common code signing issues 👍