fastlane: Notification extension is failing to access app group shared folder

Issue Description

I have the following code in my Notification Extension which is working fine when I launch my app from Xcode:

NSLog("Trying to get group file url for \(name)")
        
var fileUrl = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: "group.mygroup")!
fileUrl.appendPathComponent(name)
        
NSLog("Got fileUrl for \(name) : \(fileUrl)")

However, when I pack the app with fastlane, upload it to Fabric/TestFlight and launch it from there, the second NSLog never gets executed! I can’t even do try/catch since there’s no Error thrown in this block. However, it just fails!

What I get in the device console log is the following:

default	14:28:15.477973 +0300	NotificationLocalizer DEV	Trying to get group file url for badge.json
default	14:28:15.478107 +0300	SpringBoard	[in.och.onecheckin-dev.NotificationLocalizer] Disallowed notification center access to service extension
default	14:28:15.556978 +0300	SpringBoard	connection to plug-in <private>(AA01DEBA-9C9B-4CEC-A765-74523CD55148) lost
error	14:28:15.557089 +0300	SpringBoard	[in.och.onecheckin-dev.NotificationLocalizer] Service extension connection encountered an error: sessionUUID=03F7CB82-C1AC-473D-B259-D26D49EFE5C9, error=Error Domain=NSCocoaErrorDomain Code=4097 "connection from pid 1293" UserInfo={NSDebugDescription=connection from pid 1293}
default	14:28:15.557524 +0300	assertiond	Client relinquished <BKProcessAssertion: 0x102f34cf0; "com.apple.extension.session" (extension:inf); id:…A9C1560F4187>
default	14:28:15.557561 +0300	SpringBoard	connection to plug-in <private>(<private>) lost
default	14:28:15.557585 +0300	SpringBoard	[in.och.onecheckin-dev] Did not mutate content for notification request, will deliver original content; notificationRequest=DE99-885B, error=Error Domain=NSCocoaErrorDomain Code=4097 "connection from pid 1293" UserInfo={NSDebugDescription=connection from pid 1293}

Also, the notification extension itself is operational: if I comment the code accessing app group folder, everything else (changing notification content) works perfectly well!

Corresponding Fastfile content:

match(type: "development", app_identifier: ["main.id", "main.id.notification.extension"], force_for_new_devices: true)
gym(export_method: "development", scheme: "My Scheme")

Environment

✅ fastlane environment ✅

Stack

Key Value
OS 10.14.4
Ruby 2.3.7
Bundler? false
Git git version 2.20.1 (Apple Git-117)
Installation Source /usr/local/bin/fastlane
Host Mac OS X 10.14.4 (18E226)
Ruby Lib Dir /System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib
OpenSSL Version LibreSSL 2.6.5
Is contained false
Is homebrew false
Is installed via Fabric.app false
Xcode Path /Applications/Xcode.app/Contents/Developer/
Xcode Version 10.2

System Locale

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

fastlane files:

`./fastlane/Fastfile`
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
#     https://docs.fastlane.tools/actions
#

# Uncomment the line if you want fastlane to automatically update itself
update_fastlane

default_platform(:ios)

platform :ios do
    lane :beta_dev do
        sh "./update_www.sh"
        notes = prompt(text: "Notes: ")
        match(type: "development", app_identifier: ["in.och.onecheckin-dev", "in.och.onecheckin-dev.NotificationLocalizer"], force_for_new_devices: true)
        gym(export_method: "development", scheme: "OneCheckIn DEV")
        crashlytics(notes: notes, emails: "dmitriikozlou@gmail.com,evger@adhoc.im,ivanov@adhoc.im,monteleone@adhoc.im,rodionov@adhoc.im", api_token: "f02fcace55628880c0d39da55e2b86e6cbd393c8", build_secret: "2b7c78b157c16f5f2e3d11d96cbc6ce8de617f5875906a4d0cd017edca40fb6e")
    end
    lane :beta_prod do
        sh "./update_www.sh --prod"
        match(type: "appstore", app_identifier: ["in.och.onecheckin", "in.och.onecheckin.NotificationLocalizer"])
        gym(scheme: "OneCheckIn PROD")
        upload_to_testflight(username: "monteleone@adhoc.im", skip_waiting_for_build_processing: true)
    end
end

`./fastlane/Appfile`
# app_identifier("[[APP_IDENTIFIER]]") # The bundle identifier of your app
# apple_id("[[APPLE_ID]]") # Your Apple email address


# For more information about the Appfile, see:
#     https://docs.fastlane.tools/advanced/#appfile

fastlane gems

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

Loaded fastlane plugins:

No plugins Loaded

Loaded gems
Gem Version
did_you_mean 1.0.0
slack-notifier 2.3.2
rouge 2.0.7
xcpretty 0.3.0
terminal-notifier 2.0.0
terminal-table 1.8.0
multipart-post 2.0.0
word_wrap 1.0.0
public_suffix 2.0.5
babosa 1.0.2
colored 1.2
highline 1.7.10
commander-fastlane 4.4.6
http-cookie 1.0.3
faraday-cookie_jar 0.0.6
mini_magick 4.5.1
multi_json 1.13.1
multi_xml 0.6.0
rubyzip 1.2.2
security 0.1.3
xcpretty-travis-formatter 1.0.0
bundler 1.16.1
tty-spinner 0.9.0
tty-cursor 0.6.1
tty-screen 0.6.5
faraday 0.15.4
json 2.2.0
io-console 0.4.5
excon 0.62.0
CFPropertyList 3.0.0
libxml-ruby 2.9.0
plist 3.5.0
atomos 0.1.3
claide 1.0.2
colored2 3.1.2
nanaimo 0.2.6
xcodeproj 1.8.2
google-cloud-env 1.0.5
google-cloud-core 1.3.0
digest-crc 0.4.1
google-cloud-storage 1.16.0
jwt 2.1.0
memoist 0.16.0
googleauth 0.6.7
unf_ext 0.0.7.5
unf 0.1.4
domain_name 0.5.20180417
faraday_middleware 0.13.1
signet 0.11.0
uber 0.1.0
declarative 0.0.10
declarative-option 0.1.0
representable 3.0.4
httpclient 2.8.3
google-api-client 0.23.9
fastimage 2.1.5
unicode-display_width 1.5.0
addressable 2.6.0
retriable 3.1.2
mime-types 3.2.2
mime-types-data 3.2019.0331
os 1.0.0
psych 2.1.0.1

generated on: 2019-04-05

About this issue

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

Most upvoted comments

@janpio ok, I updated Fastlane and verified that the issue is still there. And here’s the output:

Fastlane

[12:31:46]: -------------------
[12:31:46]: --- Step: match ---
[12:31:46]: -------------------
WARNING: You are running Ruby 2.3.7, which is nearing end-of-life.
The Google Cloud API clients work best on supported versions of Ruby. Consider upgrading to Ruby 2.4 or later.
See https://www.ruby-lang.org/en/downloads/branches/ for more info on the Ruby maintenance schedule.
To suppress this message, set the GOOGLE_CLOUD_SUPPRESS_RUBY_WARNINGS environment variable.
[12:31:46]: Successfully loaded '/Users/alex/dev/OneCheckIn-objc/fastlane/Matchfile' 📄

+----------+----------------------------------------------------------+
|             Detected Values from './fastlane/Matchfile'             |
+----------+----------------------------------------------------------+
| git_url  | git@git.1check.in:alexander-ivanov/match-certificates.g  |
|          | it                                                       |
| username | monteleone@adhoc.im                                      |
+----------+----------------------------------------------------------+


+-----------------------+----------------------------------------------------------+
|                            Summary for match 2.125.2                             |
+-----------------------+----------------------------------------------------------+
| type                  | development                                              |
| app_identifier        | ["in.och.onecheckin-dev",                                |
|                       | "in.och.onecheckin-dev.NotificationLocalizer"]           |
| force_for_new_devices | true                                                     |
| readonly              | false                                                    |
| username              | monteleone@adhoc.im                                      |
| storage_mode          | git                                                      |
| git_url               | git@git.1check.in:alexander-ivanov/match-certificates.g  |
|                       | it                                                       |
| git_branch            | master                                                   |
| shallow_clone         | false                                                    |
| clone_branch_directly | false                                                    |
| keychain_name         | login.keychain                                           |
| force                 | false                                                    |
| skip_confirmation     | false                                                    |
| skip_docs             | false                                                    |
| platform              | ios                                                      |
| verbose               | false                                                    |
+-----------------------+----------------------------------------------------------+

[12:31:47]: Cloning remote git repo...
[12:31:47]: If cloning the repo takes too long, you can use the `clone_branch_directly` option in match.
[12:31:49]: 🔓  Successfully decrypted certificates repo
[12:31:49]: Verifying that the certificate and profile are still valid on the Dev Portal...
Available session is not valid any more. Continuing with normal login.
[12:31:53]: Installing certificate...

+-------------------+------------------------------------------------------+
|                          Installed Certificate                           |
+-------------------+------------------------------------------------------+
| User ID           | 889GTTT7HG                                           |
| Common Name       | iPhone Developer: Maximilian Monteleone (3PX8HJKCLQ) |
| Organisation Unit | S5ENNERNQZ                                           |
| Organisation      | EVOCATIVIDEAS UNIPESSOAL LDA                         |
| Country           | PT                                                   |
| Start Datetime    | 2019-01-14 12:36:55 UTC                              |
| End Datetime      | 2020-01-14 12:36:55 UTC                              |
+-------------------+------------------------------------------------------+

[12:31:58]: Installing provisioning profile...
[12:32:02]: Installing provisioning profile...

+---------------------+--------------------------------------+--------------------------------------+
|                                  Installed Provisioning Profile                                   |
+---------------------+--------------------------------------+--------------------------------------+
| Parameter           | Environment Variable                 | Value                                |
+---------------------+--------------------------------------+--------------------------------------+
| App Identifier      |                                      | in.och.onecheckin-dev                |
| Type                |                                      | development                          |
| Platform            |                                      | ios                                  |
| Profile UUID        | sigh_in.och.onecheckin-dev_developm  | 137ff0c2-2644-4148-bd26-a1bb32c35ae  |
|                     | ent                                  | c                                    |
| Profile Name        | sigh_in.och.onecheckin-dev_developm  | match Development                    |
|                     | ent_profile-name                     | in.och.onecheckin-dev                |
| Profile Path        | sigh_in.och.onecheckin-dev_developm  | /Users/alex/Library/MobileDevice/Pr  |
|                     | ent_profile-path                     | ovisioning                           |
|                     |                                      | Profiles/137ff0c2-2644-4148-bd26-a1  |
|                     |                                      | bb32c35aec.mobileprovision           |
| Development Team ID | sigh_in.och.onecheckin-dev_developm  | S5ENNERNQZ                           |
|                     | ent_team-id                          |                                      |
+---------------------+--------------------------------------+--------------------------------------+


+---------------------+--------------------------------------+--------------------------------------+
|                                  Installed Provisioning Profile                                   |
+---------------------+--------------------------------------+--------------------------------------+
| Parameter           | Environment Variable                 | Value                                |
+---------------------+--------------------------------------+--------------------------------------+
| App Identifier      |                                      | in.och.onecheckin-dev.NotificationL  |
|                     |                                      | ocalizer                             |
| Type                |                                      | development                          |
| Platform            |                                      | ios                                  |
| Profile UUID        | sigh_in.och.onecheckin-dev.Notifica  | 5311599e-ae1b-476a-b33e-f2db690392f  |
|                     | tionLocalizer_development            | 3                                    |
| Profile Name        | sigh_in.och.onecheckin-dev.Notifica  | match Development                    |
|                     | tionLocalizer_development_profile-n  | in.och.onecheckin-dev.NotificationL  |
|                     | ame                                  | ocalizer                             |
| Profile Path        | sigh_in.och.onecheckin-dev.Notifica  | /Users/alex/Library/MobileDevice/Pr  |
|                     | tionLocalizer_development_profile-p  | ovisioning                           |
|                     | ath                                  | Profiles/5311599e-ae1b-476a-b33e-f2  |
|                     |                                      | db690392f3.mobileprovision           |
| Development Team ID | sigh_in.och.onecheckin-dev.Notifica  | S5ENNERNQZ                           |
|                     | tionLocalizer_development_team-id    |                                      |
+---------------------+--------------------------------------+--------------------------------------+

[12:32:03]: All required keys, certificates and provisioning profiles are installed 🙌
[12:32:03]: Setting Provisioning Profile type to 'development'
[12:32:03]: -----------------
[12:32:03]: --- Step: gym ---
[12:32:03]: -----------------
[12:32:03]: $ xcodebuild -showBuildSettings -scheme OneCheckIn\ DEV -project ./OneCheckIn.xcodeproj
[12:32:06]: Command timed out after 3 seconds on try 1 of 4, trying again with a 6 second timeout...
[12:32:09]: Detected provisioning profile mapping: {:"in.och.onecheckin-dev"=>"match Development in.och.onecheckin-dev", :"in.och.onecheckin-dev.NotificationLocalizer"=>"match Development in.och.onecheckin-dev.NotificationLocalizer", :"in.och.onecheckin"=>"match AppStore in.och.onecheckin", :"in.och.onecheckin.NotificationLocalizer"=>"match AppStore in.och.onecheckin.NotificationLocalizer"}

+----------------------------------------------------------+---------------------------------------------------------+
|                                              Summary for gym 2.125.2                                               |
+----------------------------------------------------------+---------------------------------------------------------+
| export_method                                            | development                                             |
| scheme                                                   | OneCheckIn DEV                                          |
| export_options.provisioningProfiles.in.och.onecheckin-d  | match Development in.och.onecheckin-dev                 |
| ev                                                       |                                                         |
| export_options.provisioningProfiles.in.och.onecheckin-d  | match Development                                       |
| ev.NotificationLocalizer                                 | in.och.onecheckin-dev.NotificationLocalizer             |
| export_options.provisioningProfiles.in.och.onecheckin    | match AppStore in.och.onecheckin                        |
| export_options.provisioningProfiles.in.och.onecheckin.N  | match AppStore in.och.onecheckin.NotificationLocalizer  |
| otificationLocalizer                                     |                                                         |
| project                                                  | ./OneCheckIn.xcodeproj                                  |
| destination                                              | generic/platform=iOS                                    |
| output_name                                              | OneCheckIn                                              |
| build_path                                               | /Users/alex/Library/Developer/Xcode/Archives/2019-06-18 |
| clean                                                    | false                                                   |
| output_directory                                         | .                                                       |
| silent                                                   | false                                                   |
| skip_package_ipa                                         | false                                                   |
| result_bundle                                            | false                                                   |
| buildlog_path                                            | ~/Library/Logs/gym                                      |
| skip_profile_detection                                   | false                                                   |
| xcode_path                                               | /Applications/Xcode.app                                 |
+----------------------------------------------------------+---------------------------------------------------------+

[12:32:09]: $ set -o pipefail && xcodebuild -scheme OneCheckIn\ DEV -project ./OneCheckIn.xcodeproj -destination 'generic/platform=iOS' -archivePath /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn\ 2019-06-18\ 12.32.09.xcarchive archive | tee /Users/alex/Library/Logs/gym/OneCheckIn-OneCheckIn\ DEV.log | xcpretty
[12:32:11]: ▸ The Copy Bundle Resources build phase contains this target's Info.plist file '/Users/alex/dev/OneCheckIn-objc/OneCheckIn/OneCheckIn-DEV-Info.plist'. (in target 'OneCheckIn DEV')
[12:32:11]: ▸ Copying NSMutableArray+QueueAdditions.h
[12:32:11]: ▸ Copying NSDictionary+CordovaPreferences.h
[12:32:11]: ▸ Copying CDVWhitelist.h
[12:32:11]: ▸ Copying CDVWebViewEngineProtocol.h
[12:32:11]: ▸ Copying CDVViewController.h
[12:32:11]: ▸ Copying CDVUserAgentUtil.h
[12:32:11]: ▸ Copying CDVURLProtocol.h
[12:32:11]: ▸ Copying CDVTimer.h
[12:32:11]: ▸ Copying CDVScreenOrientationDelegate.h
[12:32:11]: ▸ Copying CDVPluginResult.h
[12:32:11]: ▸ Copying CDVPlugin.h
[12:32:11]: ▸ Copying CDVPlugin+Resources.h
[12:32:11]: ▸ Copying CDVInvokedUrlCommand.h
[12:32:11]: ▸ Copying CDVConfigParser.h
[12:32:11]: ▸ Copying CDVCommandQueue.h
[12:32:11]: ▸ Copying CDVCommandDelegateImpl.h
[12:32:11]: ▸ Copying CDVCommandDelegate.h
[12:32:11]: ▸ Copying CDVAvailabilityDeprecated.h
[12:32:11]: ▸ Copying CDVAvailability.h
[12:32:11]: ▸ Copying CDVAppDelegate.h
[12:32:11]: ▸ Copying CDV.h
[12:32:11]: ▸ Copying CDVUIWebViewDelegate.h
[12:32:11]: ▸ Processing DEV-Info.plist
[12:32:16]: ▸ Precompiling /Users/alex/dev/OneCheckIn-objc/CordovaLib/CordovaLib_Prefix.pch
[12:32:16]: ▸ Precompiling /Users/alex/dev/OneCheckIn-objc/CordovaLib/CordovaLib_Prefix.pch
[12:32:16]: ▸ Compiling CDVWhitelist.m
[12:32:16]: ▸ Compiling NSMutableArray+QueueAdditions.m
[12:32:16]: ▸ Compiling NSMutableArray+QueueAdditions.m
[12:32:16]: ▸ Compiling NSDictionary+CordovaPreferences.m
[12:32:16]: ▸ Compiling CDVWhitelist.m
[12:32:16]: ▸ Compiling CDVViewController.m
[12:32:16]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:16]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:16]: ▸                                  ^
[12:32:16]: ▸ Compiling CDVUserAgentUtil.m
[12:32:16]: ▸ Compiling CDVURLProtocol.m
[12:32:16]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:16]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:16]: ▸                                  ^
[12:32:16]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/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]
[12:32:16]: ▸ ALAssetsLibraryAssetForURLResultBlock resultBlock = ^(ALAsset* asset) {
[12:32:16]: ▸         ^
[12:32:16]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/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]
[12:32:16]: ▸ ALAssetRepresentation* assetRepresentation = [asset defaultRepresentation];
[12:32:16]: ▸                ^
[12:32:16]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/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]
[12:32:16]: ▸ NSString* MIMEType = (__bridge_transfer NSString*)UTTypeCopyPreferredTagWithClass((__bridge CFStringRef)[assetRepresentation UTI], kUTTagClassMIMEType);
[12:32:16]: ▸ ^
[12:32:16]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/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]
[12:32:16]: ▸ Byte* buffer = (Byte*)malloc((unsigned long)[assetRepresentation size]);
[12:32:16]: ▸ ^
[12:32:16]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/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]
[12:32:16]: ▸ NSUInteger bufferSize = [assetRepresentation getBytes:buffer fromOffset:0.0 length:(NSUInteger)[assetRepresentation size] error:nil];
[12:32:16]: ▸ ^
[12:32:16]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/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]
[12:32:16]: ▸ NSUInteger bufferSize = [assetRepresentation getBytes:buffer fromOffset:0.0 length:(NSUInteger)[assetRepresentation size] error:nil];
[12:32:16]: ▸ ^
[12:32:16]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/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]
[12:32:16]: ▸ ALAssetsLibraryAssetForURLResultBlock resultBlock = ^(ALAsset* asset) {
[12:32:16]: ▸ ^
[12:32:16]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/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]
[12:32:16]: ▸ ALAssetRepresentation* assetRepresentation = [asset defaultRepresentation];
[12:32:16]: ▸            ^
[12:32:17]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVURLProtocol.m:74:9: 'ALAssetsLibraryAccessFailureBlock' is deprecated: first deprecated in iOS 9.0 - Use the Photos framework instead [-Wdeprecated-declarations]
[12:32:17]: ▸ ALAssetsLibraryAccessFailureBlock failureBlock = ^(NSError* error) {
[12:32:17]: ▸            ^
[12:32:17]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/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]
[12:32:17]: ▸ ALAssetsLibrary* assetsLibrary = [[ALAssetsLibrary alloc] init];
[12:32:17]: ▸                ^
[12:32:17]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/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]
[12:32:17]: ▸ ALAssetsLibrary* assetsLibrary = [[ALAssetsLibrary alloc] init];
[12:32:17]: ▸            ^
[12:32:17]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/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]
[12:32:17]: ▸ [assetsLibrary assetForURL:url resultBlock:resultBlock failureBlock:failureBlock];
[12:32:17]: ▸            ^
[12:32:17]: ▸ Compiling CDVUIWebViewNavigationDelegate.m
[12:32:17]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:17]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:17]: ▸ ^
[12:32:17]: ▸ Compiling CDVUIWebViewEngine.m
[12:32:17]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:17]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:17]: ▸                                  ^
[12:32:17]: ▸ Compiling CDVUIWebViewDelegate.m
[12:32:17]: ▸ Compiling CDVTimer.m
[12:32:17]: ▸ Compiling CDVPluginResult.m
[12:32:17]: ▸ Compiling CDVPlugin.m
[12:32:17]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:17]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:17]: ▸                                  ^
[12:32:17]: ▸ Compiling CDVPlugin+Resources.m
[12:32:17]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:17]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:17]: ▸                                  ^
[12:32:17]: ▸ Compiling CDVLogger.m
[12:32:17]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:17]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:17]: ▸                                  ^
[12:32:17]: ▸ Compiling CDVLocalStorage.m
[12:32:17]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:17]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:17]: ▸                                  ^
[12:32:17]: ▸ Compiling CDVJSON_private.m
[12:32:17]: ▸ Compiling CDVInvokedUrlCommand.m
[12:32:17]: ▸ Compiling CDVIntentAndNavigationFilter.m
[12:32:17]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:17]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:17]: ▸                                  ^
[12:32:17]: ▸ Compiling CDVHandleOpenURL.m
[12:32:17]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:17]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:17]: ▸                                  ^
[12:32:17]: ▸ Compiling CDVGestureHandler.m
[12:32:17]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:17]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:17]: ▸                                  ^
[12:32:17]: ▸ Linking NotificationLocalizer\
[12:32:17]: ▸ Compiling CDVConfigParser.m
[12:32:17]: ▸ Compiling CDVCommandQueue.m
[12:32:17]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:17]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:17]: ▸                                  ^
[12:32:17]: ▸ Compiling CDVCommandDelegateImpl.m
[12:32:17]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:17]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:17]: ▸                                  ^
[12:32:17]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegateImpl.m:171:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:17]: ▸ - (void)runInBackground:(void (^)())block
[12:32:17]: ▸                                  ^
[12:32:17]: ▸ Compiling CDVAppDelegate.m
[12:32:17]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:17]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:17]: ▸                                  ^
[12:32:17]: ▸ Linking NotificationLocalizer\
[12:32:17]: ▸ Compiling NSDictionary+CordovaPreferences.m
[12:32:17]: ▸ Compiling CDVViewController.m
[12:32:17]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:17]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:17]: ▸                                  ^
[12:32:17]: ▸ Compiling CDVUserAgentUtil.m
[12:32:17]: ▸ Building library libCordova.a
[12:32:17]: ▸ Generating 'NotificationLocalizer\ DEV.appex.dSYM'
[12:32:17]: ▸ Compiling CDVURLProtocol.m
[12:32:17]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:17]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:17]: ▸                                  ^
[12:32:17]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/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]
[12:32:17]: ▸ ALAssetsLibraryAssetForURLResultBlock resultBlock = ^(ALAsset* asset) {
[12:32:17]: ▸                                  ^
[12:32:17]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/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]
[12:32:17]: ▸ ALAssetRepresentation* assetRepresentation = [asset defaultRepresentation];
[12:32:17]: ▸                ^
[12:32:18]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/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]
[12:32:18]: ▸ NSString* MIMEType = (__bridge_transfer NSString*)UTTypeCopyPreferredTagWithClass((__bridge CFStringRef)[assetRepresentation UTI], kUTTagClassMIMEType);
[12:32:18]: ▸ ^
[12:32:18]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/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]
[12:32:18]: ▸ Byte* buffer = (Byte*)malloc((unsigned long)[assetRepresentation size]);
[12:32:18]: ▸ ^
[12:32:18]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/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]
[12:32:18]: ▸ NSUInteger bufferSize = [assetRepresentation getBytes:buffer fromOffset:0.0 length:(NSUInteger)[assetRepresentation size] error:nil];
[12:32:18]: ▸ ^
[12:32:18]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/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]
[12:32:18]: ▸ NSUInteger bufferSize = [assetRepresentation getBytes:buffer fromOffset:0.0 length:(NSUInteger)[assetRepresentation size] error:nil];
[12:32:18]: ▸ ^
[12:32:18]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/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]
[12:32:18]: ▸ ALAssetsLibraryAssetForURLResultBlock resultBlock = ^(ALAsset* asset) {
[12:32:18]: ▸ ^
[12:32:18]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/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]
[12:32:18]: ▸ ALAssetRepresentation* assetRepresentation = [asset defaultRepresentation];
[12:32:18]: ▸            ^
[12:32:18]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVURLProtocol.m:74:9: 'ALAssetsLibraryAccessFailureBlock' is deprecated: first deprecated in iOS 9.0 - Use the Photos framework instead [-Wdeprecated-declarations]
[12:32:18]: ▸ ALAssetsLibraryAccessFailureBlock failureBlock = ^(NSError* error) {
[12:32:18]: ▸            ^
[12:32:18]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/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]
[12:32:18]: ▸ ALAssetsLibrary* assetsLibrary = [[ALAssetsLibrary alloc] init];
[12:32:18]: ▸                ^
[12:32:18]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/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]
[12:32:18]: ▸ ALAssetsLibrary* assetsLibrary = [[ALAssetsLibrary alloc] init];
[12:32:18]: ▸            ^
[12:32:18]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/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]
[12:32:18]: ▸ [assetsLibrary assetForURL:url resultBlock:resultBlock failureBlock:failureBlock];
[12:32:18]: ▸            ^
[12:32:18]: ▸ Compiling CDVUIWebViewNavigationDelegate.m
[12:32:18]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:18]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:18]: ▸ ^
[12:32:18]: ▸ Compiling CDVUIWebViewEngine.m
[12:32:18]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:18]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:18]: ▸                                  ^
[12:32:18]: ▸ Compiling CDVUIWebViewDelegate.m
[12:32:18]: ▸ Compiling CDVTimer.m
[12:32:18]: ▸ Compiling CDVPluginResult.m
[12:32:18]: ▸ Compiling CDVPlugin.m
[12:32:18]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:18]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:18]: ▸                                  ^
[12:32:18]: ▸ Compiling CDVPlugin+Resources.m
[12:32:18]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:18]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:18]: ▸                                  ^
[12:32:18]: ▸ Compiling CDVLogger.m
[12:32:18]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:18]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:18]: ▸                                  ^
[12:32:18]: ▸ Compiling CDVLocalStorage.m
[12:32:18]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:18]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:18]: ▸                                  ^
[12:32:18]: ▸ Compiling CDVJSON_private.m
[12:32:18]: ▸ Compiling CDVInvokedUrlCommand.m
[12:32:18]: ▸ Compiling CDVIntentAndNavigationFilter.m
[12:32:18]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:18]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:18]: ▸                                  ^
[12:32:18]: ▸ Compiling CDVHandleOpenURL.m
[12:32:18]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:18]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:18]: ▸                                  ^
[12:32:18]: ▸ Compiling CDVGestureHandler.m
[12:32:18]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:18]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:18]: ▸                                  ^
[12:32:18]: ▸ Compiling CDVConfigParser.m
[12:32:18]: ▸ Compiling CDVCommandQueue.m
[12:32:18]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:18]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:18]: ▸                                  ^
[12:32:19]: ▸ Compiling CDVCommandDelegateImpl.m
[12:32:19]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:19]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:19]: ▸                                  ^
[12:32:19]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegateImpl.m:171:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:19]: ▸ - (void)runInBackground:(void (^)())block
[12:32:19]: ▸                                  ^
[12:32:19]: ▸ Compiling CDVAppDelegate.m
[12:32:19]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/CordovaLib/Classes/Public/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:19]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:19]: ▸                                  ^
[12:32:19]: ▸ Building library libCordova.a
[12:32:19]: ▸ Touching NotificationLocalizer\ DEV.appex (in target: NotificationLocalizer DEV)
[12:32:19]: ▸ Running script 'Copy www directory'
[12:32:20]: ▸ Copying /Users/alex/dev/OneCheckIn-objc/fastlane
[12:32:20]: ▸ Copying /Users/alex/dev/OneCheckIn-objc/apple-app-site-association-dev
[12:32:20]: ▸ Copying /Users/alex/dev/OneCheckIn-objc/OpenSans-Regular.ttf
[12:32:20]: ▸ Copying /Users/alex/dev/OneCheckIn-objc/OpenSans-Bold.ttf
[12:32:20]: ▸ Copying /Users/alex/dev/OneCheckIn-objc/Cartfile
[12:32:20]: ▸ Copying Localizable.strings
[12:32:20]: ▸ Copying InfoPlist.strings
[12:32:20]: ▸ Copying OneCheckIn-DEV-Info.plist
[12:32:20]: ▸ Copying Localizable.strings
[12:32:20]: ▸ Copying Entitlements-Release.plist
[12:32:20]: ▸ Copying Entitlements-Debug.plist
[12:32:20]: ▸ Compiling FlightTableViewCell.xib
[12:32:24]: ▸ Compiling LaunchScreen.storyboard
[12:32:24]: ▸ Compiling Main.storyboard
[12:32:33]: ▸ Processing OneCheckIn-DEV-Info.plist
[12:32:50]: ▸ Precompiling /Users/alex/dev/OneCheckIn-objc/OneCheckIn/OneCheckIn-Prefix.pch
[12:32:50]: ▸ Precompiling /Users/alex/dev/OneCheckIn-objc/OneCheckIn/OneCheckIn-Prefix.pch
[12:32:50]: ▸ Compiling NSJSONSerialization+HCPExtension.m
[12:32:51]: ▸ Compiling HCPAssetsFolderHelper.m
[12:32:52]: ▸ Compiling GCDWebServerURLEncodedFormRequest.m
[12:32:52]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:52]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:52]: ▸                                  ^
[12:32:52]: ▸ Compiling NSFileManager+HCPExtension.m
[12:32:52]: ▸ Compiling NSError+HCPExtension.m
[12:32:52]: ▸ Compiling NSData+HCPMD5.m
[12:32:52]: ▸ Compiling NSBundle+HCPExtension.m
[12:32:52]: ▸ Compiling HCPXmlTags.m
[12:32:52]: ▸ Compiling HCPXmlConfigParser.m
[12:32:52]: ▸ Compiling HCPXmlConfig.m
[12:32:52]: ▸ Compiling HCPUpdateRequest.m
[12:32:52]: ▸ Compiling HCPUpdateLoaderWorker.m
[12:32:52]: ▸ Compiling HCPUpdateLoader.m
[12:32:52]: ▸ Compiling HCPUpdateInstaller.m
[12:32:52]: ▸ Compiling HCPPluginInternalPreferences.m
[12:32:52]: ▸ Compiling HCPPluginInternalPreferences+UserDefaults.m
[12:32:52]: ▸ Compiling HCPPlugin.m
[12:32:52]: ▸ ⚠️  /Users/alex/Library/Developer/Xcode/DerivedData/OneCheckIn-heaqvwvfaxgdwodadzjwurrouqiz/Build/Intermediates.noindex/ArchiveIntermediates/OneCheckIn DEV/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/include/Cordova/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:52]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:52]: ▸                                            ^
[12:32:52]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.h:24:107: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:52]: ▸ - (instancetype)initWithMessage:(NSString *)message storeUrl:(NSString *)storeUrl onSuccessBlock:(void (^)())onSuccess onFailureBlock:(void (^)())onFailure;
[12:32:52]: ▸                                  ^
[12:32:52]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.h:24:144: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:52]: ▸ - (instancetype)initWithMessage:(NSString *)message storeUrl:(NSString *)storeUrl onSuccessBlock:(void (^)())onSuccess onFailureBlock:(void (^)())onFailure;
[12:32:52]: ▸                                                                                                           ^
[12:32:52]: ▸ Compiling HCPManifestFile.m
[12:32:52]: ▸ Compiling HCPManifestDiff.m
[12:32:52]: ▸ Compiling HCPInstallationWorker.m
[12:32:52]: ▸ Compiling HCPFilesStructure.m
[12:32:52]: ▸ Compiling HCPFileDownloader.m
[12:32:52]: ▸ Compiling HCPFetchUpdateOptions.m
[12:32:52]: ▸ Compiling HCPEvents.m
[12:32:52]: ▸ Compiling HCPDataDownloader.m
[12:32:52]: ▸ Compiling HCPContentManifestStorage.m
[12:32:52]: ▸ Compiling HCPContentManifest.m
[12:32:52]: ▸ Compiling HCPContentConfig.m
[12:32:52]: ▸ Compiling HCPConfigStorageImpl.m
[12:32:52]: ▸ Compiling HCPCleanupHelper.m
[12:32:52]: ▸ Compiling HCPApplicationConfigStorage.m
[12:32:52]: ▸ Compiling HCPApplicationConfig.m
[12:32:52]: ▸ Compiling HCPAppUpdateRequestAlertDialog.m
[12:32:52]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.h:24:107: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:52]: ▸ - (instancetype)initWithMessage:(NSString *)message storeUrl:(NSString *)storeUrl onSuccessBlock:(void (^)())onSuccess onFailureBlock:(void (^)())onFailure;
[12:32:52]: ▸                                                                                                                                                ^
[12:32:52]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.h:24:144: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:52]: ▸ - (instancetype)initWithMessage:(NSString *)message storeUrl:(NSString *)storeUrl onSuccessBlock:(void (^)())onSuccess onFailureBlock:(void (^)())onFailure;
[12:32:52]: ▸                                                                                                           ^
[12:32:52]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.m:12:23: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:52]: ▸ void (^_onSuccess)();
[12:32:52]: ▸                                                                                                                                                ^
[12:32:52]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.m:13:23: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:52]: ▸ void (^_onFailure)();
[12:32:52]: ▸                       ^
[12:32:52]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.m:20:107: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:52]: ▸ - (instancetype)initWithMessage:(NSString *)message storeUrl:(NSString *)storeUrl onSuccessBlock:(void (^)())onSuccess onFailureBlock:(void (^)())onFailure {
[12:32:52]: ▸                       ^
[12:32:52]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.m:20:144: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:52]: ▸ - (instancetype)initWithMessage:(NSString *)message storeUrl:(NSString *)storeUrl onSuccessBlock:(void (^)())onSuccess onFailureBlock:(void (^)())onFailure {
[12:32:52]: ▸                                                                                                           ^
[12:32:52]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.m:41:20: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead [-Wdeprecated-declarations]
[12:32:52]: ▸ - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
[12:32:52]: ▸                                                                                                                                                ^
[12:32:52]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.m:36:5: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead [-Wdeprecated-declarations]
[12:32:52]: ▸ UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"" message:_message delegate:self cancelButtonTitle:positiveButtonTitle otherButtonTitles:negativeButtontitle, nil];
[12:32:52]: ▸            ^
[12:32:52]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.m:36:44: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead [-Wdeprecated-declarations]
[12:32:52]: ▸ UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"" message:_message delegate:self cancelButtonTitle:positiveButtonTitle otherButtonTitles:negativeButtontitle, nil];
[12:32:52]: ▸            ^
[12:32:52]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.m:44:44: 'openURL:' is deprecated: first deprecated in iOS 10.0 - Please use openURL:options:completionHandler: instead [-Wdeprecated-declarations]
[12:32:52]: ▸ [[UIApplication sharedApplication] openURL:[NSURL URLWithString:_storeUrl]];
[12:32:52]: ▸            ^
[12:32:52]: ▸ Compiling GCDWebServerStreamedResponse.m
[12:32:52]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:52]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:52]: ▸ ^
[12:32:53]: ▸ Compiling GCDWebServerResponse.m
[12:32:53]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:53]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:53]: ▸                                            ^
[12:32:53]: ▸ Compiling GCDWebServerRequest.m
[12:32:53]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:53]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:53]: ▸                                            ^
[12:32:53]: ▸ Compiling GCDWebServerMultiPartFormRequest.m
[12:32:53]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:53]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:53]: ▸                                            ^
[12:32:53]: ▸ Compiling GCDWebServerFunctions.m
[12:32:53]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:53]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:53]: ▸                                            ^
[12:32:53]: ▸ Compiling GCDWebServerFileResponse.m
[12:32:53]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:53]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:53]: ▸                                            ^
[12:32:53]: ▸ Compiling GCDWebServerFileRequest.m
[12:32:53]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:53]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:53]: ▸                                            ^
[12:32:53]: ▸ Compiling GCDWebServerErrorResponse.m
[12:32:53]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:53]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:53]: ▸                                            ^
[12:32:53]: ▸ Compiling GCDWebServerDataResponse.m
[12:32:53]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:53]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:53]: ▸                                            ^
[12:32:53]: ▸ Compiling GCDWebServerDataRequest.m
[12:32:53]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:53]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:53]: ▸                                            ^
[12:32:53]: ▸ Compiling GCDWebServerConnection.m
[12:32:53]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:53]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:53]: ▸                                            ^
[12:32:54]: ▸ Compiling GCDWebServer.m
[12:32:54]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:54]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:54]: ▸                                            ^
[12:32:54]: ▸ Compiling CDVWKWebViewUIDelegate.m
[12:32:54]: ▸ Compiling CDVWKWebViewEngine.m
[12:32:54]: ▸ ⚠️  /Users/alex/Library/Developer/Xcode/DerivedData/OneCheckIn-heaqvwvfaxgdwodadzjwurrouqiz/Build/Intermediates.noindex/ArchiveIntermediates/OneCheckIn DEV/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/include/Cordova/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:54]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:54]: ▸                                            ^
[12:32:54]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:54]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:54]: ▸                                  ^
[12:32:54]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/CDVWKWebViewEngine.m:148:23: 'mediaPlaybackRequiresUserAction' is deprecated: first deprecated in iOS 9.0 [-Wdeprecated-declarations]
[12:32:54]: ▸ configuration.mediaPlaybackRequiresUserAction = YES;
[12:32:54]: ▸                                            ^
[12:32:54]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/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]
[12:32:54]: ▸ errorUrl = [NSURL URLWithString:[NSString stringWithFormat:@"?error=%@", [message stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]] relativeToURL:errorUrl];
[12:32:54]: ▸                            ^
[12:32:54]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/CDVWKWebViewEngine.m:656:48: 'openURL:' is deprecated: first deprecated in iOS 10.0 - Please use openURL:options:completionHandler: instead [-Wdeprecated-declarations]
[12:32:54]: ▸ [[UIApplication sharedApplication] openURL:url];
[12:32:54]: ▸ ^
[12:32:54]: ▸ Compiling CDVWKWebViewEngine+HCPPlugin_ReadAccessURL.m
[12:32:54]: ▸ Compiling CDVWKProcessPoolFactory.m
[12:32:54]: ▸ Compiling CDVPluginResult+HCPEvents.m
[12:32:54]: ▸ ⚠️  /Users/alex/Library/Developer/Xcode/DerivedData/OneCheckIn-heaqvwvfaxgdwodadzjwurrouqiz/Build/Intermediates.noindex/ArchiveIntermediates/OneCheckIn DEV/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/include/Cordova/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:54]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:54]: ▸ ^
[12:32:54]: ▸ Compiling CDVLocalFilesystem.m
[12:32:54]: ▸ ⚠️  /Users/alex/Library/Developer/Xcode/DerivedData/OneCheckIn-heaqvwvfaxgdwodadzjwurrouqiz/Build/Intermediates.noindex/ArchiveIntermediates/OneCheckIn DEV/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/include/Cordova/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:54]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:54]: ▸                                  ^
[12:32:54]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVLocalFilesystem.m:128:43: '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]
[12:32:54]: ▸ NSString* escapedPath = [fullPath stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
[12:32:54]: ▸                                  ^
[12:32:55]: ▸ Compiling CDVFile.m
[12:32:55]: ▸ ⚠️  /Users/alex/Library/Developer/Xcode/DerivedData/OneCheckIn-heaqvwvfaxgdwodadzjwurrouqiz/Build/Intermediates.noindex/ArchiveIntermediates/OneCheckIn DEV/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/include/Cordova/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:55]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:55]: ▸ ^
[12:32:55]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVFile.m:589:35: 'stringByReplacingPercentEscapesUsingEncoding:' is deprecated: first deprecated in iOS 9.0 - Use -stringByRemovingPercentEncoding instead, which always uses the recommended UTF-8 encoding. [-Wdeprecated-declarations]
[12:32:55]: ▸ NSString *decodedPath = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; //decode incase it's already encoded to avoid encoding twice
[12:32:55]: ▸                                  ^
[12:32:55]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVFile.m:590:25: '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]
[12:32:55]: ▸ return [decodedPath stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
[12:32:55]: ▸ ^
[12:32:55]: ▸ Compiling CDVAssetLibraryFilesystem.m
[12:32:55]: ▸ ⚠️  /Users/alex/Library/Developer/Xcode/DerivedData/OneCheckIn-heaqvwvfaxgdwodadzjwurrouqiz/Build/Intermediates.noindex/ArchiveIntermediates/OneCheckIn DEV/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/include/Cordova/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:55]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:55]: ▸ ^
[12:32:55]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:193:5: '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]
[12:32:55]: ▸ ALAssetsLibraryAssetForURLResultBlock resultBlock = ^(ALAsset* asset) {
[12:32:55]: ▸                                  ^
[12:32:55]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:196:65: 'defaultRepresentation' is deprecated: first deprecated in iOS 9.0 - Use PHImageRequestOptions with the PHImageManager from the Photos framework instead [-Wdeprecated-declarations]
[12:32:55]: ▸ ALAssetRepresentation* assetRepresentation = [asset defaultRepresentation];
[12:32:55]: ▸                ^
[12:32:55]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:197:84: '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]
[12:32:55]: ▸ NSUInteger size = (end > start) ? (end - start) : [assetRepresentation size];
[12:32:55]: ▸ ^
[12:32:55]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:199:58: '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]
[12:32:55]: ▸ NSUInteger bufferSize = [assetRepresentation getBytes:buffer fromOffset:start length:size error:nil];
[12:32:55]: ▸ ^
[12:32:55]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:201:138: '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]
[12:32:55]: ▸ NSString* MIMEType = (__bridge_transfer NSString*)UTTypeCopyPreferredTagWithClass((__bridge CFStringRef)[assetRepresentation UTI], kUTTagClassMIMEType);
[12:32:55]: ▸ ^
[12:32:55]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:197:63: implicit conversion loses integer precision: 'long long' to 'NSUInteger' (aka 'unsigned int') [-Wshorten-64-to-32]
[12:32:55]: ▸ NSUInteger size = (end > start) ? (end - start) : [assetRepresentation size];
[12:32:55]: ▸ ^
[12:32:55]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:193:59: 'ALAsset' is deprecated: first deprecated in iOS 9.0 - Use PHAsset from the Photos framework instead [-Wdeprecated-declarations]
[12:32:55]: ▸ ALAssetsLibraryAssetForURLResultBlock resultBlock = ^(ALAsset* asset) {
[12:32:55]: ▸                        ~~~~                                   ^~~~~~~~~~~~~~~~~~~~~~~~~~
[12:32:55]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:196:13: 'ALAssetRepresentation' is deprecated: first deprecated in iOS 9.0 - Use PHImageRequestOptions with the PHImageManager from the Photos framework instead [-Wdeprecated-declarations]
[12:32:55]: ▸ ALAssetRepresentation* assetRepresentation = [asset defaultRepresentation];
[12:32:55]: ▸            ^
[12:32:55]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:209:5: 'ALAssetsLibraryAccessFailureBlock' is deprecated: first deprecated in iOS 9.0 - Use the Photos framework instead [-Wdeprecated-declarations]
[12:32:56]: ▸ ALAssetsLibraryAccessFailureBlock failureBlock = ^(NSError* error) {
[12:32:56]: ▸            ^
[12:32:56]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:215:5: 'ALAssetsLibrary' is deprecated: first deprecated in iOS 9.0 - Use PHPhotoLibrary from the Photos framework instead [-Wdeprecated-declarations]
[12:32:56]: ▸ ALAssetsLibrary* assetsLibrary = [[ALAssetsLibrary alloc] init];
[12:32:56]: ▸                ^
[12:32:56]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:215:56: 'ALAssetsLibrary' is deprecated: first deprecated in iOS 9.0 - Use PHPhotoLibrary from the Photos framework instead [-Wdeprecated-declarations]
[12:32:56]: ▸ ALAssetsLibrary* assetsLibrary = [[ALAssetsLibrary alloc] init];
[12:32:56]: ▸            ^
[12:32:56]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:216:20: '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]
[12:32:56]: ▸ [assetsLibrary assetForURL:[self assetLibraryURLForLocalURL:localURL] resultBlock:resultBlock failureBlock:failureBlock];
[12:32:56]: ▸            ^
[12:32:56]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:224:5: '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]
[12:32:56]: ▸ ALAssetsLibraryAssetForURLResultBlock resultBlock = ^(ALAsset* asset) {
[12:32:56]: ▸ ^
[12:32:56]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:228:65: 'defaultRepresentation' is deprecated: first deprecated in iOS 9.0 - Use PHImageRequestOptions with the PHImageManager from the Photos framework instead [-Wdeprecated-declarations]
[12:32:56]: ▸ ALAssetRepresentation* assetRepresentation = [asset defaultRepresentation];
[12:32:56]: ▸                ^
[12:32:56]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:231:55: 'filename' is deprecated: first deprecated in iOS 9.0 - Use the Photos framework instead [-Wdeprecated-declarations]
[12:32:56]: ▸ NSString* filename = [assetRepresentation filename];
[12:32:56]: ▸ ^
[12:32:56]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:234:60: 'ALAssetPropertyDate' is deprecated: first deprecated in iOS 9.0 - Use the creationDate property on a PHAsset from the Photos framework instead [-Wdeprecated-declarations]
[12:32:56]: ▸ NSDate* creationDate = [asset valueForProperty:ALAssetPropertyDate];
[12:32:56]: ▸ ^
[12:32:56]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:234:43: 'valueForProperty:' is deprecated: first deprecated in iOS 9.0 - Use PHAsset class properties from the Photos framework instead [-Wdeprecated-declarations]
[12:32:56]: ▸ NSDate* creationDate = [asset valueForProperty:ALAssetPropertyDate];
[12:32:56]: ▸                        ^
[12:32:56]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:224:59: 'ALAsset' is deprecated: first deprecated in iOS 9.0 - Use PHAsset from the Photos framework instead [-Wdeprecated-declarations]
[12:32:56]: ▸ ALAssetsLibraryAssetForURLResultBlock resultBlock = ^(ALAsset* asset) {
[12:32:56]: ▸ ^
[12:32:56]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:228:13: 'ALAssetRepresentation' is deprecated: first deprecated in iOS 9.0 - Use PHImageRequestOptions with the PHImageManager from the Photos framework instead [-Wdeprecated-declarations]
[12:32:56]: ▸ ALAssetRepresentation* assetRepresentation = [asset defaultRepresentation];
[12:32:56]: ▸            ^
[12:32:56]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:229:91: '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]
[12:32:56]: ▸ [fileInfo setObject:[NSNumber numberWithUnsignedLongLong:[assetRepresentation size]] forKey:@"size"];
[12:32:56]: ▸            ^
[12:32:56]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:244:5: 'ALAssetsLibraryAccessFailureBlock' is deprecated: first deprecated in iOS 9.0 - Use the Photos framework instead [-Wdeprecated-declarations]
[12:32:56]: ▸ ALAssetsLibraryAccessFailureBlock failureBlock = ^(NSError* error) {
[12:32:56]: ▸ ^
[12:32:56]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:249:5: 'ALAssetsLibrary' is deprecated: first deprecated in iOS 9.0 - Use PHPhotoLibrary from the Photos framework instead [-Wdeprecated-declarations]
[12:32:56]: ▸ ALAssetsLibrary* assetsLibrary = [[ALAssetsLibrary alloc] init];
[12:32:56]: ▸                ^
[12:32:56]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:249:56: 'ALAssetsLibrary' is deprecated: first deprecated in iOS 9.0 - Use PHPhotoLibrary from the Photos framework instead [-Wdeprecated-declarations]
[12:32:56]: ▸ ALAssetsLibrary* assetsLibrary = [[ALAssetsLibrary alloc] init];
[12:32:56]: ▸            ^
[12:32:56]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:250:20: '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]
[12:32:56]: ▸ [assetsLibrary assetForURL:[self assetLibraryURLForLocalURL:localURL] resultBlock:resultBlock failureBlock:failureBlock];
[12:32:56]: ▸            ^
[12:32:56]: ▸ Compiling NSJSONSerialization+HCPExtension.m
[12:32:56]: ▸ Compiling NSFileManager+HCPExtension.m
[12:32:56]: ▸ Compiling NSError+HCPExtension.m
[12:32:56]: ▸ Compiling NSData+HCPMD5.m
[12:32:56]: ▸ Compiling NSBundle+HCPExtension.m
[12:32:56]: ▸ Compiling HCPXmlTags.m
[12:32:56]: ▸ Compiling HCPXmlConfigParser.m
[12:32:56]: ▸ Compiling HCPXmlConfig.m
[12:32:56]: ▸ Compiling HCPUpdateRequest.m
[12:32:56]: ▸ Compiling HCPUpdateLoaderWorker.m
[12:32:56]: ▸ Compiling HCPUpdateLoader.m
[12:32:56]: ▸ Compiling HCPUpdateInstaller.m
[12:32:56]: ▸ Compiling HCPPluginInternalPreferences.m
[12:32:56]: ▸ Compiling HCPPluginInternalPreferences+UserDefaults.m
[12:32:56]: ▸ Compiling HCPPlugin.m
[12:32:56]: ▸ ⚠️  /Users/alex/Library/Developer/Xcode/DerivedData/OneCheckIn-heaqvwvfaxgdwodadzjwurrouqiz/Build/Intermediates.noindex/ArchiveIntermediates/OneCheckIn DEV/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/include/Cordova/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:56]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:56]: ▸ ^
[12:32:56]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.h:24:107: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:56]: ▸ - (instancetype)initWithMessage:(NSString *)message storeUrl:(NSString *)storeUrl onSuccessBlock:(void (^)())onSuccess onFailureBlock:(void (^)())onFailure;
[12:32:56]: ▸                                  ^
[12:32:56]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.h:24:144: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:56]: ▸ - (instancetype)initWithMessage:(NSString *)message storeUrl:(NSString *)storeUrl onSuccessBlock:(void (^)())onSuccess onFailureBlock:(void (^)())onFailure;
[12:32:56]: ▸                                                                                                           ^
[12:32:56]: ▸ Compiling HCPManifestFile.m
[12:32:56]: ▸ Linking OneCheckIn
[12:32:57]: ▸ Compiling HCPManifestDiff.m
[12:32:57]: ▸ Compiling HCPInstallationWorker.m
[12:32:57]: ▸ Compiling HCPFilesStructure.m
[12:32:57]: ▸ Compiling HCPFileDownloader.m
[12:32:57]: ▸ Compiling HCPFetchUpdateOptions.m
[12:32:57]: ▸ Compiling HCPEvents.m
[12:32:57]: ▸ Compiling HCPDataDownloader.m
[12:32:57]: ▸ Compiling HCPContentManifestStorage.m
[12:32:57]: ▸ Compiling HCPContentManifest.m
[12:32:57]: ▸ Compiling HCPContentConfig.m
[12:32:57]: ▸ Compiling HCPConfigStorageImpl.m
[12:32:57]: ▸ Compiling HCPCleanupHelper.m
[12:32:57]: ▸ Compiling HCPAssetsFolderHelper.m
[12:32:57]: ▸ Compiling HCPApplicationConfigStorage.m
[12:32:57]: ▸ Compiling HCPApplicationConfig.m
[12:32:57]: ▸ Compiling HCPAppUpdateRequestAlertDialog.m
[12:32:57]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.h:24:107: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:57]: ▸ - (instancetype)initWithMessage:(NSString *)message storeUrl:(NSString *)storeUrl onSuccessBlock:(void (^)())onSuccess onFailureBlock:(void (^)())onFailure;
[12:32:57]: ▸                                                                                                                                                ^
[12:32:57]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.h:24:144: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:57]: ▸ - (instancetype)initWithMessage:(NSString *)message storeUrl:(NSString *)storeUrl onSuccessBlock:(void (^)())onSuccess onFailureBlock:(void (^)())onFailure;
[12:32:57]: ▸                                                                                                           ^
[12:32:57]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.m:12:23: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:57]: ▸ void (^_onSuccess)();
[12:32:57]: ▸                                                                                                                                                ^
[12:32:57]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.m:13:23: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:57]: ▸ void (^_onFailure)();
[12:32:57]: ▸                       ^
[12:32:57]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.m:20:107: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:57]: ▸ - (instancetype)initWithMessage:(NSString *)message storeUrl:(NSString *)storeUrl onSuccessBlock:(void (^)())onSuccess onFailureBlock:(void (^)())onFailure {
[12:32:57]: ▸                       ^
[12:32:57]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.m:20:144: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:57]: ▸ - (instancetype)initWithMessage:(NSString *)message storeUrl:(NSString *)storeUrl onSuccessBlock:(void (^)())onSuccess onFailureBlock:(void (^)())onFailure {
[12:32:57]: ▸                                                                                                           ^
[12:32:57]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.m:41:20: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead [-Wdeprecated-declarations]
[12:32:57]: ▸ - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
[12:32:57]: ▸                                                                                                                                                ^
[12:32:57]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.m:36:5: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead [-Wdeprecated-declarations]
[12:32:57]: ▸ UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"" message:_message delegate:self cancelButtonTitle:positiveButtonTitle otherButtonTitles:negativeButtontitle, nil];
[12:32:57]: ▸            ^
[12:32:57]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.m:36:44: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead [-Wdeprecated-declarations]
[12:32:57]: ▸ UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"" message:_message delegate:self cancelButtonTitle:positiveButtonTitle otherButtonTitles:negativeButtontitle, nil];
[12:32:57]: ▸            ^
[12:32:57]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-hot-code-push-plugin/Utils/HCPAppUpdateRequestAlertDialog.m:44:44: 'openURL:' is deprecated: first deprecated in iOS 10.0 - Please use openURL:options:completionHandler: instead [-Wdeprecated-declarations]
[12:32:57]: ▸ [[UIApplication sharedApplication] openURL:[NSURL URLWithString:_storeUrl]];
[12:32:57]: ▸            ^
[12:32:57]: ▸ Compiling GCDWebServerURLEncodedFormRequest.m
[12:32:57]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:57]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:57]: ▸ ^
[12:32:57]: ▸ Compiling GCDWebServerStreamedResponse.m
[12:32:57]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:57]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:57]: ▸                                            ^
[12:32:58]: ▸ Compiling GCDWebServerResponse.m
[12:32:58]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:58]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:58]: ▸                                            ^
[12:32:58]: ▸ Compiling GCDWebServerRequest.m
[12:32:58]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:58]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:58]: ▸                                            ^
[12:32:58]: ▸ Compiling GCDWebServerMultiPartFormRequest.m
[12:32:58]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:58]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:58]: ▸                                            ^
[12:32:58]: ▸ Compiling GCDWebServerFunctions.m
[12:32:58]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:58]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:58]: ▸                                            ^
[12:32:58]: ▸ Compiling GCDWebServerFileResponse.m
[12:32:58]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:58]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:58]: ▸                                            ^
[12:32:58]: ▸ Compiling GCDWebServerFileRequest.m
[12:32:58]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:58]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:58]: ▸                                            ^
[12:32:58]: ▸ Compiling GCDWebServerErrorResponse.m
[12:32:58]: ▸ this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:58]: ▸ Compiling GCDWebServerDataResponse.m
[12:32:58]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:58]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:58]: ▸                                            ^
[12:32:58]: ▸ Compiling GCDWebServerDataRequest.m
[12:32:58]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:58]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:58]: ▸                                            ^
[12:32:58]: ▸ Compiling GCDWebServerConnection.m
[12:32:58]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:58]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:58]: ▸                                            ^
[12:32:59]: ▸ Compiling GCDWebServer.m
[12:32:59]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:59]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:59]: ▸                                            ^
[12:32:59]: ▸ Compiling CDVWKWebViewUIDelegate.m
[12:32:59]: ▸ Compiling CDVWKWebViewEngine.m
[12:32:59]: ▸ ⚠️  /Users/alex/Library/Developer/Xcode/DerivedData/OneCheckIn-heaqvwvfaxgdwodadzjwurrouqiz/Build/Intermediates.noindex/ArchiveIntermediates/OneCheckIn DEV/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/include/Cordova/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:59]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:59]: ▸                                            ^
[12:32:59]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/GCDWebServerPrivate.h:173:44: this function declaration is not a prototype [-Wstrict-prototypes]
[12:32:59]: ▸ extern void GCDWebServerInitializeFunctions();
[12:32:59]: ▸                                  ^
[12:32:59]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/CDVWKWebViewEngine.m:148:23: 'mediaPlaybackRequiresUserAction' is deprecated: first deprecated in iOS 9.0 [-Wdeprecated-declarations]
[12:32:59]: ▸ configuration.mediaPlaybackRequiresUserAction = YES;
[12:32:59]: ▸                                            ^
[12:32:59]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/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]
[12:32:59]: ▸ errorUrl = [NSURL URLWithString:[NSString stringWithFormat:@"?error=%@", [message stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]] relativeToURL:errorUrl];
[12:32:59]: ▸                            ^
[12:32:59]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-ionic-webview/CDVWKWebViewEngine.m:656:48: 'openURL:' is deprecated: first deprecated in iOS 10.0 - Please use openURL:options:completionHandler: instead [-Wdeprecated-declarations]
[12:32:59]: ▸ [[UIApplication sharedApplication] openURL:url];
[12:32:59]: ▸ ^
[12:32:59]: ▸ Compiling CDVWKWebViewEngine+HCPPlugin_ReadAccessURL.m
[12:32:59]: ▸ Compiling CDVWKProcessPoolFactory.m
[12:32:59]: ▸ Compiling CDVPluginResult+HCPEvents.m
[12:32:59]: ▸ ⚠️  /Users/alex/Library/Developer/Xcode/DerivedData/OneCheckIn-heaqvwvfaxgdwodadzjwurrouqiz/Build/Intermediates.noindex/ArchiveIntermediates/OneCheckIn DEV/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/include/Cordova/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:59]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:59]: ▸ ^
[12:32:59]: ▸ Compiling CDVLocalFilesystem.m
[12:32:59]: ▸ ⚠️  /Users/alex/Library/Developer/Xcode/DerivedData/OneCheckIn-heaqvwvfaxgdwodadzjwurrouqiz/Build/Intermediates.noindex/ArchiveIntermediates/OneCheckIn DEV/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/include/Cordova/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:32:59]: ▸ - (void)runInBackground:(void (^)())block;
[12:32:59]: ▸                                  ^
[12:32:59]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVLocalFilesystem.m:128:43: '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]
[12:32:59]: ▸ NSString* escapedPath = [fullPath stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
[12:32:59]: ▸                                  ^
[12:33:00]: ▸ Compiling CDVFile.m
[12:33:00]: ▸ ⚠️  /Users/alex/Library/Developer/Xcode/DerivedData/OneCheckIn-heaqvwvfaxgdwodadzjwurrouqiz/Build/Intermediates.noindex/ArchiveIntermediates/OneCheckIn DEV/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/include/Cordova/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:33:00]: ▸ - (void)runInBackground:(void (^)())block;
[12:33:00]: ▸ ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVFile.m:589:35: 'stringByReplacingPercentEscapesUsingEncoding:' is deprecated: first deprecated in iOS 9.0 - Use -stringByRemovingPercentEncoding instead, which always uses the recommended UTF-8 encoding. [-Wdeprecated-declarations]
[12:33:00]: ▸ NSString *decodedPath = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; //decode incase it's already encoded to avoid encoding twice
[12:33:00]: ▸                                  ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVFile.m:590:25: '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]
[12:33:00]: ▸ return [decodedPath stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
[12:33:00]: ▸ ^
[12:33:00]: ▸ Compiling CDVAssetLibraryFilesystem.m
[12:33:00]: ▸ ⚠️  /Users/alex/Library/Developer/Xcode/DerivedData/OneCheckIn-heaqvwvfaxgdwodadzjwurrouqiz/Build/Intermediates.noindex/ArchiveIntermediates/OneCheckIn DEV/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/include/Cordova/CDVCommandDelegate.h:47:34: this block declaration is not a prototype [-Wstrict-prototypes]
[12:33:00]: ▸ - (void)runInBackground:(void (^)())block;
[12:33:00]: ▸ ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:193:5: '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]
[12:33:00]: ▸ ALAssetsLibraryAssetForURLResultBlock resultBlock = ^(ALAsset* asset) {
[12:33:00]: ▸                                  ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:196:65: 'defaultRepresentation' is deprecated: first deprecated in iOS 9.0 - Use PHImageRequestOptions with the PHImageManager from the Photos framework instead [-Wdeprecated-declarations]
[12:33:00]: ▸ ALAssetRepresentation* assetRepresentation = [asset defaultRepresentation];
[12:33:00]: ▸                ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:197:84: '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]
[12:33:00]: ▸ NSUInteger size = (end > start) ? (end - start) : [assetRepresentation size];
[12:33:00]: ▸ ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:199:58: '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]
[12:33:00]: ▸ NSUInteger bufferSize = [assetRepresentation getBytes:buffer fromOffset:start length:size error:nil];
[12:33:00]: ▸ ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:201:138: '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]
[12:33:00]: ▸ NSString* MIMEType = (__bridge_transfer NSString*)UTTypeCopyPreferredTagWithClass((__bridge CFStringRef)[assetRepresentation UTI], kUTTagClassMIMEType);
[12:33:00]: ▸ ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:193:59: 'ALAsset' is deprecated: first deprecated in iOS 9.0 - Use PHAsset from the Photos framework instead [-Wdeprecated-declarations]
[12:33:00]: ▸ ALAssetsLibraryAssetForURLResultBlock resultBlock = ^(ALAsset* asset) {
[12:33:00]: ▸ ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:196:13: 'ALAssetRepresentation' is deprecated: first deprecated in iOS 9.0 - Use PHImageRequestOptions with the PHImageManager from the Photos framework instead [-Wdeprecated-declarations]
[12:33:00]: ▸ ALAssetRepresentation* assetRepresentation = [asset defaultRepresentation];
[12:33:00]: ▸            ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:209:5: 'ALAssetsLibraryAccessFailureBlock' is deprecated: first deprecated in iOS 9.0 - Use the Photos framework instead [-Wdeprecated-declarations]
[12:33:00]: ▸ ALAssetsLibraryAccessFailureBlock failureBlock = ^(NSError* error) {
[12:33:00]: ▸            ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:215:5: 'ALAssetsLibrary' is deprecated: first deprecated in iOS 9.0 - Use PHPhotoLibrary from the Photos framework instead [-Wdeprecated-declarations]
[12:33:00]: ▸ ALAssetsLibrary* assetsLibrary = [[ALAssetsLibrary alloc] init];
[12:33:00]: ▸                ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:215:56: 'ALAssetsLibrary' is deprecated: first deprecated in iOS 9.0 - Use PHPhotoLibrary from the Photos framework instead [-Wdeprecated-declarations]
[12:33:00]: ▸ ALAssetsLibrary* assetsLibrary = [[ALAssetsLibrary alloc] init];
[12:33:00]: ▸            ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:216:20: '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]
[12:33:00]: ▸ [assetsLibrary assetForURL:[self assetLibraryURLForLocalURL:localURL] resultBlock:resultBlock failureBlock:failureBlock];
[12:33:00]: ▸            ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:224:5: '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]
[12:33:00]: ▸ ALAssetsLibraryAssetForURLResultBlock resultBlock = ^(ALAsset* asset) {
[12:33:00]: ▸ ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:228:65: 'defaultRepresentation' is deprecated: first deprecated in iOS 9.0 - Use PHImageRequestOptions with the PHImageManager from the Photos framework instead [-Wdeprecated-declarations]
[12:33:00]: ▸ ALAssetRepresentation* assetRepresentation = [asset defaultRepresentation];
[12:33:00]: ▸                ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:231:55: 'filename' is deprecated: first deprecated in iOS 9.0 - Use the Photos framework instead [-Wdeprecated-declarations]
[12:33:00]: ▸ NSString* filename = [assetRepresentation filename];
[12:33:00]: ▸ ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:234:60: 'ALAssetPropertyDate' is deprecated: first deprecated in iOS 9.0 - Use the creationDate property on a PHAsset from the Photos framework instead [-Wdeprecated-declarations]
[12:33:00]: ▸ NSDate* creationDate = [asset valueForProperty:ALAssetPropertyDate];
[12:33:00]: ▸ ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:234:43: 'valueForProperty:' is deprecated: first deprecated in iOS 9.0 - Use PHAsset class properties from the Photos framework instead [-Wdeprecated-declarations]
[12:33:00]: ▸ NSDate* creationDate = [asset valueForProperty:ALAssetPropertyDate];
[12:33:00]: ▸                        ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:224:59: 'ALAsset' is deprecated: first deprecated in iOS 9.0 - Use PHAsset from the Photos framework instead [-Wdeprecated-declarations]
[12:33:00]: ▸ ALAssetsLibraryAssetForURLResultBlock resultBlock = ^(ALAsset* asset) {
[12:33:00]: ▸ ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:228:13: 'ALAssetRepresentation' is deprecated: first deprecated in iOS 9.0 - Use PHImageRequestOptions with the PHImageManager from the Photos framework instead [-Wdeprecated-declarations]
[12:33:00]: ▸ ALAssetRepresentation* assetRepresentation = [asset defaultRepresentation];
[12:33:00]: ▸            ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:229:91: '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]
[12:33:00]: ▸ [fileInfo setObject:[NSNumber numberWithUnsignedLongLong:[assetRepresentation size]] forKey:@"size"];
[12:33:00]: ▸            ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:244:5: 'ALAssetsLibraryAccessFailureBlock' is deprecated: first deprecated in iOS 9.0 - Use the Photos framework instead [-Wdeprecated-declarations]
[12:33:00]: ▸ ALAssetsLibraryAccessFailureBlock failureBlock = ^(NSError* error) {
[12:33:00]: ▸ ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:249:5: 'ALAssetsLibrary' is deprecated: first deprecated in iOS 9.0 - Use PHPhotoLibrary from the Photos framework instead [-Wdeprecated-declarations]
[12:33:00]: ▸ ALAssetsLibrary* assetsLibrary = [[ALAssetsLibrary alloc] init];
[12:33:00]: ▸                ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:249:56: 'ALAssetsLibrary' is deprecated: first deprecated in iOS 9.0 - Use PHPhotoLibrary from the Photos framework instead [-Wdeprecated-declarations]
[12:33:00]: ▸ ALAssetsLibrary* assetsLibrary = [[ALAssetsLibrary alloc] init];
[12:33:00]: ▸            ^
[12:33:00]: ▸ ⚠️  /Users/alex/dev/OneCheckIn-objc/OneCheckIn/Plugins/cordova-plugin-file/CDVAssetLibraryFilesystem.m:250:20: '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]
[12:33:00]: ▸ [assetsLibrary assetForURL:[self assetLibraryURLForLocalURL:localURL] resultBlock:resultBlock failureBlock:failureBlock];
[12:33:00]: ▸            ^
[12:33:00]: ▸ Linking OneCheckIn
[12:33:00]: ▸ Generating 'OneCheckIn.app.dSYM'
[12:33:01]: ▸ Running script 'Run Script'
[12:33:01]: ▸ Running script 'Run Script'
[12:33:03]: ▸ Copying /Users/alex/Library/Developer/Xcode/DerivedData/OneCheckIn-heaqvwvfaxgdwodadzjwurrouqiz/Build/Intermediates.noindex/ArchiveIntermediates/OneCheckIn\ DEV/BuildProductsPath/Release-iphoneos/NotificationLocalizer\ DEV.appex
[12:33:08]: ▸ Touching OneCheckIn.app (in target: OneCheckIn DEV)
[12:33:08]: ▸ Archive Succeeded
[12:33:09]: Generated plist file with the following values:
[12:33:09]: ▸ -----------------------------------------
[12:33:09]: ▸ {
[12:33:09]: ▸   "provisioningProfiles": {
[12:33:09]: ▸     "in.och.onecheckin-dev": "match Development in.och.onecheckin-dev",
[12:33:09]: ▸     "in.och.onecheckin-dev.NotificationLocalizer": "match Development in.och.onecheckin-dev.NotificationLocalizer",
[12:33:09]: ▸     "in.och.onecheckin": "match AppStore in.och.onecheckin",
[12:33:09]: ▸     "in.och.onecheckin.NotificationLocalizer": "match AppStore in.och.onecheckin.NotificationLocalizer"
[12:33:09]: ▸   },
[12:33:09]: ▸   "method": "development",
[12:33:09]: ▸   "signingStyle": "manual"
[12:33:09]: ▸ }
[12:33:09]: ▸ -----------------------------------------
[12:33:09]: $ /usr/bin/xcrun /Library/Ruby/Gems/2.3.0/gems/fastlane-2.125.2/gym/lib/assets/wrap_xcodebuild/xcbuild-safe.sh -exportArchive -exportOptionsPlist '/var/folders/s3/88zj4p6x24gc53mzhkr7dmqw0000gn/T/gym_config20190618-39945-1v2oixf.plist' -archivePath /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn\ 2019-06-18\ 12.32.09.xcarchive -exportPath '/var/folders/s3/88zj4p6x24gc53mzhkr7dmqw0000gn/T/gym_output20190618-39945-jajdpx' 
[12:33:34]: Mapping dSYM(s) using generated BCSymbolMaps
[12:33:34]: $ dsymutil --symbol-map /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn\ 2019-06-18\ 12.32.09.xcarchive/BCSymbolMaps /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn\ 2019-06-18\ 12.32.09.xcarchive/dSYMs/FacebookLogin.framework.dSYM
warning: /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn 2019-06-18 12.32.09.xcarchive/BCSymbolMaps/FacebookLogin-armv7.bcsymbolmap: No such file or directory. Not unobfuscating.
warning: /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn 2019-06-18 12.32.09.xcarchive/BCSymbolMaps/FacebookLogin-arm64.bcsymbolmap: No such file or directory. Not unobfuscating.
warning: Could not open '/Users/alex/Library/Caches/org.carthage.CarthageKit/DerivedData/10.2.1_10E1001/facebook-sdk-swift/f02ed1760d9bcee77a4c41a4bb51d4f933fdc2f8/Build/Intermediates.noindex/ArchiveIntermediates/FacebookLogin/IntermediateBuildFilesPath/FacebookSwift.build/Release-iphoneos/FacebookLogin.build/Objects-normal/arm64/FacebookLogin.swiftmodule'

warning: Could not open '/Users/alex/Library/Caches/org.carthage.CarthageKit/DerivedData/10.2.1_10E1001/facebook-sdk-swift/f02ed1760d9bcee77a4c41a4bb51d4f933fdc2f8/Build/Intermediates.noindex/ArchiveIntermediates/FacebookLogin/IntermediateBuildFilesPath/FacebookSwift.build/Release-iphoneos/FacebookLogin.build/Objects-normal/armv7/FacebookLogin.swiftmodule'

[12:33:34]: $ dsymutil --symbol-map /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn\ 2019-06-18\ 12.32.09.xcarchive/BCSymbolMaps /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn\ 2019-06-18\ 12.32.09.xcarchive/dSYMs/FBSDKCoreKit.framework.dSYM
warning: /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn 2019-06-18 12.32.09.xcarchive/BCSymbolMaps/FBSDKCoreKit-armv7.bcsymbolmap: No such file or directory. Not unobfuscating.
warning: /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn 2019-06-18 12.32.09.xcarchive/BCSymbolMaps/FBSDKCoreKit-arm64.bcsymbolmap: No such file or directory. Not unobfuscating.
[12:33:34]: $ dsymutil --symbol-map /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn\ 2019-06-18\ 12.32.09.xcarchive/BCSymbolMaps /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn\ 2019-06-18\ 12.32.09.xcarchive/dSYMs/NotificationLocalizer\ DEV.appex.dSYM
warning: /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn 2019-06-18 12.32.09.xcarchive/BCSymbolMaps/NotificationLocalizer DEV-armv7.bcsymbolmap: No such file or directory. Not unobfuscating.
warning: /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn 2019-06-18 12.32.09.xcarchive/BCSymbolMaps/NotificationLocalizer DEV-arm64.bcsymbolmap: No such file or directory. Not unobfuscating.
[12:33:34]: $ dsymutil --symbol-map /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn\ 2019-06-18\ 12.32.09.xcarchive/BCSymbolMaps /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn\ 2019-06-18\ 12.32.09.xcarchive/dSYMs/OneCheckIn.app.dSYM
warning: /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn 2019-06-18 12.32.09.xcarchive/BCSymbolMaps/OneCheckIn-armv7.bcsymbolmap: No such file or directory. Not unobfuscating.
warning: /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn 2019-06-18 12.32.09.xcarchive/BCSymbolMaps/OneCheckIn-arm64.bcsymbolmap: No such file or directory. Not unobfuscating.
[12:33:34]: $ dsymutil --symbol-map /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn\ 2019-06-18\ 12.32.09.xcarchive/BCSymbolMaps /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn\ 2019-06-18\ 12.32.09.xcarchive/dSYMs/FBSDKLoginKit.framework.dSYM
warning: /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn 2019-06-18 12.32.09.xcarchive/BCSymbolMaps/FBSDKLoginKit-armv7.bcsymbolmap: No such file or directory. Not unobfuscating.
warning: /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn 2019-06-18 12.32.09.xcarchive/BCSymbolMaps/FBSDKLoginKit-arm64.bcsymbolmap: No such file or directory. Not unobfuscating.
[12:33:34]: $ dsymutil --symbol-map /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn\ 2019-06-18\ 12.32.09.xcarchive/BCSymbolMaps /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn\ 2019-06-18\ 12.32.09.xcarchive/dSYMs/FacebookCore.framework.dSYM
warning: /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn 2019-06-18 12.32.09.xcarchive/BCSymbolMaps/FacebookCore-armv7.bcsymbolmap: No such file or directory. Not unobfuscating.
warning: /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn 2019-06-18 12.32.09.xcarchive/BCSymbolMaps/FacebookCore-arm64.bcsymbolmap: No such file or directory. Not unobfuscating.
warning: warning: Could not open '/Users/alex/Library/Caches/org.carthage.CarthageKit/DerivedData/10.2.1_10E1001/facebook-sdk-swift/f02ed1760d9bcee77a4c41a4bb51d4f933fdc2f8/Build/Intermediates.noindex/ArchiveIntermediates/FacebookCore/IntermediateBuildFilesPath/FacebookSwift.build/Release-iphoneos/FacebookCore.build/Objects-normal/arm64/FacebookCore.swiftmodule'

Could not open '/Users/alex/Library/Caches/org.carthage.CarthageKit/DerivedData/10.2.1_10E1001/facebook-sdk-swift/f02ed1760d9bcee77a4c41a4bb51d4f933fdc2f8/Build/Intermediates.noindex/ArchiveIntermediates/FacebookCore/IntermediateBuildFilesPath/FacebookSwift.build/Release-iphoneos/FacebookCore.build/Objects-normal/armv7/FacebookCore.swiftmodule'

[12:33:34]: $ dsymutil --symbol-map /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn\ 2019-06-18\ 12.32.09.xcarchive/BCSymbolMaps /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn\ 2019-06-18\ 12.32.09.xcarchive/dSYMs/Bolts.framework.dSYM
warning: /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn 2019-06-18 12.32.09.xcarchive/BCSymbolMaps/Bolts-armv7.bcsymbolmap: No such file or directory. Not unobfuscating.
warning: /Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn 2019-06-18 12.32.09.xcarchive/BCSymbolMaps/Bolts-arm64.bcsymbolmap: No such file or directory. Not unobfuscating.
[12:33:34]: Compressing 7 dSYM(s)
[12:33:34]: $ cd '/Users/alex/Library/Developer/Xcode/Archives/2019-06-18/OneCheckIn 2019-06-18 12.32.09.xcarchive/dSYMs' && zip -r '/Users/alex/dev/OneCheckIn-objc/OneCheckIn.app.dSYM.zip' *.dSYM
[12:33:35]: ▸ updating: NotificationLocalizer DEV.appex.dSYM/ (stored 0%)
[12:33:35]: ▸ updating: NotificationLocalizer DEV.appex.dSYM/Contents/ (stored 0%)
[12:33:35]: ▸ updating: NotificationLocalizer DEV.appex.dSYM/Contents/Resources/ (stored 0%)
[12:33:35]: ▸ updating: NotificationLocalizer DEV.appex.dSYM/Contents/Resources/DWARF/ (stored 0%)
[12:33:35]: ▸ updating: NotificationLocalizer DEV.appex.dSYM/Contents/Resources/DWARF/NotificationLocalizer DEV (deflated 75%)
[12:33:35]: ▸ updating: NotificationLocalizer DEV.appex.dSYM/Contents/Info.plist (deflated 51%)
[12:33:35]: ▸ updating: OneCheckIn.app.dSYM/ (stored 0%)
[12:33:35]: ▸ updating: OneCheckIn.app.dSYM/Contents/ (stored 0%)
[12:33:35]: ▸ updating: OneCheckIn.app.dSYM/Contents/Resources/ (stored 0%)
[12:33:35]: ▸ updating: OneCheckIn.app.dSYM/Contents/Resources/DWARF/ (stored 0%)
[12:33:35]: ▸ updating: OneCheckIn.app.dSYM/Contents/Resources/DWARF/OneCheckIn (deflated 68%)
[12:33:35]: ▸ updating: OneCheckIn.app.dSYM/Contents/Info.plist (deflated 52%)
[12:33:35]: ▸ updating: Bolts.framework.dSYM/ (stored 0%)
[12:33:35]: ▸ updating: Bolts.framework.dSYM/Contents/ (stored 0%)
[12:33:35]: ▸ updating: Bolts.framework.dSYM/Contents/Resources/ (stored 0%)
[12:33:35]: ▸ updating: Bolts.framework.dSYM/Contents/Resources/DWARF/ (stored 0%)
[12:33:35]: ▸ updating: Bolts.framework.dSYM/Contents/Resources/DWARF/Bolts (deflated 66%)
[12:33:35]: ▸ updating: Bolts.framework.dSYM/Contents/Info.plist (deflated 53%)
[12:33:35]: ▸ updating: FBSDKCoreKit.framework.dSYM/ (stored 0%)
[12:33:35]: ▸ updating: FBSDKCoreKit.framework.dSYM/Contents/ (stored 0%)
[12:33:35]: ▸ updating: FBSDKCoreKit.framework.dSYM/Contents/Resources/ (stored 0%)
[12:33:35]: ▸ updating: FBSDKCoreKit.framework.dSYM/Contents/Resources/DWARF/ (stored 0%)
[12:33:35]: ▸ updating: FBSDKCoreKit.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit (deflated 68%)
[12:33:35]: ▸ updating: FBSDKCoreKit.framework.dSYM/Contents/Info.plist (deflated 51%)
[12:33:35]: ▸ updating: FacebookCore.framework.dSYM/ (stored 0%)
[12:33:35]: ▸ updating: FacebookCore.framework.dSYM/Contents/ (stored 0%)
[12:33:35]: ▸ updating: FacebookCore.framework.dSYM/Contents/Resources/ (stored 0%)
[12:33:35]: ▸ updating: FacebookCore.framework.dSYM/Contents/Resources/DWARF/ (stored 0%)
[12:33:35]: ▸ updating: FacebookCore.framework.dSYM/Contents/Resources/DWARF/FacebookCore (deflated 70%)
[12:33:35]: ▸ updating: FacebookCore.framework.dSYM/Contents/Info.plist (deflated 52%)
[12:33:35]: ▸ updating: FBSDKLoginKit.framework.dSYM/ (stored 0%)
[12:33:35]: ▸ updating: FBSDKLoginKit.framework.dSYM/Contents/ (stored 0%)
[12:33:35]: ▸ updating: FBSDKLoginKit.framework.dSYM/Contents/Resources/ (stored 0%)
[12:33:35]: ▸ updating: FBSDKLoginKit.framework.dSYM/Contents/Resources/DWARF/ (stored 0%)
[12:33:35]: ▸ updating: FBSDKLoginKit.framework.dSYM/Contents/Resources/DWARF/FBSDKLoginKit (deflated 67%)
[12:33:35]: ▸ updating: FBSDKLoginKit.framework.dSYM/Contents/Info.plist (deflated 51%)
[12:33:35]: ▸ updating: FacebookLogin.framework.dSYM/ (stored 0%)
[12:33:35]: ▸ updating: FacebookLogin.framework.dSYM/Contents/ (stored 0%)
[12:33:35]: ▸ updating: FacebookLogin.framework.dSYM/Contents/Resources/ (stored 0%)
[12:33:35]: ▸ updating: FacebookLogin.framework.dSYM/Contents/Resources/DWARF/ (stored 0%)
[12:33:35]: ▸ updating: FacebookLogin.framework.dSYM/Contents/Resources/DWARF/FacebookLogin (deflated 68%)
[12:33:35]: ▸ updating: FacebookLogin.framework.dSYM/Contents/Info.plist (deflated 52%)

[12:33:35]: Successfully exported and compressed dSYM file
[12:33:35]: Successfully exported and signed the ipa file:
[12:33:35]: /Users/alex/dev/OneCheckIn-objc/OneCheckIn.ipa
[12:33:35]: -------------------------
[12:33:35]: --- Step: crashlytics ---
[12:33:35]: -------------------------
[12:33:35]: Uploading the build to Crashlytics Beta. Time for some ☕️.
[12:33:53]: Build successfully uploaded to Crashlytics Beta 🌷
[12:33:53]: Visit https://fabric.io/_/beta to add release notes and notify testers.

+------+------------------+-------------+
|           fastlane summary            |
+------+------------------+-------------+
| Step | Action           | Time (in s) |
+------+------------------+-------------+
| 1    | update_fastlane  | 0           |
| 2    | default_platform | 0           |
| 3    | ./update_www.sh  | 0           |
| 4    | prompt           | 22          |
| 5    | match            | 17          |
| 6    | gym              | 91          |
| 7    | crashlytics      | 17          |
+------+------------------+-------------+

[12:33:53]: fastlane.tools finished successfully 🎉

Xcode: https://justpaste.it/3461v