diff --git a/NCMB.podspec b/NCMB.podspec index 06683984..538d4456 100644 --- a/NCMB.podspec +++ b/NCMB.podspec @@ -1,9 +1,9 @@ Pod::Spec.new do |s| s.name = "NCMB" - s.version = "2.4.3" - s.summary = "NCMB is SDK for NIF Cloud mobile backend." + s.version = "3.0.0" + s.summary = "NCMB is SDK for NIFCLOUD mobile backend." s.description = <<-DESC - NCMB is SDK for NIF Cloud mobile backend. + NCMB is SDK for NIFCLOUD mobile backend. NIF Cloud mobile backend function * Data store * Push Notification @@ -11,11 +11,11 @@ Pod::Spec.new do |s| * SNS integration * File store DESC - s.homepage = "http://mb.cloud.nifty.com" + s.homepage = "https://mbaas.nifcloud.com" s.license = "Apache License, Version 2.0" s.author = "FUJITSU CLOUD TECHNOLOGIES LIMITED" s.platform = :ios, "5.1" - s.source = { :git => 'https://github.com/NIFCloud-mbaas/ncmb_ios.git', :tag => 'v2.4.3' } + s.source = { :git => 'https://github.com/NIFCloud-mbaas/ncmb_ios.git', :tag => 'v3.0.0' } s.source_files = "NCMB/**/*.{h,m,c}" s.frameworks = "Foundation", "UIKit", "MobileCoreServices", "AudioToolbox", "SystemConfiguration" s.requires_arc = true diff --git a/NCMB.xcodeproj/project.pbxproj b/NCMB.xcodeproj/project.pbxproj index 432dca55..6bbf6289 100644 --- a/NCMB.xcodeproj/project.pbxproj +++ b/NCMB.xcodeproj/project.pbxproj @@ -601,7 +601,7 @@ MODULEMAP_FILE = "$(SRCROOT)/NCMB.modulemap"; MODULEMAP_PRIVATE_FILE = ""; ONLY_ACTIVE_ARCH = NO; - PRODUCT_BUNDLE_IDENTIFIER = com.nifty.cloud.mb.NCMB; + PRODUCT_BUNDLE_IDENTIFIER = com.nifcloud.mbaas.NCMB; PRODUCT_NAME = "$(TARGET_NAME)"; SKIP_INSTALL = YES; }; @@ -619,7 +619,7 @@ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; MODULEMAP_FILE = "$(SRCROOT)/NCMB.modulemap"; MODULEMAP_PRIVATE_FILE = ""; - PRODUCT_BUNDLE_IDENTIFIER = com.nifty.cloud.mb.NCMB; + PRODUCT_BUNDLE_IDENTIFIER = com.nifcloud.mbaas.NCMB; PRODUCT_NAME = "$(TARGET_NAME)"; SKIP_INSTALL = YES; }; diff --git a/NCMB/NCMB.m b/NCMB/NCMB.m index 3a929dac..3ab982bf 100644 --- a/NCMB/NCMB.m +++ b/NCMB/NCMB.m @@ -40,7 +40,7 @@ + (void)setApplicationKey:(NSString *)appKey clientKey:(NSString *)cliKey{ applicationKey = appKey; clientKey = cliKey; NCMBReachability *reachability = [NCMBReachability sharedInstance]; - //[reachability reachabilityWithHostName:@"mb.api.cloud.nifty.com"]; + //[reachability reachabilityWithHostName:@"mbaas.api.nifcloud.com"]; [reachability startNotifier]; } diff --git a/NCMB/NCMBAnalytics.m b/NCMB/NCMBAnalytics.m index ed0b2a83..df28f8c1 100644 --- a/NCMB/NCMBAnalytics.m +++ b/NCMB/NCMBAnalytics.m @@ -28,7 +28,7 @@ +(void)trackAppOpenedWithLaunchOptions:(NSDictionary *)launchOptions{ } + (void)trackAppOpenedWithRemoteNotificationPayload:(NSDictionary *)userInfo{ - NSString * pushId = [userInfo objectForKey:@"com.nifty.PushId"]; + NSString * pushId = [userInfo objectForKey:@"com.nifcloud.mbaas.PushId"]; NCMBInstallation *installation = [NCMBInstallation currentInstallation]; if (pushId != nil && installation.deviceToken != nil){ //コネクションを作成 diff --git a/NCMB/NCMBConstants.h b/NCMB/NCMBConstants.h index 57b557ee..d60d8814 100644 --- a/NCMB/NCMBConstants.h +++ b/NCMB/NCMBConstants.h @@ -22,7 +22,7 @@ #pragma mark - error #define ERRORDOMAIN @"NCMBErrorDomain" -#define SDK_VERSION @"2.4.3" +#define SDK_VERSION @"3.0.0" #define DATA_MAIN_PATH [NSHomeDirectory() stringByAppendingPathComponent:@"Library/"] #define COMMAND_CACHE_FOLDER_PATH [NSString stringWithFormat:@"%@/Private Documents/NCMB/Command Cache/", DATA_MAIN_PATH] diff --git a/NCMB/NCMBError.m b/NCMB/NCMBError.m index bbc553e5..a99cc1d9 100644 --- a/NCMB/NCMBError.m +++ b/NCMB/NCMBError.m @@ -17,7 +17,7 @@ #import "NCMBError.h" -NSString const *kNCMBErrorDomain = @"com.nifty.cloud.mb"; +NSString const *kNCMBErrorDomain = @"com.nifcloud.mbaas"; NSInteger const NCMBErrorFacebookLoginCancelled = 401004; diff --git a/NCMB/NCMBFile.m b/NCMB/NCMBFile.m index 02c8e79b..cd72f5fc 100644 --- a/NCMB/NCMBFile.m +++ b/NCMB/NCMBFile.m @@ -24,7 +24,7 @@ #pragma mark - url #define URL_FILE @"files" -#define URL_PATH @"https://mb.api.cloud.nifty.com/2013-09-01/" +#define URL_PATH @"https://mbaas.api.nifcloud.com/2013-09-01/" @interface NCMBFile(){ NCMBURLSession *session; diff --git a/NCMB/NCMBPush.h b/NCMB/NCMBPush.h index 1513b459..f1a02915 100644 --- a/NCMB/NCMBPush.h +++ b/NCMB/NCMBPush.h @@ -118,7 +118,7 @@ /** - ユーザの情報を設定。開発者が付与したい情報を設定することができる。ここで設定した値はプッシュ通知のペイロードから「com.nifty.Data」というキーで取得できる + ユーザの情報を設定。開発者が付与したい情報を設定することができる。ここで設定した値はプッシュ通知のペイロードから「com.nifcloud.mbaas.Data」というキーで取得できる @param userSettingValue ユーザの情報 */ - (void)setUserSettingValue:(NSDictionary *)userSettingValue; diff --git a/NCMB/NCMBPush.m b/NCMB/NCMBPush.m index ad2befc2..ecc3fa77 100644 --- a/NCMB/NCMBPush.m +++ b/NCMB/NCMBPush.m @@ -143,7 +143,7 @@ + (void)handlePush:(NSDictionary *)userInfo{ } + (void) handleRichPush:(NSDictionary *)userInfo { - NSString *urlStr = [userInfo objectForKey:@"com.nifty.RichUrl"]; + NSString *urlStr = [userInfo objectForKey:@"com.nifcloud.mbaas.RichUrl"]; if ([urlStr isKindOfClass:[NSString class]]) { if (rv == nil){ diff --git a/NCMB/NCMBReachability/NCMBReachability.m b/NCMB/NCMBReachability/NCMBReachability.m index 39f5e0bb..631cbd69 100644 --- a/NCMB/NCMBReachability/NCMBReachability.m +++ b/NCMB/NCMBReachability/NCMBReachability.m @@ -23,7 +23,7 @@ #import #import -static NSString *const kHostName = @"mb.api.cloud.nifty.com"; +static NSString *const kHostName = @"mbaas.api.nifcloud.com"; /** 通信状況が変化した際に呼び出されるコールバックメソッド diff --git a/NCMB/NCMBRequest/NCMBRequest.m b/NCMB/NCMBRequest/NCMBRequest.m index ed1a40ea..6ad509c2 100644 --- a/NCMB/NCMBRequest/NCMBRequest.m +++ b/NCMB/NCMBRequest/NCMBRequest.m @@ -20,7 +20,7 @@ #import #import "NCMBDateFormat.h" -static NSString *const kEndPoint = @"https://mb.api.cloud.nifty.com"; +static NSString *const kEndPoint = @"https://mbaas.api.nifcloud.com"; static NSString *const kAPIVersion = @"2013-09-01"; static NSString *const appKeyField = @"X-NCMB-Application-Key"; static NSString *const timestampField = @"X-NCMB-Timestamp"; @@ -57,7 +57,7 @@ -(instancetype)initWithURL:(NSURL *)url method:method timestamp:timestampStr] forHTTPHeaderField:signatureField]; - NSRange range = [url.description rangeOfString:@"script.mb.api.cloud.nifty.com"]; + NSRange range = [url.description rangeOfString:@"script.mbaas.api.nifcloud.com"]; if(![headers objectForKey:@"Content-Type"] || range.location != NSNotFound){ [self setValue:@"application/json" forHTTPHeaderField:@"Content-Type"]; } diff --git a/NCMB/NCMBScriptService/NCMBScriptService.m b/NCMB/NCMBScriptService/NCMBScriptService.m index e754304f..450d1234 100644 --- a/NCMB/NCMBScriptService/NCMBScriptService.m +++ b/NCMB/NCMBScriptService/NCMBScriptService.m @@ -16,7 +16,7 @@ #import "NCMBScriptService.h" -NSString *const NCMBScriptServiceDefaultEndPoint = @"https://script.mb.api.cloud.nifty.com"; +NSString *const NCMBScriptServiceDefaultEndPoint = @"https://script.mbaas.api.nifcloud.com"; NSString *const NCMBScriptServiceApiVersion = @"2015-09-01"; NSString *const NCMBScriptServicePath = @"script"; diff --git a/NCMB/NCMB_Info.plist b/NCMB/NCMB_Info.plist index f5c2f8df..d2f880b7 100644 --- a/NCMB/NCMB_Info.plist +++ b/NCMB/NCMB_Info.plist @@ -11,7 +11,7 @@ CFBundleIconFile CFBundleIdentifier - com.nifty.cloud.mb.NCMB + com.nifcloud.mbaas.NCMB CFBundleInfoDictionaryVersion 6.0 CFBundleName @@ -19,7 +19,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 2.4.3 + 3.0.0 CFBundleSignature ???? CFBundleVersion diff --git a/NCMBTests/NCMBTests.xcodeproj/project.pbxproj b/NCMBTests/NCMBTests.xcodeproj/project.pbxproj index df26d008..8e67d7ea 100644 --- a/NCMBTests/NCMBTests.xcodeproj/project.pbxproj +++ b/NCMBTests/NCMBTests.xcodeproj/project.pbxproj @@ -289,7 +289,7 @@ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; - PRODUCT_BUNDLE_IDENTIFIER = com.nifty.cloud.mb.NCMBTests; + PRODUCT_BUNDLE_IDENTIFIER = com.nifcloud.mbaas.NCMBTests; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = iphoneos; }; @@ -330,7 +330,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 9.2; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_BUNDLE_IDENTIFIER = com.nifty.cloud.mb.NCMBTests; + PRODUCT_BUNDLE_IDENTIFIER = com.nifcloud.mbaas.NCMBTests; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = iphoneos; VALIDATE_PRODUCT = YES; diff --git a/NCMBTests/NCMBTests/NCMBFileSpec.m b/NCMBTests/NCMBTests/NCMBFileSpec.m index 11bab283..f705b558 100644 --- a/NCMBTests/NCMBTests/NCMBFileSpec.m +++ b/NCMBTests/NCMBTests/NCMBFileSpec.m @@ -58,7 +58,7 @@ +(NSString*) getTimeStamp; NCMBFile *fileData = [NCMBFile fileWithName:@"test.png" data:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { NSDictionary *responseDic = @{ @@ -91,7 +91,7 @@ +(NSString*) getTimeStamp; NCMBFile *fileData = [NCMBFile fileWithName:@"ncmb.txt" data:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:200 headers:@{@"Content-Type":@"text/plain;charset=UTF-8"}]; @@ -113,7 +113,7 @@ +(NSString*) getTimeStamp; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:200 headers:@{@"Content-Type":@"text/plain;charset=UTF-8"}]; }]; @@ -133,7 +133,7 @@ +(NSString*) getTimeStamp; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -155,7 +155,7 @@ +(NSString*) getTimeStamp; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -178,7 +178,7 @@ +(NSString*) getTimeStamp; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -201,7 +201,7 @@ +(NSString*) getTimeStamp; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -221,7 +221,7 @@ +(NSString*) getTimeStamp; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; diff --git a/NCMBTests/NCMBTests/NCMBInstallationSpec.m b/NCMBTests/NCMBTests/NCMBInstallationSpec.m index 00289c32..80440eae 100644 --- a/NCMBTests/NCMBTests/NCMBInstallationSpec.m +++ b/NCMBTests/NCMBTests/NCMBInstallationSpec.m @@ -54,7 +54,7 @@ -(NSMutableDictionary *)beforeConnection; }, @"applicationName" : @"aaaa", @"objectId" : @"EVMu2ne7bjzZhOW2", - @"sdkVersion" : @"2.4.3" + @"sdkVersion" : @"3.0.0" }; NSDictionary *responseInstallation = @{@"channels" : @[ diff --git a/NCMBTests/NCMBTests/NCMBObjectSpec.m b/NCMBTests/NCMBTests/NCMBObjectSpec.m index 1d9f595e..1d772cbd 100644 --- a/NCMBTests/NCMBTests/NCMBObjectSpec.m +++ b/NCMBTests/NCMBTests/NCMBObjectSpec.m @@ -120,7 +120,7 @@ + (id)convertClass:(NSMutableDictionary*)result NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -144,7 +144,7 @@ + (id)convertClass:(NSMutableDictionary*)result NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -168,7 +168,7 @@ + (id)convertClass:(NSMutableDictionary*)result NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -189,7 +189,7 @@ + (id)convertClass:(NSMutableDictionary*)result NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -214,7 +214,7 @@ + (id)convertClass:(NSMutableDictionary*)result NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:200 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -238,7 +238,7 @@ + (id)convertClass:(NSMutableDictionary*)result NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -265,7 +265,7 @@ + (id)convertClass:(NSMutableDictionary*)result NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:200 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -286,7 +286,7 @@ + (id)convertClass:(NSMutableDictionary*)result NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -306,7 +306,7 @@ + (id)convertClass:(NSMutableDictionary*)result NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:200 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -330,7 +330,7 @@ + (id)convertClass:(NSMutableDictionary*)result NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -354,7 +354,7 @@ + (id)convertClass:(NSMutableDictionary*)result NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:200 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -375,7 +375,7 @@ + (id)convertClass:(NSMutableDictionary*)result NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; diff --git a/NCMBTests/NCMBTests/NCMBQuerySpec.m b/NCMBTests/NCMBTests/NCMBQuerySpec.m index bd7c0889..e2985a1e 100644 --- a/NCMBTests/NCMBTests/NCMBQuerySpec.m +++ b/NCMBTests/NCMBTests/NCMBQuerySpec.m @@ -57,7 +57,7 @@ -(NSDateFormatter*)createNCMBDateFormatter; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:200 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -121,7 +121,7 @@ -(NSDateFormatter*)createNCMBDateFormatter; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -146,7 +146,7 @@ -(NSDateFormatter*)createNCMBDateFormatter; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -178,7 +178,7 @@ -(NSDateFormatter*)createNCMBDateFormatter; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -200,7 +200,7 @@ -(NSDateFormatter*)createNCMBDateFormatter; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -225,7 +225,7 @@ -(NSDateFormatter*)createNCMBDateFormatter; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -248,7 +248,7 @@ -(NSDateFormatter*)createNCMBDateFormatter; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -276,7 +276,7 @@ -(NSDateFormatter*)createNCMBDateFormatter; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -296,7 +296,7 @@ -(NSDateFormatter*)createNCMBDateFormatter; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -321,7 +321,7 @@ -(NSDateFormatter*)createNCMBDateFormatter; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -345,7 +345,7 @@ -(NSDateFormatter*)createNCMBDateFormatter; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -373,7 +373,7 @@ -(NSDateFormatter*)createNCMBDateFormatter; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -393,7 +393,7 @@ -(NSDateFormatter*)createNCMBDateFormatter; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -419,7 +419,7 @@ -(NSDateFormatter*)createNCMBDateFormatter; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -443,7 +443,7 @@ -(NSDateFormatter*)createNCMBDateFormatter; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -472,7 +472,7 @@ -(NSDateFormatter*)createNCMBDateFormatter; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -491,7 +491,7 @@ -(NSDateFormatter*)createNCMBDateFormatter; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; diff --git a/NCMBTests/NCMBTests/NCMBRequestSpec.m b/NCMBTests/NCMBTests/NCMBRequestSpec.m index 914b889b..2f59046a 100644 --- a/NCMBTests/NCMBTests/NCMBRequestSpec.m +++ b/NCMBTests/NCMBTests/NCMBRequestSpec.m @@ -39,7 +39,7 @@ it(@"should set required HTTP request Headers", ^{ - NSString *urlStr = @"https://mb.api.cloud.nifty.com/2013-09-01/classes/TestClass?where=%7B%22testKey%22%3A%22testValue%22%7D"; + NSString *urlStr = @"https://mbaas.api.nifcloud.com/2013-09-01/classes/TestClass?where=%7B%22testKey%22%3A%22testValue%22%7D"; NSURL *url = [NSURL URLWithString:urlStr]; NSString *expectTimeStamp = @"2013-12-02T02:44:35.452Z"; @@ -57,7 +57,7 @@ NSDictionary *headers = [request allHTTPHeaderFields]; expect([headers objectForKey:@"X-NCMB-Application-Key"]).to.equal(applicationKey); - NSString *expectSignature = @"/mQAJJfMHx2XN9mPZ9bDWR9VIeftZ97ntzDIRw0MQ4M="; + NSString *expectSignature = @"AltGkQgXurEV7u0qMd+87ud7BKuueldoCjaMgVc9Bes="; expect([headers objectForKey:@"X-NCMB-Signature"]).to.equal(expectSignature); expect([headers objectForKey:@"X-NCMB-Timestamp"]).to.equal(expectTimeStamp); @@ -71,7 +71,7 @@ it(@"test PUT request body data empty", ^{ - NSString *urlStr = @"https://mb.api.cloud.nifty.com/2013-09-01/classes/TestClass/mockObjectId"; + NSString *urlStr = @"https://mbaas.api.nifcloud.com/2013-09-01/classes/TestClass/mockObjectId"; NSURL *url = [NSURL URLWithString:urlStr]; NCMBRequest *request = [[NCMBRequest alloc] initWithURL:url method:@"PUT" diff --git a/NCMBTests/NCMBTests/NCMBScriptServiceSpec.m b/NCMBTests/NCMBTests/NCMBScriptServiceSpec.m index 1dce1aa3..6fd815b8 100644 --- a/NCMBTests/NCMBTests/NCMBScriptServiceSpec.m +++ b/NCMBTests/NCMBTests/NCMBScriptServiceSpec.m @@ -38,7 +38,7 @@ it (@"should set default endpoint", ^{ NCMBScriptService *service = [[NCMBScriptService alloc]init]; - expect(service.endpoint).to.equal(@"https://script.mb.api.cloud.nifty.com"); + expect(service.endpoint).to.equal(@"https://script.mbaas.api.nifcloud.com"); }); it (@"should return specified endpoint and request url",^{ diff --git a/NCMBTests/NCMBTests/NCMBUserSpec.m b/NCMBTests/NCMBTests/NCMBUserSpec.m index 444d283c..2b4c341e 100644 --- a/NCMBTests/NCMBTests/NCMBUserSpec.m +++ b/NCMBTests/NCMBTests/NCMBUserSpec.m @@ -803,7 +803,7 @@ -(NSMutableDictionary *)beforeConnection; NCMBUser *user = [NCMBUser user]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { NSMutableDictionary *responseDic = [@{ @@ -851,7 +851,7 @@ -(NSMutableDictionary *)beforeConnection; NCMBUser *user = [NCMBUser user]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { NSMutableDictionary *responseDic = [@{ @@ -896,7 +896,7 @@ -(NSMutableDictionary *)beforeConnection; NCMBUser *user = [NCMBUser user]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { NSMutableDictionary *responseDic = [@{ @@ -963,7 +963,7 @@ -(NSMutableDictionary *)beforeConnection; it(@"after logged in should not change current user when update another user", ^{ [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { NSMutableDictionary *responseDic = [@{@"createDate" : @"2017-01-31T04:13:03.065Z", @@ -987,7 +987,7 @@ -(NSMutableDictionary *)beforeConnection; expect([NCMBUser currentUser]).notTo.beNil(); [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { NSMutableDictionary *responseDic = [@{@"updateDate" : @"2017-07-10T02:37:54.917Z" @@ -1023,7 +1023,7 @@ -(NSMutableDictionary *)beforeConnection; it(@"even not logged in should not become current user when update any user", ^{ // 1.念のためログアウトする [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { NSData *responseData = [[NSData alloc]init]; @@ -1054,7 +1054,7 @@ -(NSMutableDictionary *)beforeConnection; it(@"should become current user when regist new user", ^{ [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { NSMutableDictionary *responseDic = [@{@"createDate" : @"2017-01-31T04:13:03.065Z", @@ -1093,7 +1093,7 @@ -(NSMutableDictionary *)beforeConnection; it(@"after logged in should change to current user when regist new user", ^{ [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { NSMutableDictionary *responseDic = [@{@"objectId" : @"e4YWYnYtcptTIV23", @@ -1116,7 +1116,7 @@ -(NSMutableDictionary *)beforeConnection; expect([NCMBUser currentUser]).notTo.beNil(); [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { NSMutableDictionary *responseDic = [@{@"createDate" : @"2017-01-31T04:13:03.065Z", @@ -1156,7 +1156,7 @@ -(NSMutableDictionary *)beforeConnection; it(@"should update data local when update current user", ^{ [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { NSMutableDictionary *responseDic = [@{@"createDate" : @"2017-01-31T04:13:03.065Z", @@ -1182,7 +1182,7 @@ -(NSMutableDictionary *)beforeConnection; expect(currentUser).notTo.beNil(); [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { NSMutableDictionary *responseDic = [@{ @@ -1228,7 +1228,7 @@ -(NSMutableDictionary *)beforeConnection; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -1257,7 +1257,7 @@ -(NSMutableDictionary *)beforeConnection; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -1285,7 +1285,7 @@ -(NSMutableDictionary *)beforeConnection; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -1311,7 +1311,7 @@ -(NSMutableDictionary *)beforeConnection; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -1341,7 +1341,7 @@ -(NSMutableDictionary *)beforeConnection; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -1371,7 +1371,7 @@ -(NSMutableDictionary *)beforeConnection; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -1400,7 +1400,7 @@ -(NSMutableDictionary *)beforeConnection; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -1428,7 +1428,7 @@ -(NSMutableDictionary *)beforeConnection; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -1447,7 +1447,7 @@ -(NSMutableDictionary *)beforeConnection; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:200 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -1471,7 +1471,7 @@ -(NSMutableDictionary *)beforeConnection; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -1497,7 +1497,7 @@ -(NSMutableDictionary *)beforeConnection; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:200 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -1517,7 +1517,7 @@ -(NSMutableDictionary *)beforeConnection; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -1538,7 +1538,7 @@ -(NSMutableDictionary *)beforeConnection; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -1555,7 +1555,7 @@ -(NSMutableDictionary *)beforeConnection; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -1573,7 +1573,7 @@ -(NSMutableDictionary *)beforeConnection; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:200 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -1593,7 +1593,7 @@ -(NSMutableDictionary *)beforeConnection; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -1614,7 +1614,7 @@ -(NSMutableDictionary *)beforeConnection; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; @@ -1631,7 +1631,7 @@ -(NSMutableDictionary *)beforeConnection; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:NSJSONWritingPrettyPrinted error:nil]; [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { - return [request.URL.host isEqualToString:@"mb.api.cloud.nifty.com"]; + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { return [OHHTTPStubsResponse responseWithData:responseData statusCode:403 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; diff --git a/Readme.md b/Readme.md index 55512b51..ecb63995 100644 --- a/Readme.md +++ b/Readme.md @@ -6,7 +6,7 @@ ニフクラ mobile backend iOS SDKは、 モバイルアプリのバックエンド機能を提供するクラウドサービス -[ニフクラ mobile backend](http://mb.cloud.nifty.com)用のiOS SDKです。 +[ニフクラ mobile backend](https://mbaas.nifcloud.com)用のiOS SDKです。 - プッシュ通知 - データストア @@ -19,14 +19,14 @@ このSDKを利用する前に、ニフクラ mobile backendのアカウントを作成する必要があります。 アカウント作成後のSDK導入手順については、 -[クイックスタート](http://mb.cloud.nifty.com/doc/quickstart_ios.html)をご覧ください。 +[クイックスタート](https://mbaas.nifcloud.com/doc/current/introduction/quickstart_ios.html)をご覧ください。 ## 動作環境 - iOS 9.x ~ iOS 11.x - Xcode7.x ~ Xcode9.x - armv7, armv7s, arm64アーキテクチャ -- iOS/Xcodeのバージョンに依って対応が必要となる可能性があります。詳細はニフクラ mobile backendの[ドキュメント](http://mb.cloud.nifty.com/doc/current/)をご覧ください。 +- iOS/Xcodeのバージョンに依って対応が必要となる可能性があります。詳細はニフクラ mobile backendの[ドキュメント](https://mbaas.nifcloud.com/doc/current/)をご覧ください。 ## テクニカルサポート窓口対応バージョン @@ -43,6 +43,6 @@ ## 参考URL集 -- [ニフクラ mobile backend](http://mb.cloud.nifty.com) -- [ドキュメント](http://mb.cloud.nifty.com/doc) +- [ニフクラ mobile backend](https://mbaas.nifcloud.com/) +- [ドキュメント](https://mbaas.nifcloud.com/doc/current/) - [ユーザーコミュニティ](https://github.com/NIFCloud-mbaas/UserCommunity) diff --git a/examples/ConfirmPushNotification/ConfirmPushNotification.xcodeproj/project.pbxproj b/examples/ConfirmPushNotification/ConfirmPushNotification.xcodeproj/project.pbxproj deleted file mode 100644 index 58ca94fc..00000000 --- a/examples/ConfirmPushNotification/ConfirmPushNotification.xcodeproj/project.pbxproj +++ /dev/null @@ -1,1128 +0,0 @@ - - - - - archiveVersion - 1 - classes - - objectVersion - 46 - objects - - 1C63157A9D78461DBBA5A5F3 - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - name - 📦 Embed Pods Frameworks - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - "${SRCROOT}/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification-frameworks.sh" - - showEnvVarsInLog - 0 - - 210D510CAB74C709AF567A3B - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - name - Pods-ConfirmPushNotificationTests.release.xcconfig - path - Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests.release.xcconfig - sourceTree - <group> - - 285B14301A35D025D432B0FF - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - name - Pods-ConfirmPushNotification.release.xcconfig - path - Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification.release.xcconfig - sourceTree - <group> - - 2B2272B300E5C45157783833 - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - name - 📦 Embed Pods Frameworks - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - "${SRCROOT}/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests-frameworks.sh" - - showEnvVarsInLog - 0 - - 5DFE48853655C8E12D3D0B92 - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - name - 📦 Copy Pods Resources - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - "${SRCROOT}/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests-resources.sh" - - showEnvVarsInLog - 0 - - 74C6F4B1C9C1601AFCA2BFB7 - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - name - 📦 Check Pods Manifest.lock - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - diff "${PODS_ROOT}/../Podfile.lock" "${PODS_ROOT}/Manifest.lock" > /dev/null -if [[ $? != 0 ]] ; then - cat << EOM -error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation. -EOM - exit 1 -fi - - showEnvVarsInLog - 0 - - 7552B0FD553DD7AFE7749FBB - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - name - 📦 Check Pods Manifest.lock - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - diff "${PODS_ROOT}/../Podfile.lock" "${PODS_ROOT}/Manifest.lock" > /dev/null -if [[ $? != 0 ]] ; then - cat << EOM -error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation. -EOM - exit 1 -fi - - showEnvVarsInLog - 0 - - 8CA4FACCCF17D0ED61BA799A - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - name - Pods-ConfirmPushNotification.debug.xcconfig - path - Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification.debug.xcconfig - sourceTree - <group> - - 97157412EC9EAA669E152038 - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - name - 📦 Copy Pods Resources - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - "${SRCROOT}/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification-resources.sh" - - showEnvVarsInLog - 0 - - 9BC1BB252B4762DC1CB722AF - - explicitFileType - archive.ar - includeInIndex - 0 - isa - PBXFileReference - path - libPods-ConfirmPushNotificationTests.a - sourceTree - BUILT_PRODUCTS_DIR - - 9DC9ED071DE69E3E005CACC6 - - children - - 9DC9ED121DE69E3E005CACC6 - 9DC9ED2C1DE69E3E005CACC6 - 9DC9ED111DE69E3E005CACC6 - F39FD823C78AAB3383C89B8F - E190DEC6239B3EC8BDEF3E6B - - isa - PBXGroup - sourceTree - <group> - - 9DC9ED081DE69E3E005CACC6 - - attributes - - LastUpgradeCheck - 0810 - ORGANIZATIONNAME - Nifty - TargetAttributes - - 9DC9ED0F1DE69E3E005CACC6 - - CreatedOnToolsVersion - 8.1 - ProvisioningStyle - Automatic - - 9DC9ED281DE69E3E005CACC6 - - CreatedOnToolsVersion - 8.1 - ProvisioningStyle - Automatic - TestTargetID - 9DC9ED0F1DE69E3E005CACC6 - - - - buildConfigurationList - 9DC9ED0B1DE69E3E005CACC6 - compatibilityVersion - Xcode 3.2 - developmentRegion - English - hasScannedForEncodings - 0 - isa - PBXProject - knownRegions - - en - Base - - mainGroup - 9DC9ED071DE69E3E005CACC6 - productRefGroup - 9DC9ED111DE69E3E005CACC6 - projectDirPath - - projectReferences - - projectRoot - - targets - - 9DC9ED0F1DE69E3E005CACC6 - 9DC9ED281DE69E3E005CACC6 - - - 9DC9ED0B1DE69E3E005CACC6 - - buildConfigurations - - 9DC9ED301DE69E3E005CACC6 - 9DC9ED311DE69E3E005CACC6 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - 9DC9ED0C1DE69E3E005CACC6 - - buildActionMask - 2147483647 - files - - 9DC9ED1B1DE69E3E005CACC6 - 9DC9ED181DE69E3E005CACC6 - 9DC9ED151DE69E3E005CACC6 - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - 9DC9ED0D1DE69E3E005CACC6 - - buildActionMask - 2147483647 - files - - 9F11AA6B25A16D03CD85D12C - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - 9DC9ED0E1DE69E3E005CACC6 - - buildActionMask - 2147483647 - files - - 9DC9ED231DE69E3E005CACC6 - 9DC9ED201DE69E3E005CACC6 - 9DC9ED1E1DE69E3E005CACC6 - - isa - PBXResourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - 9DC9ED0F1DE69E3E005CACC6 - - buildConfigurationList - 9DC9ED321DE69E3E005CACC6 - buildPhases - - 74C6F4B1C9C1601AFCA2BFB7 - 9DC9ED0C1DE69E3E005CACC6 - 9DC9ED0D1DE69E3E005CACC6 - 9DC9ED0E1DE69E3E005CACC6 - 1C63157A9D78461DBBA5A5F3 - 97157412EC9EAA669E152038 - - buildRules - - dependencies - - isa - PBXNativeTarget - name - ConfirmPushNotification - productName - ConfirmPushNotification - productReference - 9DC9ED101DE69E3E005CACC6 - productType - com.apple.product-type.application - - 9DC9ED101DE69E3E005CACC6 - - explicitFileType - wrapper.application - includeInIndex - 0 - isa - PBXFileReference - path - ConfirmPushNotification.app - sourceTree - BUILT_PRODUCTS_DIR - - 9DC9ED111DE69E3E005CACC6 - - children - - 9DC9ED101DE69E3E005CACC6 - 9DC9ED291DE69E3E005CACC6 - - isa - PBXGroup - name - Products - sourceTree - <group> - - 9DC9ED121DE69E3E005CACC6 - - children - - 9DC9ED161DE69E3E005CACC6 - 9DC9ED171DE69E3E005CACC6 - 9DC9ED191DE69E3E005CACC6 - 9DC9ED1A1DE69E3E005CACC6 - 9DC9ED1C1DE69E3E005CACC6 - 9DC9ED1F1DE69E3E005CACC6 - 9DC9ED211DE69E3E005CACC6 - 9DC9ED241DE69E3E005CACC6 - 9DC9ED131DE69E3E005CACC6 - - isa - PBXGroup - path - ConfirmPushNotification - sourceTree - <group> - - 9DC9ED131DE69E3E005CACC6 - - children - - 9DC9ED141DE69E3E005CACC6 - - isa - PBXGroup - name - Supporting Files - sourceTree - <group> - - 9DC9ED141DE69E3E005CACC6 - - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - main.m - sourceTree - <group> - - 9DC9ED151DE69E3E005CACC6 - - fileRef - 9DC9ED141DE69E3E005CACC6 - isa - PBXBuildFile - - 9DC9ED161DE69E3E005CACC6 - - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - AppDelegate.h - sourceTree - <group> - - 9DC9ED171DE69E3E005CACC6 - - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - AppDelegate.m - sourceTree - <group> - - 9DC9ED181DE69E3E005CACC6 - - fileRef - 9DC9ED171DE69E3E005CACC6 - isa - PBXBuildFile - - 9DC9ED191DE69E3E005CACC6 - - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - ViewController.h - sourceTree - <group> - - 9DC9ED1A1DE69E3E005CACC6 - - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - ViewController.m - sourceTree - <group> - - 9DC9ED1B1DE69E3E005CACC6 - - fileRef - 9DC9ED1A1DE69E3E005CACC6 - isa - PBXBuildFile - - 9DC9ED1C1DE69E3E005CACC6 - - children - - 9DC9ED1D1DE69E3E005CACC6 - - isa - PBXVariantGroup - name - Main.storyboard - sourceTree - <group> - - 9DC9ED1D1DE69E3E005CACC6 - - isa - PBXFileReference - lastKnownFileType - file.storyboard - name - Base - path - Base.lproj/Main.storyboard - sourceTree - <group> - - 9DC9ED1E1DE69E3E005CACC6 - - fileRef - 9DC9ED1C1DE69E3E005CACC6 - isa - PBXBuildFile - - 9DC9ED1F1DE69E3E005CACC6 - - isa - PBXFileReference - lastKnownFileType - folder.assetcatalog - path - Assets.xcassets - sourceTree - <group> - - 9DC9ED201DE69E3E005CACC6 - - fileRef - 9DC9ED1F1DE69E3E005CACC6 - isa - PBXBuildFile - - 9DC9ED211DE69E3E005CACC6 - - children - - 9DC9ED221DE69E3E005CACC6 - - isa - PBXVariantGroup - name - LaunchScreen.storyboard - sourceTree - <group> - - 9DC9ED221DE69E3E005CACC6 - - isa - PBXFileReference - lastKnownFileType - file.storyboard - name - Base - path - Base.lproj/LaunchScreen.storyboard - sourceTree - <group> - - 9DC9ED231DE69E3E005CACC6 - - fileRef - 9DC9ED211DE69E3E005CACC6 - isa - PBXBuildFile - - 9DC9ED241DE69E3E005CACC6 - - isa - PBXFileReference - lastKnownFileType - text.plist.xml - path - Info.plist - sourceTree - <group> - - 9DC9ED251DE69E3E005CACC6 - - buildActionMask - 2147483647 - files - - 9DC9ED2E1DE69E3E005CACC6 - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - 9DC9ED261DE69E3E005CACC6 - - buildActionMask - 2147483647 - files - - CC936CF65B0D18055E111A68 - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - 9DC9ED271DE69E3E005CACC6 - - buildActionMask - 2147483647 - files - - isa - PBXResourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - 9DC9ED281DE69E3E005CACC6 - - buildConfigurationList - 9DC9ED351DE69E3E005CACC6 - buildPhases - - 7552B0FD553DD7AFE7749FBB - 9DC9ED251DE69E3E005CACC6 - 9DC9ED261DE69E3E005CACC6 - 9DC9ED271DE69E3E005CACC6 - 2B2272B300E5C45157783833 - 5DFE48853655C8E12D3D0B92 - - buildRules - - dependencies - - 9DC9ED2B1DE69E3E005CACC6 - - isa - PBXNativeTarget - name - ConfirmPushNotificationTests - productName - ConfirmPushNotificationTests - productReference - 9DC9ED291DE69E3E005CACC6 - productType - com.apple.product-type.bundle.unit-test - - 9DC9ED291DE69E3E005CACC6 - - explicitFileType - wrapper.cfbundle - includeInIndex - 0 - isa - PBXFileReference - path - ConfirmPushNotificationTests.xctest - sourceTree - BUILT_PRODUCTS_DIR - - 9DC9ED2A1DE69E3E005CACC6 - - containerPortal - 9DC9ED081DE69E3E005CACC6 - isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - 9DC9ED0F1DE69E3E005CACC6 - remoteInfo - ConfirmPushNotification - - 9DC9ED2B1DE69E3E005CACC6 - - isa - PBXTargetDependency - target - 9DC9ED0F1DE69E3E005CACC6 - targetProxy - 9DC9ED2A1DE69E3E005CACC6 - - 9DC9ED2C1DE69E3E005CACC6 - - children - - 9DC9ED2D1DE69E3E005CACC6 - 9DC9ED2F1DE69E3E005CACC6 - - isa - PBXGroup - path - ConfirmPushNotificationTests - sourceTree - <group> - - 9DC9ED2D1DE69E3E005CACC6 - - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - ConfirmPushNotificationTests.m - sourceTree - <group> - - 9DC9ED2E1DE69E3E005CACC6 - - fileRef - 9DC9ED2D1DE69E3E005CACC6 - isa - PBXBuildFile - - 9DC9ED2F1DE69E3E005CACC6 - - isa - PBXFileReference - lastKnownFileType - text.plist.xml - path - Info.plist - sourceTree - <group> - - 9DC9ED301DE69E3E005CACC6 - - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - CLANG_ANALYZER_NONNULL - YES - CLANG_CXX_LANGUAGE_STANDARD - gnu++0x - CLANG_CXX_LIBRARY - libc++ - CLANG_ENABLE_MODULES - YES - CLANG_ENABLE_OBJC_ARC - YES - CLANG_WARN_BOOL_CONVERSION - YES - CLANG_WARN_CONSTANT_CONVERSION - YES - CLANG_WARN_DIRECT_OBJC_ISA_USAGE - YES_ERROR - CLANG_WARN_DOCUMENTATION_COMMENTS - YES - CLANG_WARN_EMPTY_BODY - YES - CLANG_WARN_ENUM_CONVERSION - YES - CLANG_WARN_INFINITE_RECURSION - YES - CLANG_WARN_INT_CONVERSION - YES - CLANG_WARN_OBJC_ROOT_CLASS - YES_ERROR - CLANG_WARN_SUSPICIOUS_MOVES - YES - CLANG_WARN_UNREACHABLE_CODE - YES - CLANG_WARN__DUPLICATE_METHOD_MATCH - YES - CODE_SIGN_IDENTITY[sdk=iphoneos*] - iPhone Developer - COPY_PHASE_STRIP - NO - DEBUG_INFORMATION_FORMAT - dwarf - ENABLE_STRICT_OBJC_MSGSEND - YES - ENABLE_TESTABILITY - YES - GCC_C_LANGUAGE_STANDARD - gnu99 - GCC_DYNAMIC_NO_PIC - NO - GCC_NO_COMMON_BLOCKS - YES - GCC_OPTIMIZATION_LEVEL - 0 - GCC_PREPROCESSOR_DEFINITIONS - - DEBUG=1 - $(inherited) - - GCC_WARN_64_TO_32_BIT_CONVERSION - YES - GCC_WARN_ABOUT_RETURN_TYPE - YES_ERROR - GCC_WARN_UNDECLARED_SELECTOR - YES - GCC_WARN_UNINITIALIZED_AUTOS - YES_AGGRESSIVE - GCC_WARN_UNUSED_FUNCTION - YES - GCC_WARN_UNUSED_VARIABLE - YES - IPHONEOS_DEPLOYMENT_TARGET - 10.1 - MTL_ENABLE_DEBUG_INFO - YES - ONLY_ACTIVE_ARCH - YES - SDKROOT - iphoneos - TARGETED_DEVICE_FAMILY - 1,2 - - isa - XCBuildConfiguration - name - Debug - - 9DC9ED311DE69E3E005CACC6 - - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - CLANG_ANALYZER_NONNULL - YES - CLANG_CXX_LANGUAGE_STANDARD - gnu++0x - CLANG_CXX_LIBRARY - libc++ - CLANG_ENABLE_MODULES - YES - CLANG_ENABLE_OBJC_ARC - YES - CLANG_WARN_BOOL_CONVERSION - YES - CLANG_WARN_CONSTANT_CONVERSION - YES - CLANG_WARN_DIRECT_OBJC_ISA_USAGE - YES_ERROR - CLANG_WARN_DOCUMENTATION_COMMENTS - YES - CLANG_WARN_EMPTY_BODY - YES - CLANG_WARN_ENUM_CONVERSION - YES - CLANG_WARN_INFINITE_RECURSION - YES - CLANG_WARN_INT_CONVERSION - YES - CLANG_WARN_OBJC_ROOT_CLASS - YES_ERROR - CLANG_WARN_SUSPICIOUS_MOVES - YES - CLANG_WARN_UNREACHABLE_CODE - YES - CLANG_WARN__DUPLICATE_METHOD_MATCH - YES - CODE_SIGN_IDENTITY[sdk=iphoneos*] - iPhone Developer - COPY_PHASE_STRIP - NO - DEBUG_INFORMATION_FORMAT - dwarf-with-dsym - ENABLE_NS_ASSERTIONS - NO - ENABLE_STRICT_OBJC_MSGSEND - YES - GCC_C_LANGUAGE_STANDARD - gnu99 - GCC_NO_COMMON_BLOCKS - YES - GCC_WARN_64_TO_32_BIT_CONVERSION - YES - GCC_WARN_ABOUT_RETURN_TYPE - YES_ERROR - GCC_WARN_UNDECLARED_SELECTOR - YES - GCC_WARN_UNINITIALIZED_AUTOS - YES_AGGRESSIVE - GCC_WARN_UNUSED_FUNCTION - YES - GCC_WARN_UNUSED_VARIABLE - YES - IPHONEOS_DEPLOYMENT_TARGET - 10.1 - MTL_ENABLE_DEBUG_INFO - NO - SDKROOT - iphoneos - TARGETED_DEVICE_FAMILY - 1,2 - VALIDATE_PRODUCT - YES - - isa - XCBuildConfiguration - name - Release - - 9DC9ED321DE69E3E005CACC6 - - buildConfigurations - - 9DC9ED331DE69E3E005CACC6 - 9DC9ED341DE69E3E005CACC6 - - defaultConfigurationIsVisible - 0 - isa - XCConfigurationList - - 9DC9ED331DE69E3E005CACC6 - - baseConfigurationReference - 8CA4FACCCF17D0ED61BA799A - buildSettings - - ASSETCATALOG_COMPILER_APPICON_NAME - AppIcon - INFOPLIST_FILE - ConfirmPushNotification/Info.plist - LD_RUNPATH_SEARCH_PATHS - $(inherited) @executable_path/Frameworks - PRODUCT_BUNDLE_IDENTIFIER - Nifty.ConfirmPushNotification - PRODUCT_NAME - $(TARGET_NAME) - - isa - XCBuildConfiguration - name - Debug - - 9DC9ED341DE69E3E005CACC6 - - baseConfigurationReference - 285B14301A35D025D432B0FF - buildSettings - - ASSETCATALOG_COMPILER_APPICON_NAME - AppIcon - INFOPLIST_FILE - ConfirmPushNotification/Info.plist - LD_RUNPATH_SEARCH_PATHS - $(inherited) @executable_path/Frameworks - PRODUCT_BUNDLE_IDENTIFIER - Nifty.ConfirmPushNotification - PRODUCT_NAME - $(TARGET_NAME) - - isa - XCBuildConfiguration - name - Release - - 9DC9ED351DE69E3E005CACC6 - - buildConfigurations - - 9DC9ED361DE69E3E005CACC6 - 9DC9ED371DE69E3E005CACC6 - - defaultConfigurationIsVisible - 0 - isa - XCConfigurationList - - 9DC9ED361DE69E3E005CACC6 - - baseConfigurationReference - B32C580BB17F95B381058E4E - buildSettings - - BUNDLE_LOADER - $(TEST_HOST) - INFOPLIST_FILE - ConfirmPushNotificationTests/Info.plist - LD_RUNPATH_SEARCH_PATHS - $(inherited) @executable_path/Frameworks @loader_path/Frameworks - PRODUCT_BUNDLE_IDENTIFIER - Nifty.ConfirmPushNotificationTests - PRODUCT_NAME - $(TARGET_NAME) - TEST_HOST - $(BUILT_PRODUCTS_DIR)/ConfirmPushNotification.app/ConfirmPushNotification - - isa - XCBuildConfiguration - name - Debug - - 9DC9ED371DE69E3E005CACC6 - - baseConfigurationReference - 210D510CAB74C709AF567A3B - buildSettings - - BUNDLE_LOADER - $(TEST_HOST) - INFOPLIST_FILE - ConfirmPushNotificationTests/Info.plist - LD_RUNPATH_SEARCH_PATHS - $(inherited) @executable_path/Frameworks @loader_path/Frameworks - PRODUCT_BUNDLE_IDENTIFIER - Nifty.ConfirmPushNotificationTests - PRODUCT_NAME - $(TARGET_NAME) - TEST_HOST - $(BUILT_PRODUCTS_DIR)/ConfirmPushNotification.app/ConfirmPushNotification - - isa - XCBuildConfiguration - name - Release - - 9F11AA6B25A16D03CD85D12C - - fileRef - B50B69BE09967459A4EA07F5 - isa - PBXBuildFile - - B32C580BB17F95B381058E4E - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - name - Pods-ConfirmPushNotificationTests.debug.xcconfig - path - Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests.debug.xcconfig - sourceTree - <group> - - B50B69BE09967459A4EA07F5 - - explicitFileType - archive.ar - includeInIndex - 0 - isa - PBXFileReference - path - libPods-ConfirmPushNotification.a - sourceTree - BUILT_PRODUCTS_DIR - - CC936CF65B0D18055E111A68 - - fileRef - 9BC1BB252B4762DC1CB722AF - isa - PBXBuildFile - - E190DEC6239B3EC8BDEF3E6B - - children - - B50B69BE09967459A4EA07F5 - 9BC1BB252B4762DC1CB722AF - - isa - PBXGroup - name - Frameworks - sourceTree - <group> - - F39FD823C78AAB3383C89B8F - - children - - 8CA4FACCCF17D0ED61BA799A - 285B14301A35D025D432B0FF - B32C580BB17F95B381058E4E - 210D510CAB74C709AF567A3B - - isa - PBXGroup - name - Pods - sourceTree - <group> - - - rootObject - 9DC9ED081DE69E3E005CACC6 - - diff --git a/examples/ConfirmPushNotification/ConfirmPushNotification.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/examples/ConfirmPushNotification/ConfirmPushNotification.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 7bf9f5b0..00000000 --- a/examples/ConfirmPushNotification/ConfirmPushNotification.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/examples/ConfirmPushNotification/ConfirmPushNotification.xcworkspace/contents.xcworkspacedata b/examples/ConfirmPushNotification/ConfirmPushNotification.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index d6cefbe7..00000000 --- a/examples/ConfirmPushNotification/ConfirmPushNotification.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/examples/ConfirmPushNotification/ConfirmPushNotification/AppDelegate.h b/examples/ConfirmPushNotification/ConfirmPushNotification/AppDelegate.h deleted file mode 100644 index 14f05382..00000000 --- a/examples/ConfirmPushNotification/ConfirmPushNotification/AppDelegate.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - Copyright 2017-2018 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - */ - -#import - -@interface AppDelegate : UIResponder - -@property (strong, nonatomic) UIWindow *window; - - -@end - diff --git a/examples/ConfirmPushNotification/ConfirmPushNotification/AppDelegate.m b/examples/ConfirmPushNotification/ConfirmPushNotification/AppDelegate.m deleted file mode 100644 index 20c2856b..00000000 --- a/examples/ConfirmPushNotification/ConfirmPushNotification/AppDelegate.m +++ /dev/null @@ -1,86 +0,0 @@ -/* - Copyright 2017-2018 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - */ - -#import "AppDelegate.h" -#import - -@interface AppDelegate () - -@end - -@implementation AppDelegate - -- (void)application:(UIApplication*)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken -{ - NSLog(@"Device Token = %@", deviceToken); - - //端末情報を扱うNCMBInstallationのインスタンスを作成 - NCMBInstallation *installation = [NCMBInstallation currentInstallation]; - - //Device Tokenを設定 - [installation setDeviceTokenFromData:deviceToken]; - - //端末情報をデータストアに登録 - [installation saveInBackgroundWithBlock:^(NSError *error) { - if(!error){ - //端末情報の登録が成功した場合の処理 - NSLog(@"登録に成功"); - } else { - //端末情報の登録が失敗した場合の処理 - NSLog(@"登録に失敗:%ld",(long)error.code); - } - }]; -} - -- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { - // Override point for customization after application launch. - [NCMB setApplicationKey:@"YOUR_APP_KEY" - clientKey:@"YOUR_CLIENT_KEY"]; - - [NCMB showConfirmPushNotification]; - - return YES; -} - - -- (void)applicationWillResignActive:(UIApplication *)application { - // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. - // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game. -} - - -- (void)applicationDidEnterBackground:(UIApplication *)application { - // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. - // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. -} - - -- (void)applicationWillEnterForeground:(UIApplication *)application { - // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background. -} - - -- (void)applicationDidBecomeActive:(UIApplication *)application { - // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. -} - - -- (void)applicationWillTerminate:(UIApplication *)application { - // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. -} - - -@end diff --git a/examples/ConfirmPushNotification/ConfirmPushNotification/Assets.xcassets/AppIcon.appiconset/Contents.json b/examples/ConfirmPushNotification/ConfirmPushNotification/Assets.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index 1d060ed2..00000000 --- a/examples/ConfirmPushNotification/ConfirmPushNotification/Assets.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "images" : [ - { - "idiom" : "iphone", - "size" : "20x20", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "20x20", - "scale" : "3x" - }, - { - "idiom" : "iphone", - "size" : "29x29", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "29x29", - "scale" : "3x" - }, - { - "idiom" : "iphone", - "size" : "40x40", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "40x40", - "scale" : "3x" - }, - { - "idiom" : "iphone", - "size" : "60x60", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "60x60", - "scale" : "3x" - }, - { - "idiom" : "ipad", - "size" : "20x20", - "scale" : "1x" - }, - { - "idiom" : "ipad", - "size" : "20x20", - "scale" : "2x" - }, - { - "idiom" : "ipad", - "size" : "29x29", - "scale" : "1x" - }, - { - "idiom" : "ipad", - "size" : "29x29", - "scale" : "2x" - }, - { - "idiom" : "ipad", - "size" : "40x40", - "scale" : "1x" - }, - { - "idiom" : "ipad", - "size" : "40x40", - "scale" : "2x" - }, - { - "idiom" : "ipad", - "size" : "76x76", - "scale" : "1x" - }, - { - "idiom" : "ipad", - "size" : "76x76", - "scale" : "2x" - }, - { - "idiom" : "ipad", - "size" : "83.5x83.5", - "scale" : "2x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} \ No newline at end of file diff --git a/examples/ConfirmPushNotification/ConfirmPushNotification/Base.lproj/LaunchScreen.storyboard b/examples/ConfirmPushNotification/ConfirmPushNotification/Base.lproj/LaunchScreen.storyboard deleted file mode 100644 index fdf3f97d..00000000 --- a/examples/ConfirmPushNotification/ConfirmPushNotification/Base.lproj/LaunchScreen.storyboard +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/ConfirmPushNotification/ConfirmPushNotification/Base.lproj/Main.storyboard b/examples/ConfirmPushNotification/ConfirmPushNotification/Base.lproj/Main.storyboard deleted file mode 100644 index 4529698c..00000000 --- a/examples/ConfirmPushNotification/ConfirmPushNotification/Base.lproj/Main.storyboard +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/ConfirmPushNotification/ConfirmPushNotification/Info.plist b/examples/ConfirmPushNotification/ConfirmPushNotification/Info.plist deleted file mode 100644 index d0524738..00000000 --- a/examples/ConfirmPushNotification/ConfirmPushNotification/Info.plist +++ /dev/null @@ -1,45 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - APPL - CFBundleShortVersionString - 1.0 - CFBundleVersion - 1 - LSRequiresIPhoneOS - - UILaunchStoryboardName - LaunchScreen - UIMainStoryboardFile - Main - UIRequiredDeviceCapabilities - - armv7 - - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UISupportedInterfaceOrientations~ipad - - UIInterfaceOrientationPortrait - UIInterfaceOrientationPortraitUpsideDown - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - - diff --git a/examples/ConfirmPushNotification/ConfirmPushNotification/ViewController.h b/examples/ConfirmPushNotification/ConfirmPushNotification/ViewController.h deleted file mode 100644 index 81c93c79..00000000 --- a/examples/ConfirmPushNotification/ConfirmPushNotification/ViewController.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - Copyright 2017-2018 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - */ - -#import - -@interface ViewController : UIViewController - - -@end - diff --git a/examples/ConfirmPushNotification/ConfirmPushNotification/ViewController.m b/examples/ConfirmPushNotification/ConfirmPushNotification/ViewController.m deleted file mode 100644 index 44c383ec..00000000 --- a/examples/ConfirmPushNotification/ConfirmPushNotification/ViewController.m +++ /dev/null @@ -1,37 +0,0 @@ -/* - Copyright 2017-2018 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - */ - -#import "ViewController.h" - -@interface ViewController () - -@end - -@implementation ViewController - -- (void)viewDidLoad { - [super viewDidLoad]; - // Do any additional setup after loading the view, typically from a nib. -} - - -- (void)didReceiveMemoryWarning { - [super didReceiveMemoryWarning]; - // Dispose of any resources that can be recreated. -} - - -@end diff --git a/examples/ConfirmPushNotification/ConfirmPushNotification/main.m b/examples/ConfirmPushNotification/ConfirmPushNotification/main.m deleted file mode 100644 index d8a105b2..00000000 --- a/examples/ConfirmPushNotification/ConfirmPushNotification/main.m +++ /dev/null @@ -1,24 +0,0 @@ -/* - Copyright 2017-2018 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - */ - -#import -#import "AppDelegate.h" - -int main(int argc, char * argv[]) { - @autoreleasepool { - return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); - } -} diff --git a/examples/ConfirmPushNotification/ConfirmPushNotificationTests/ConfirmPushNotificationTests.m b/examples/ConfirmPushNotification/ConfirmPushNotificationTests/ConfirmPushNotificationTests.m deleted file mode 100644 index 7af4c45c..00000000 --- a/examples/ConfirmPushNotification/ConfirmPushNotificationTests/ConfirmPushNotificationTests.m +++ /dev/null @@ -1,47 +0,0 @@ -/* - Copyright 2017-2018 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - */ - -#import - -@interface ConfirmPushNotificationTests : XCTestCase - -@end - -@implementation ConfirmPushNotificationTests - -- (void)setUp { - [super setUp]; - // Put setup code here. This method is called before the invocation of each test method in the class. -} - -- (void)tearDown { - // Put teardown code here. This method is called after the invocation of each test method in the class. - [super tearDown]; -} - -- (void)testExample { - // This is an example of a functional test case. - // Use XCTAssert and related functions to verify your tests produce the correct results. -} - -- (void)testPerformanceExample { - // This is an example of a performance test case. - [self measureBlock:^{ - // Put the code you want to measure the time of here. - }]; -} - -@end diff --git a/examples/ConfirmPushNotification/ConfirmPushNotificationTests/Info.plist b/examples/ConfirmPushNotification/ConfirmPushNotificationTests/Info.plist deleted file mode 100644 index 6c6c23c4..00000000 --- a/examples/ConfirmPushNotification/ConfirmPushNotificationTests/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.0 - CFBundleVersion - 1 - - diff --git a/examples/ConfirmPushNotification/Podfile b/examples/ConfirmPushNotification/Podfile deleted file mode 100644 index 8daca51a..00000000 --- a/examples/ConfirmPushNotification/Podfile +++ /dev/null @@ -1,13 +0,0 @@ -# Uncomment this line to define a global platform for your project -# platform :ios, '8.0' -# Uncomment this line if you're using Swift -# use_frameworks! - -target 'ConfirmPushNotification' do - pod 'NCMB', :path => '../../' -end - -target 'ConfirmPushNotificationTests' do - -end - diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMB.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMB.h deleted file mode 120000 index 953fb2f4..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMB.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMB.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBACL.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBACL.h deleted file mode 120000 index 0a9e0e8e..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBACL.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBACL.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBAddOperation.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBAddOperation.h deleted file mode 120000 index 60a38ce9..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBAddOperation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/Operations/NCMBAddOperation.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBAddUniqueOperation.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBAddUniqueOperation.h deleted file mode 120000 index 61e0f76b..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBAddUniqueOperation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/Operations/NCMBAddUniqueOperation.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBAnalytics.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBAnalytics.h deleted file mode 120000 index d78e2bfb..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBAnalytics.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBAnalytics.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBAnonymousUtils.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBAnonymousUtils.h deleted file mode 120000 index c19b684d..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBAnonymousUtils.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBAnonymousUtils.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBCloseImageView.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBCloseImageView.h deleted file mode 120000 index 947b6366..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBCloseImageView.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBRichPush/NCMBCloseImageView.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBConstants.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBConstants.h deleted file mode 120000 index 32f56df3..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBConstants.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBConstants.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBDeleteOperation.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBDeleteOperation.h deleted file mode 120000 index b4c1f141..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBDeleteOperation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/Operations/NCMBDeleteOperation.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBError.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBError.h deleted file mode 120000 index b02c8ced..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBError.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBError.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBFile.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBFile.h deleted file mode 120000 index dd206abe..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBFile.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBFile.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBGeoPoint.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBGeoPoint.h deleted file mode 120000 index ecade2c4..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBGeoPoint.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBGeoPoint.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBIncrementOperation.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBIncrementOperation.h deleted file mode 120000 index 78b07666..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBIncrementOperation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/Operations/NCMBIncrementOperation.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBInstallation.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBInstallation.h deleted file mode 120000 index 5a0ae903..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBInstallation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBInstallation.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBObject+Private.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBObject+Private.h deleted file mode 120000 index 841e53b8..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBObject+Private.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/PrivateHeaders/NCMBObject+Private.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBObject+Subclass.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBObject+Subclass.h deleted file mode 120000 index 0f1c6371..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBObject+Subclass.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBObject+Subclass.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBObject.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBObject.h deleted file mode 120000 index 2bed5646..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBObject.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBObject.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBPush.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBPush.h deleted file mode 120000 index 0647df12..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBPush.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBPush.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBQuery+Private.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBQuery+Private.h deleted file mode 120000 index 7480515c..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBQuery+Private.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/PrivateHeaders/NCMBQuery+Private.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBQuery.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBQuery.h deleted file mode 120000 index 7cbe16ae..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBQuery.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBQuery.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBReachability.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBReachability.h deleted file mode 120000 index dcf47442..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBReachability.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBReachability/NCMBReachability.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBRelation+Private.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBRelation+Private.h deleted file mode 120000 index 238e15c0..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBRelation+Private.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/PrivateHeaders/NCMBRelation+Private.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBRelation.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBRelation.h deleted file mode 120000 index 104cb810..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBRelation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBRelation.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBRelationOperation.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBRelationOperation.h deleted file mode 120000 index f8fd20e3..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBRelationOperation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/Operations/NCMBRelationOperation.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBRemoveOperation.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBRemoveOperation.h deleted file mode 120000 index 490d2101..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBRemoveOperation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/Operations/NCMBRemoveOperation.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBRequest.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBRequest.h deleted file mode 120000 index 48a478fb..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBRequest.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCBMRequest/NCMBRequest.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBRichPushView.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBRichPushView.h deleted file mode 120000 index 023780aa..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBRichPushView.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBRichPush/NCMBRichPushView.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBRole.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBRole.h deleted file mode 120000 index c14ebbef..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBRole.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBRole.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBScript.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBScript.h deleted file mode 120000 index 2b24cd43..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBScript.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBScript.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBScriptService.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBScriptService.h deleted file mode 120000 index 1977f7de..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBScriptService.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBScriptService/NCMBScriptService.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBSetOperation.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBSetOperation.h deleted file mode 120000 index d2d2ac23..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBSetOperation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/Operations/NCMBSetOperation.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBSubclassing.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBSubclassing.h deleted file mode 120000 index 3cbe4b33..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBSubclassing.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBSubclassing.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBURLConnection.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBURLConnection.h deleted file mode 120000 index 5b1bfd15..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBURLConnection.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBURLConnection/NCMBURLConnection.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBUser+Private.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBUser+Private.h deleted file mode 120000 index 24e9641c..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBUser+Private.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/PrivateHeaders/NCMBUser+Private.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBUser.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBUser.h deleted file mode 120000 index 92ba0d46..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NCMBUser.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBUser.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NSDataBase64Encode.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NSDataBase64Encode.h deleted file mode 120000 index 7c6cab61..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/NSDataBase64Encode.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NSDataBase64Encode/NSDataBase64Encode.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/SubClassHandler.h b/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/SubClassHandler.h deleted file mode 120000 index 7ddc2139..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Private/NCMB/SubClassHandler.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/SubClassHandler/SubClassHandler.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMB.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMB.h deleted file mode 120000 index 953fb2f4..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMB.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMB.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBACL.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBACL.h deleted file mode 120000 index 0a9e0e8e..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBACL.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBACL.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBAddOperation.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBAddOperation.h deleted file mode 120000 index 60a38ce9..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBAddOperation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/Operations/NCMBAddOperation.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBAddUniqueOperation.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBAddUniqueOperation.h deleted file mode 120000 index 61e0f76b..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBAddUniqueOperation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/Operations/NCMBAddUniqueOperation.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBAnalytics.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBAnalytics.h deleted file mode 120000 index d78e2bfb..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBAnalytics.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBAnalytics.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBAnonymousUtils.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBAnonymousUtils.h deleted file mode 120000 index c19b684d..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBAnonymousUtils.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBAnonymousUtils.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBCloseImageView.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBCloseImageView.h deleted file mode 120000 index 947b6366..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBCloseImageView.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBRichPush/NCMBCloseImageView.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBConstants.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBConstants.h deleted file mode 120000 index 32f56df3..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBConstants.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBConstants.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBDeleteOperation.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBDeleteOperation.h deleted file mode 120000 index b4c1f141..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBDeleteOperation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/Operations/NCMBDeleteOperation.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBError.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBError.h deleted file mode 120000 index b02c8ced..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBError.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBError.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBFile.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBFile.h deleted file mode 120000 index dd206abe..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBFile.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBFile.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBGeoPoint.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBGeoPoint.h deleted file mode 120000 index ecade2c4..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBGeoPoint.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBGeoPoint.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBIncrementOperation.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBIncrementOperation.h deleted file mode 120000 index 78b07666..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBIncrementOperation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/Operations/NCMBIncrementOperation.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBInstallation.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBInstallation.h deleted file mode 120000 index 5a0ae903..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBInstallation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBInstallation.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBObject+Private.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBObject+Private.h deleted file mode 120000 index 841e53b8..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBObject+Private.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/PrivateHeaders/NCMBObject+Private.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBObject+Subclass.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBObject+Subclass.h deleted file mode 120000 index 0f1c6371..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBObject+Subclass.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBObject+Subclass.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBObject.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBObject.h deleted file mode 120000 index 2bed5646..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBObject.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBObject.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBPush.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBPush.h deleted file mode 120000 index 0647df12..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBPush.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBPush.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBQuery+Private.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBQuery+Private.h deleted file mode 120000 index 7480515c..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBQuery+Private.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/PrivateHeaders/NCMBQuery+Private.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBQuery.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBQuery.h deleted file mode 120000 index 7cbe16ae..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBQuery.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBQuery.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBReachability.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBReachability.h deleted file mode 120000 index dcf47442..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBReachability.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBReachability/NCMBReachability.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBRelation+Private.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBRelation+Private.h deleted file mode 120000 index 238e15c0..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBRelation+Private.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/PrivateHeaders/NCMBRelation+Private.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBRelation.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBRelation.h deleted file mode 120000 index 104cb810..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBRelation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBRelation.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBRelationOperation.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBRelationOperation.h deleted file mode 120000 index f8fd20e3..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBRelationOperation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/Operations/NCMBRelationOperation.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBRemoveOperation.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBRemoveOperation.h deleted file mode 120000 index 490d2101..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBRemoveOperation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/Operations/NCMBRemoveOperation.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBRequest.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBRequest.h deleted file mode 120000 index 48a478fb..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBRequest.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCBMRequest/NCMBRequest.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBRichPushView.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBRichPushView.h deleted file mode 120000 index 023780aa..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBRichPushView.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBRichPush/NCMBRichPushView.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBRole.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBRole.h deleted file mode 120000 index c14ebbef..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBRole.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBRole.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBScript.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBScript.h deleted file mode 120000 index 2b24cd43..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBScript.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBScript.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBScriptService.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBScriptService.h deleted file mode 120000 index 1977f7de..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBScriptService.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBScriptService/NCMBScriptService.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBSetOperation.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBSetOperation.h deleted file mode 120000 index d2d2ac23..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBSetOperation.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/Operations/NCMBSetOperation.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBSubclassing.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBSubclassing.h deleted file mode 120000 index 3cbe4b33..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBSubclassing.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBSubclassing.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBURLConnection.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBURLConnection.h deleted file mode 120000 index 5b1bfd15..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBURLConnection.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBURLConnection/NCMBURLConnection.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBUser+Private.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBUser+Private.h deleted file mode 120000 index 24e9641c..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBUser+Private.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/PrivateHeaders/NCMBUser+Private.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBUser.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBUser.h deleted file mode 120000 index 92ba0d46..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NCMBUser.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NCMBUser.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NSDataBase64Encode.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NSDataBase64Encode.h deleted file mode 120000 index 7c6cab61..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/NSDataBase64Encode.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/NSDataBase64Encode/NSDataBase64Encode.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/SubClassHandler.h b/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/SubClassHandler.h deleted file mode 120000 index 7ddc2139..00000000 --- a/examples/ConfirmPushNotification/Pods/Headers/Public/NCMB/SubClassHandler.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../../NCMB/SubClassHandler/SubClassHandler.h \ No newline at end of file diff --git a/examples/ConfirmPushNotification/Pods/Local Podspecs/NCMB.podspec.json b/examples/ConfirmPushNotification/Pods/Local Podspecs/NCMB.podspec.json deleted file mode 100644 index 2878dc8a..00000000 --- a/examples/ConfirmPushNotification/Pods/Local Podspecs/NCMB.podspec.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "name": "NCMB", - "version": "2.3.4", - "summary": "NCMB is SDK for NIFTY Cloud mobile backend.", - "description": "NCMB is SDK for NIFTY Cloud mobile backend.\nNIFTY Cloud mobile backend function\n* Data store\n* Push Notification\n* User Management\n* SNS integration\n* File store", - "homepage": "http://mb.cloud.nifty.com", - "license": "Apache License, Version 2.0", - "authors": "NIFTY Corporation", - "platforms": { - "ios": "5.1" - }, - "source": { - "git": "https://github.com/NIFTYCloud-mbaas/ncmb_ios.git", - "tag": "v2.3.4" - }, - "source_files": "NCMB/**/*.{h,m,c}", - "frameworks": [ - "Foundation", - "UIKit", - "MobileCoreServices", - "AudioToolbox", - "SystemConfiguration" - ], - "requires_arc": true -} diff --git a/examples/ConfirmPushNotification/Pods/Manifest.lock b/examples/ConfirmPushNotification/Pods/Manifest.lock deleted file mode 100644 index c683faf4..00000000 --- a/examples/ConfirmPushNotification/Pods/Manifest.lock +++ /dev/null @@ -1,16 +0,0 @@ -PODS: - - NCMB (2.3.4) - -DEPENDENCIES: - - NCMB (from `../../`) - -EXTERNAL SOURCES: - NCMB: - :path: ../../ - -SPEC CHECKSUMS: - NCMB: 5666fa1904b01627502071eb99d2d6534af26a94 - -PODFILE CHECKSUM: 85a7b52e52be982b72c124d0582f8388fd1307e2 - -COCOAPODS: 1.0.0 diff --git a/examples/ConfirmPushNotification/Pods/Pods.xcodeproj/project.pbxproj b/examples/ConfirmPushNotification/Pods/Pods.xcodeproj/project.pbxproj deleted file mode 100644 index d89169f1..00000000 --- a/examples/ConfirmPushNotification/Pods/Pods.xcodeproj/project.pbxproj +++ /dev/null @@ -1,3309 +0,0 @@ - - - - - archiveVersion - 1 - classes - - objectVersion - 46 - objects - - 00B64A768E169BEBB214AF59BDAB8EF9 - - children - - 5F44E95F893FB55A661CF1FB8A1D7EDD - 8E35112D4F97247394ABFA1B4F09DA83 - F173167AB1C8AD5965E8C0DAA312738B - 3CAB21E71179409C13CE8FBC1D8D9961 - 40F44598B060D88251A242AB8ED4C8C3 - BF5F46F4CD492B58E7DB5EAC60D94410 - F7B9716B020E8676303C030381D2FB51 - - isa - PBXGroup - name - Pods-ConfirmPushNotificationTests - path - Target Support Files/Pods-ConfirmPushNotificationTests - sourceTree - <group> - - 02D30957AC47123B6EE2BA847EB3E296 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMB-dummy.m - sourceTree - <group> - - 0575FBF657948D3E5913C68056228F64 - - buildConfigurations - - 81CC1CF2CAD6BE38A923AA8C4E6524BF - 826CCFA80A9AD59E09E087B1DAD07402 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - 05B07CCDC830F45E3F8B10E7A37D236E - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBRichPushView.m - sourceTree - <group> - - 05E15DBEA0923ED6BDA871A687824C19 - - fileRef - 736033634CBC164E47BF04790271E62B - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - 0AF02DBAABA803055A7875511B0482ED - - fileRef - 3D820BCFB0D3961FA61419ED034A3F64 - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 0D3C90B1EA9B3C2B1CA40A8B08DAC9C1 - - fileRef - C637B3BADFA1DB3FA320B5CF34BEAE23 - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 0E7E8226785D3A5BC1AB66A4448A21FF - - fileRef - 10EC0682095FA382D9BE31CCB907AE75 - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - 0F5D0BA1E01431D1B67099E936A4ADA9 - - explicitFileType - archive.ar - includeInIndex - 0 - isa - PBXFileReference - name - libPods-ConfirmPushNotificationTests.a - path - libPods-ConfirmPushNotificationTests.a - sourceTree - BUILT_PRODUCTS_DIR - - 10C3DF5486ECBCB1524A2B1A88A35DCF - - fileRef - E09EBDBFFC63A0D6E08873CD636B625C - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 10EC0682095FA382D9BE31CCB907AE75 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBAnonymousUtils.m - sourceTree - <group> - - 15EF94D19FA562D4DAD63F4A89995921 - - children - - AE0B9C0604F63FC7298CF37266320A91 - BC297B8FCCD320BE3BAF1A102464A24F - - isa - PBXGroup - name - SubClassHandler - path - SubClassHandler - sourceTree - <group> - - 1605B735C2C76100B46087DC2BE1F09C - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBACL.h - sourceTree - <group> - - 16160195B368465FBC08527331DAF489 - - fileRef - 90607D224B5A1397AE360BB530B13B1A - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - 16853095095480EEE5A0637639DFBAC1 - - fileRef - 27B77466CBDB8901729644D684EDD976 - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - 1889F13D712980587FAE910B401CAE83 - - buildConfigurationList - 0575FBF657948D3E5913C68056228F64 - buildPhases - - B23040135FFFFA747CFA198C502F69EA - D2421878B21A468BCD2DAEE8E3933B6C - C3E5E9E98098ADC1DDF8A25326AE902F - - buildRules - - dependencies - - isa - PBXNativeTarget - name - NCMB - productName - NCMB - productReference - 7E23A2A3BE097C061DFFAE4B8AF15502 - productType - com.apple.product-type.library.static - - 1AEDC5639E98C408AE4BAB38F745263F - - fileRef - A4F253DF95E88052F8C51EEBFBEFD650 - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 1C13F59065645D9B11064298B8B0CE12 - - fileRef - 8FAA4F6EAD1B2E64C29E03876F4CFA8E - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 2044F3AB9634B4EE5FA3BD1D5192A52F - - fileRef - B2CD9D1412243FBA2CC86DFB06C2585B - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 20474AB0E721CE3960540D1E25EA2E49 - - buildActionMask - 2147483647 - files - - F4617097DA425543B87443A7A46D1435 - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - 204DEA6C697E879C04EF30EE83BD3402 - - children - - 554BBCF8366147C58CFC40A27A56708F - 941A504678D9BD2A10597443A8FD3AB0 - 8038FCC9BBA1450DEBD9553875DFF825 - 670D58F08233D0510F0636952CE86556 - 3BDA924BBBF8A6BBD8427C880D17D8E9 - 55B0A76EE2E24F9DC69DB1671283E8A8 - B42357C29835AE7506FE353B96A9464A - - isa - PBXGroup - name - Pods-ConfirmPushNotification - path - Target Support Files/Pods-ConfirmPushNotification - sourceTree - <group> - - 20B56609144CE204DFA8221F742B2D76 - - children - - 44CCACCCF3A618CFBD1D2DCA83548B6D - - isa - PBXGroup - name - Frameworks - sourceTree - <group> - - 21E6DF25545F13B3A2AB073B8B60AF0F - - isa - PBXFileReference - lastKnownFileType - wrapper.framework - name - MobileCoreServices.framework - path - Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/MobileCoreServices.framework - sourceTree - DEVELOPER_DIR - - 23374C12F6180BD5E7AAB93980316D8B - - explicitFileType - archive.ar - includeInIndex - 0 - isa - PBXFileReference - name - libPods-ConfirmPushNotification.a - path - libPods-ConfirmPushNotification.a - sourceTree - BUILT_PRODUCTS_DIR - - 242D57AD3ED8C95F4B1F5FD158FA1D71 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBGeoPoint.h - sourceTree - <group> - - 26CA6641C6BCC8EB4EDA80C9D81715E2 - - fileRef - FAC0557BC6CF99C34CBBD4B250A3B26A - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 27495FD3F057633A862889F57B63B2B2 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBFile.m - sourceTree - <group> - - 27B77466CBDB8901729644D684EDD976 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBCloseImageView.m - sourceTree - <group> - - 2845DD39F298F47A2CB402FF92F71219 - - fileRef - 8CF9E342B171370AC3E1BF3F7A8A6A8B - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - 28D9185C10BB7076D1BD9E00FBF878E1 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBDeleteOperation.m - sourceTree - <group> - - 28FD9E74597AAFAADA77A97F4955C6BD - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBRemoveOperation.h - sourceTree - <group> - - 298480F4A9D6EF6EE6E3566B8482EF5A - - fileRef - 9511B44286BF36680A025682000F69E0 - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 2A109E96476855AE681F7401635C8ED3 - - buildConfigurations - - 317025650D104B1B53B1B00EAC52DADA - 722DE4F97F61A8E4B932E54E36E3F169 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - 2B6F8F3C3BA72D41930A23832DC0D5D0 - - fileRef - DD68C4DCA0D192DEB163D6A553C7FE05 - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - 2BDE28DBB7ED741DA898B0F716FF58F3 - - children - - 3229F616F67D948A7B9095949B6771D1 - 02D30957AC47123B6EE2BA847EB3E296 - 6F680F92D9C128F8F20BD498E9DA2A3B - - isa - PBXGroup - name - Support Files - path - examples/ConfirmPushNotification/Pods/Target Support Files/NCMB - sourceTree - <group> - - 2BEAA89A810BE75CCEC9C7C652C63AB6 - - fileRef - 1605B735C2C76100B46087DC2BE1F09C - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 2C5043C63C0611BFCE14AFB2BD52A9FB - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBSubclassing.h - sourceTree - <group> - - 2D8E8EC45A3A1A1D94AE762CB5028504 - - buildConfigurations - - F1CACC81189ECB1BB82CE47F73EBE3D1 - D560687C2EAA7604298B56AEE78343D9 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - 31561FC03CD18C72B5F0EDA5BA0A53A6 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBPush.h - sourceTree - <group> - - 317025650D104B1B53B1B00EAC52DADA - - baseConfigurationReference - 55B0A76EE2E24F9DC69DB1671283E8A8 - buildSettings - - CODE_SIGN_IDENTITY[sdk=iphoneos*] - iPhone Developer - DEBUG_INFORMATION_FORMAT - dwarf - ENABLE_STRICT_OBJC_MSGSEND - YES - GCC_NO_COMMON_BLOCKS - YES - IPHONEOS_DEPLOYMENT_TARGET - 10.1 - MACH_O_TYPE - staticlib - MTL_ENABLE_DEBUG_INFO - YES - OTHER_LDFLAGS - - OTHER_LIBTOOLFLAGS - - PODS_ROOT - $(SRCROOT) - PRODUCT_BUNDLE_IDENTIFIER - org.cocoapods.${PRODUCT_NAME:rfc1034identifier} - PRODUCT_NAME - $(TARGET_NAME) - SDKROOT - iphoneos - SKIP_INSTALL - YES - - isa - XCBuildConfiguration - name - Debug - - 31711D5ABBA4626EDADD31FE9243C11F - - fileRef - 389041AF103FD6B9136C672AAA427049 - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - 321915A8CECE95AC974AC12751171407 - - children - - D0C15026BC57F66478BF067FBA4D15F3 - 9446C2E2CE0AB1CB5F7A11FA5501071D - - isa - PBXGroup - name - NSDataBase64Encode - path - NSDataBase64Encode - sourceTree - <group> - - 3229F616F67D948A7B9095949B6771D1 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - NCMB.xcconfig - sourceTree - <group> - - 389041AF103FD6B9136C672AAA427049 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBObject.m - sourceTree - <group> - - 394144756587ED5049C75418BF5E198E - - buildConfigurationList - 2A109E96476855AE681F7401635C8ED3 - buildPhases - - AD90816A11BB9074D1C286B8FC912035 - 20474AB0E721CE3960540D1E25EA2E49 - - buildRules - - dependencies - - FE2310EC7C28E1F7836865867FE1CC39 - - isa - PBXNativeTarget - name - Pods-ConfirmPushNotification - productName - Pods-ConfirmPushNotification - productReference - 23374C12F6180BD5E7AAB93980316D8B - productType - com.apple.product-type.library.static - - 3B3AEA16686E1663556608EF162727E0 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBURLConnection.h - sourceTree - <group> - - 3B90148A8230A3F72AE3CC50A6F72BEF - - fileRef - 8038FCC9BBA1450DEBD9553875DFF825 - isa - PBXBuildFile - - 3BDA924BBBF8A6BBD8427C880D17D8E9 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.script.sh - path - Pods-ConfirmPushNotification-resources.sh - sourceTree - <group> - - 3CAB21E71179409C13CE8FBC1D8D9961 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.script.sh - path - Pods-ConfirmPushNotificationTests-frameworks.sh - sourceTree - <group> - - 3CD7FD17504ABFC33B3F49668723A49B - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBURLConnection.m - sourceTree - <group> - - 3CE6762E82F1FB83DCC75796AEFD1091 - - fileRef - FFC21BD40B12D479870EC42587300663 - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - 3D820BCFB0D3961FA61419ED034A3F64 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBAddOperation.h - sourceTree - <group> - - 3FB240E1BF08DFBF337B452F96891FF6 - - containerPortal - D41D8CD98F00B204E9800998ECF8427E - isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - 1889F13D712980587FAE910B401CAE83 - remoteInfo - NCMB - - 407F2CBD3996E4269110568765F5034F - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBFile.h - sourceTree - <group> - - 40F44598B060D88251A242AB8ED4C8C3 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.script.sh - path - Pods-ConfirmPushNotificationTests-resources.sh - sourceTree - <group> - - 41F04C08BE38908FA2FF262419C39AF3 - - fileRef - 5B49BC7DFFFC3A95ED2E2442566A8E0A - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - 439FD45D2368E5B5B9F404309CE0B21F - - fileRef - FABEED1F9A8D9C6E12A5749C8DBBBD2F - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 43CB41CA6833BBBF7F256F8160EFCAA2 - - fileRef - B9DD72F47097FD762675157AD8DF9F04 - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - 44C601DBA88F12263C90B4A19198328E - - buildConfigurations - - DF3D3C4DBA486BA8782F22A137F1E7EC - A38D5993B286178A1DF78F8E54F039F4 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - 44CCACCCF3A618CFBD1D2DCA83548B6D - - children - - A24E35AD99FAFBDE7CCCA4F4EDFF43CF - 76F019AEFAAA026387FFE4B2EAAB85BF - 21E6DF25545F13B3A2AB073B8B60AF0F - 51349D86F07D32D285D302D80050CCCB - 71FF9DD853ECCF21EEC832BC92DD1C1B - - isa - PBXGroup - name - iOS - sourceTree - <group> - - 4BEFF3C0191FBC622CA21E5FD1844914 - - buildActionMask - 2147483647 - files - - 8EC32482CD4852EABA1BD4F301373D02 - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - 50C6EE3F6FFECC36812F4BD7FDC07923 - - fileRef - 05B07CCDC830F45E3F8B10E7A37D236E - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - 51349D86F07D32D285D302D80050CCCB - - isa - PBXFileReference - lastKnownFileType - wrapper.framework - name - SystemConfiguration.framework - path - Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/SystemConfiguration.framework - sourceTree - DEVELOPER_DIR - - 51AD6040B2935F0AE1F0450A071BA506 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBGeoPoint.m - sourceTree - <group> - - 5215F9FA02CB0C81178DAA8DECE2FE3A - - fileRef - BE31AB2460EFD9D8A791F90E13F9FEBA - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 554BBCF8366147C58CFC40A27A56708F - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text - path - Pods-ConfirmPushNotification-acknowledgements.markdown - sourceTree - <group> - - 55B0A76EE2E24F9DC69DB1671283E8A8 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Pods-ConfirmPushNotification.debug.xcconfig - sourceTree - <group> - - 5A0DC011A0F4678EE4578C4D1EA1D4FD - - fileRef - 71FF9DD853ECCF21EEC832BC92DD1C1B - isa - PBXBuildFile - - 5B49BC7DFFFC3A95ED2E2442566A8E0A - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBAnalytics.m - sourceTree - <group> - - 5DACDB3867DED408EF869D2A8406C9B4 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBScriptService.m - sourceTree - <group> - - 5F20289539580B7C55CEB7A6C73C47C7 - - fileRef - 676961D46474476A361AE484A4C8352E - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - 5F44E95F893FB55A661CF1FB8A1D7EDD - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text - path - Pods-ConfirmPushNotificationTests-acknowledgements.markdown - sourceTree - <group> - - 62E5D4EFCA73F43A942DF9D8625A7380 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBSetOperation.m - sourceTree - <group> - - 64ADC4B116925BF69E5430E114EA8A24 - - children - - C637B3BADFA1DB3FA320B5CF34BEAE23 - 5DACDB3867DED408EF869D2A8406C9B4 - - isa - PBXGroup - name - NCMBScriptService - path - NCMBScriptService - sourceTree - <group> - - 65E13BA854714E468BE51A5EF097E913 - - children - - 97E0D255DB8088B19A1B02F017385020 - 2BDE28DBB7ED741DA898B0F716FF58F3 - - isa - PBXGroup - name - NCMB - path - ../../.. - sourceTree - <group> - - 66558938A1A84110C60939A1608A0079 - - fileRef - C8369F0F73F3C539E1AF28F862872C22 - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 66FE7AA751AF92E5CD41E6559DF67241 - - fileRef - 696179BA7C007C4FF284B1CF3D9AC007 - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - 670D58F08233D0510F0636952CE86556 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.script.sh - path - Pods-ConfirmPushNotification-frameworks.sh - sourceTree - <group> - - 676961D46474476A361AE484A4C8352E - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBRelation.m - sourceTree - <group> - - 676F241381FA499ED876D589A4EAE718 - - fileRef - FF529FE346722619E9233EF49800AF70 - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - 67AEAECDD8E88E64FE06D51095CA271B - - buildConfigurationList - 44C601DBA88F12263C90B4A19198328E - buildPhases - - 4BEFF3C0191FBC622CA21E5FD1844914 - 9E466889F1B154B7F485985426CCB791 - - buildRules - - dependencies - - isa - PBXNativeTarget - name - Pods-ConfirmPushNotificationTests - productName - Pods-ConfirmPushNotificationTests - productReference - 0F5D0BA1E01431D1B67099E936A4ADA9 - productType - com.apple.product-type.library.static - - 696179BA7C007C4FF284B1CF3D9AC007 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBRequest.m - sourceTree - <group> - - 6A0F315B1AB3964B79AEEE1569F6E2B0 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBError.m - sourceTree - <group> - - 6F680F92D9C128F8F20BD498E9DA2A3B - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMB-prefix.pch - sourceTree - <group> - - 71FF9DD853ECCF21EEC832BC92DD1C1B - - isa - PBXFileReference - lastKnownFileType - wrapper.framework - name - UIKit.framework - path - Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/UIKit.framework - sourceTree - DEVELOPER_DIR - - 722DE4F97F61A8E4B932E54E36E3F169 - - baseConfigurationReference - B42357C29835AE7506FE353B96A9464A - buildSettings - - CODE_SIGN_IDENTITY[sdk=iphoneos*] - iPhone Developer - DEBUG_INFORMATION_FORMAT - dwarf-with-dsym - ENABLE_STRICT_OBJC_MSGSEND - YES - GCC_NO_COMMON_BLOCKS - YES - IPHONEOS_DEPLOYMENT_TARGET - 10.1 - MACH_O_TYPE - staticlib - MTL_ENABLE_DEBUG_INFO - NO - OTHER_LDFLAGS - - OTHER_LIBTOOLFLAGS - - PODS_ROOT - $(SRCROOT) - PRODUCT_BUNDLE_IDENTIFIER - org.cocoapods.${PRODUCT_NAME:rfc1034identifier} - PRODUCT_NAME - $(TARGET_NAME) - SDKROOT - iphoneos - SKIP_INSTALL - YES - - isa - XCBuildConfiguration - name - Release - - 72320485FD184DDA0A71A089F3EB4543 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBScript.h - sourceTree - <group> - - 736033634CBC164E47BF04790271E62B - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBUser.m - sourceTree - <group> - - 74EC5A9EC9E68ED1516E3A0B786ED356 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMB.m - sourceTree - <group> - - 76F019AEFAAA026387FFE4B2EAAB85BF - - isa - PBXFileReference - lastKnownFileType - wrapper.framework - name - Foundation.framework - path - Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework - sourceTree - DEVELOPER_DIR - - 76FC99F87765AA49D70601662566D59E - - fileRef - A618BEE73FDE6CF392D6F108C6B7E945 - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 777E5C4D88DD294BE1F08C41BD3B168F - - fileRef - 6A0F315B1AB3964B79AEEE1569F6E2B0 - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - 79CCBC34EAE1B9945570D9048451EE99 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBUser+Private.h - sourceTree - <group> - - 79E01B404406104174E22CDB9ACE2B3A - - fileRef - 8839394AE7F517AB7FE7F32782841B58 - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 7A08E3E7D25D85A45E3CDABA8EC6FBBD - - fileRef - F3AD73F1D54BF60DA02355CE5A21FA16 - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 7A326BA36927BE79048A945642B2DCDA - - children - - 3D820BCFB0D3961FA61419ED034A3F64 - B75D51658861D73EA2C274F5E131992F - 9F2D194C123FA7A9D4ED22A67DD6F9B5 - FF529FE346722619E9233EF49800AF70 - FABEED1F9A8D9C6E12A5749C8DBBBD2F - 28D9185C10BB7076D1BD9E00FBF878E1 - F3AD73F1D54BF60DA02355CE5A21FA16 - 90607D224B5A1397AE360BB530B13B1A - A1FD97BBA9DC90FEBEB8A10ADE426BCC - 8CF9E342B171370AC3E1BF3F7A8A6A8B - 28FD9E74597AAFAADA77A97F4955C6BD - DD68C4DCA0D192DEB163D6A553C7FE05 - A618BEE73FDE6CF392D6F108C6B7E945 - 62E5D4EFCA73F43A942DF9D8625A7380 - - isa - PBXGroup - name - Operations - path - Operations - sourceTree - <group> - - 7A69AB5DCEC37799515B26CA92B04C3F - - fileRef - 3CD7FD17504ABFC33B3F49668723A49B - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - 7ABF0AD680B45513DF7D00707F7E6757 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBConstants.h - sourceTree - <group> - - 7B079CBB887B2028668D43A3DE1139FE - - children - - 204DEA6C697E879C04EF30EE83BD3402 - 00B64A768E169BEBB214AF59BDAB8EF9 - - isa - PBXGroup - name - Targets Support Files - sourceTree - <group> - - 7D08918F230583F771A0468B19723EEC - - fileRef - 31561FC03CD18C72B5F0EDA5BA0A53A6 - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 7DB346D0F39D3F0E887471402A8071AB - - children - - 93A4A3777CF96A4AAC1D13BA6DCCEA73 - CC858CF74B6E55AD06EB1ADF0CABC6C6 - 20B56609144CE204DFA8221F742B2D76 - CD455D44E1B9570F63CFC804C47B8D42 - 7B079CBB887B2028668D43A3DE1139FE - - isa - PBXGroup - sourceTree - <group> - - 7E23A2A3BE097C061DFFAE4B8AF15502 - - explicitFileType - archive.ar - includeInIndex - 0 - isa - PBXFileReference - name - libNCMB.a - path - libNCMB.a - sourceTree - BUILT_PRODUCTS_DIR - - 7FB8FDC8C55F87DF91DB28C9069F5E5E - - fileRef - 9F2D194C123FA7A9D4ED22A67DD6F9B5 - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 8038FCC9BBA1450DEBD9553875DFF825 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - Pods-ConfirmPushNotification-dummy.m - sourceTree - <group> - - 807C8908446647CE4303E53A992A41AA - - fileRef - E2363A4E6917F4C48F718C5B2211117B - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - 81CC1CF2CAD6BE38A923AA8C4E6524BF - - baseConfigurationReference - 3229F616F67D948A7B9095949B6771D1 - buildSettings - - CODE_SIGN_IDENTITY[sdk=iphoneos*] - iPhone Developer - DEBUG_INFORMATION_FORMAT - dwarf - ENABLE_STRICT_OBJC_MSGSEND - YES - GCC_NO_COMMON_BLOCKS - YES - GCC_PREFIX_HEADER - Target Support Files/NCMB/NCMB-prefix.pch - IPHONEOS_DEPLOYMENT_TARGET - 5.1 - MTL_ENABLE_DEBUG_INFO - YES - OTHER_LDFLAGS - - OTHER_LIBTOOLFLAGS - - PRIVATE_HEADERS_FOLDER_PATH - - PRODUCT_NAME - $(TARGET_NAME) - PUBLIC_HEADERS_FOLDER_PATH - - SDKROOT - iphoneos - SKIP_INSTALL - YES - - isa - XCBuildConfiguration - name - Debug - - 826CCFA80A9AD59E09E087B1DAD07402 - - baseConfigurationReference - 3229F616F67D948A7B9095949B6771D1 - buildSettings - - CODE_SIGN_IDENTITY[sdk=iphoneos*] - iPhone Developer - DEBUG_INFORMATION_FORMAT - dwarf-with-dsym - ENABLE_STRICT_OBJC_MSGSEND - YES - GCC_NO_COMMON_BLOCKS - YES - GCC_PREFIX_HEADER - Target Support Files/NCMB/NCMB-prefix.pch - IPHONEOS_DEPLOYMENT_TARGET - 5.1 - MTL_ENABLE_DEBUG_INFO - NO - OTHER_LDFLAGS - - OTHER_LIBTOOLFLAGS - - PRIVATE_HEADERS_FOLDER_PATH - - PRODUCT_NAME - $(TARGET_NAME) - PUBLIC_HEADERS_FOLDER_PATH - - SDKROOT - iphoneos - SKIP_INSTALL - YES - - isa - XCBuildConfiguration - name - Release - - 82887A57570AB6C1E4B6C7CF50639357 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBScript.m - sourceTree - <group> - - 84B4B5DAFA9291BC8264BA3526AF7576 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBReachability.m - sourceTree - <group> - - 88067B5DC7D408C67C179D7BE15E1F77 - - fileRef - DF49D345F0E18DC5A7559DB18076B111 - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 8839394AE7F517AB7FE7F32782841B58 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBObject.h - sourceTree - <group> - - 8902A3200A810E2E8542CAFCDB3A8007 - - fileRef - B76AA22E8E3127B7594499D95BF289EC - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 8CF9E342B171370AC3E1BF3F7A8A6A8B - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBRelationOperation.m - sourceTree - <group> - - 8E35112D4F97247394ABFA1B4F09DA83 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.plist.xml - path - Pods-ConfirmPushNotificationTests-acknowledgements.plist - sourceTree - <group> - - 8EB21A9E03ADB40080E21E5C008CB59A - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBRole.h - sourceTree - <group> - - 8EC32482CD4852EABA1BD4F301373D02 - - fileRef - F173167AB1C8AD5965E8C0DAA312738B - isa - PBXBuildFile - - 8FAA4F6EAD1B2E64C29E03876F4CFA8E - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBRelation+Private.h - sourceTree - <group> - - 90607D224B5A1397AE360BB530B13B1A - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBIncrementOperation.m - sourceTree - <group> - - 9371848B75049EB594E744AEA9EE4BD1 - - fileRef - 9F19CB7A1FCB15AA745546B983E93365 - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 93A4A3777CF96A4AAC1D13BA6DCCEA73 - - explicitFileType - text.script.ruby - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text - name - Podfile - path - ../Podfile - sourceTree - SOURCE_ROOT - xcLanguageSpecificationIdentifier - xcode.lang.ruby - - 941A504678D9BD2A10597443A8FD3AB0 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.plist.xml - path - Pods-ConfirmPushNotification-acknowledgements.plist - sourceTree - <group> - - 9446C2E2CE0AB1CB5F7A11FA5501071D - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NSDataBase64Encode.m - sourceTree - <group> - - 9511B44286BF36680A025682000F69E0 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBRelation.h - sourceTree - <group> - - 96FBCB0E1BA987DA664EB1A234346CAB - - fileRef - C0AC26CF0B2C969CC5F16E68B0C57E9C - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 97E0D255DB8088B19A1B02F017385020 - - children - - FAC0557BC6CF99C34CBBD4B250A3B26A - 74EC5A9EC9E68ED1516E3A0B786ED356 - 1605B735C2C76100B46087DC2BE1F09C - E2363A4E6917F4C48F718C5B2211117B - D93EDF7C2DF4DC36BAA15CDA9B8AEE7E - 5B49BC7DFFFC3A95ED2E2442566A8E0A - BE31AB2460EFD9D8A791F90E13F9FEBA - 10EC0682095FA382D9BE31CCB907AE75 - 7ABF0AD680B45513DF7D00707F7E6757 - A4F253DF95E88052F8C51EEBFBEFD650 - 6A0F315B1AB3964B79AEEE1569F6E2B0 - 407F2CBD3996E4269110568765F5034F - 27495FD3F057633A862889F57B63B2B2 - 242D57AD3ED8C95F4B1F5FD158FA1D71 - 51AD6040B2935F0AE1F0450A071BA506 - DF49D345F0E18DC5A7559DB18076B111 - A033C42D4A4A2A57C16C4135C75CD5E2 - 8839394AE7F517AB7FE7F32782841B58 - 389041AF103FD6B9136C672AAA427049 - C0AC26CF0B2C969CC5F16E68B0C57E9C - 31561FC03CD18C72B5F0EDA5BA0A53A6 - B9DD72F47097FD762675157AD8DF9F04 - B2CD9D1412243FBA2CC86DFB06C2585B - BFFC3AEE2A7A92B2350583AD40ED5734 - 9511B44286BF36680A025682000F69E0 - 676961D46474476A361AE484A4C8352E - 8EB21A9E03ADB40080E21E5C008CB59A - FFC21BD40B12D479870EC42587300663 - 72320485FD184DDA0A71A089F3EB4543 - 82887A57570AB6C1E4B6C7CF50639357 - 2C5043C63C0611BFCE14AFB2BD52A9FB - C8369F0F73F3C539E1AF28F862872C22 - 736033634CBC164E47BF04790271E62B - D81833DF0B0479F5F5099A2BBD218940 - F06DAFAA233F4F19F81FFD1C7112D019 - FDCBF29280C898BF150D4BE758DA0388 - 64ADC4B116925BF69E5430E114EA8A24 - D2973392C8CA15A119F7A444860FF5ED - 321915A8CECE95AC974AC12751171407 - 7A326BA36927BE79048A945642B2DCDA - A9129B17143A766D274531DCB8FBBCFA - 15EF94D19FA562D4DAD63F4A89995921 - - isa - PBXGroup - name - NCMB - path - NCMB - sourceTree - <group> - - 9AD57120C5862E1812192FD1CF6546F5 - - fileRef - AE0B9C0604F63FC7298CF37266320A91 - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 9B85019D1537FD97E51233FA78179A92 - - fileRef - 28FD9E74597AAFAADA77A97F4955C6BD - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 9C25343932D52F5DBEC00589AB4DA6A3 - - fileRef - 7ABF0AD680B45513DF7D00707F7E6757 - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - 9D16934FB846D74347FE7BFB0729F80B - - fileRef - 28D9185C10BB7076D1BD9E00FBF878E1 - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - 9E466889F1B154B7F485985426CCB791 - - buildActionMask - 2147483647 - files - - F4EE21856B1C169BE9184A2EA743CFD2 - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - 9F19CB7A1FCB15AA745546B983E93365 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBCloseImageView.h - sourceTree - <group> - - 9F2D194C123FA7A9D4ED22A67DD6F9B5 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBAddUniqueOperation.h - sourceTree - <group> - - A033C42D4A4A2A57C16C4135C75CD5E2 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBInstallation.m - sourceTree - <group> - - A18B013A59B2794D0522B3FDF99A4288 - - fileRef - 8EB21A9E03ADB40080E21E5C008CB59A - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - A1FD97BBA9DC90FEBEB8A10ADE426BCC - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBRelationOperation.h - sourceTree - <group> - - A24E35AD99FAFBDE7CCCA4F4EDFF43CF - - isa - PBXFileReference - lastKnownFileType - wrapper.framework - name - AudioToolbox.framework - path - Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/AudioToolbox.framework - sourceTree - DEVELOPER_DIR - - A38D5993B286178A1DF78F8E54F039F4 - - baseConfigurationReference - F7B9716B020E8676303C030381D2FB51 - buildSettings - - CODE_SIGN_IDENTITY[sdk=iphoneos*] - iPhone Developer - DEBUG_INFORMATION_FORMAT - dwarf-with-dsym - ENABLE_STRICT_OBJC_MSGSEND - YES - GCC_NO_COMMON_BLOCKS - YES - IPHONEOS_DEPLOYMENT_TARGET - 10.1 - MACH_O_TYPE - staticlib - MTL_ENABLE_DEBUG_INFO - NO - OTHER_LDFLAGS - - OTHER_LIBTOOLFLAGS - - PODS_ROOT - $(SRCROOT) - PRODUCT_BUNDLE_IDENTIFIER - org.cocoapods.${PRODUCT_NAME:rfc1034identifier} - PRODUCT_NAME - $(TARGET_NAME) - SDKROOT - iphoneos - SKIP_INSTALL - YES - - isa - XCBuildConfiguration - name - Release - - A4F253DF95E88052F8C51EEBFBEFD650 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBError.h - sourceTree - <group> - - A618BEE73FDE6CF392D6F108C6B7E945 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBSetOperation.h - sourceTree - <group> - - A77DB90294774E9DE6BA3B4F89E93637 - - fileRef - 79CCBC34EAE1B9945570D9048451EE99 - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - A822DA04B0559E5D521579B58F5292D1 - - fileRef - A033C42D4A4A2A57C16C4135C75CD5E2 - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - A9129B17143A766D274531DCB8FBBCFA - - children - - E09EBDBFFC63A0D6E08873CD636B625C - B5BB9A0CD4EAC5431CBE97069C381272 - 8FAA4F6EAD1B2E64C29E03876F4CFA8E - 79CCBC34EAE1B9945570D9048451EE99 - - isa - PBXGroup - name - PrivateHeaders - path - PrivateHeaders - sourceTree - <group> - - AA2DAA35AA203B696BB54AD6CBE4F897 - - fileRef - 9446C2E2CE0AB1CB5F7A11FA5501071D - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - AD90816A11BB9074D1C286B8FC912035 - - buildActionMask - 2147483647 - files - - 3B90148A8230A3F72AE3CC50A6F72BEF - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - AE0B9C0604F63FC7298CF37266320A91 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - SubClassHandler.h - sourceTree - <group> - - AEA078A66406AEA9B877C25013FD711B - - fileRef - BFFC3AEE2A7A92B2350583AD40ED5734 - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - B23040135FFFFA747CFA198C502F69EA - - buildActionMask - 2147483647 - files - - E618E8B91A502E6D236376AE9867AC80 - E0EAAF59106DF7E2278E8D3FC75A6B5A - 807C8908446647CE4303E53A992A41AA - D0FEA6FBDE17FAE3E91B0AC74A212628 - 676F241381FA499ED876D589A4EAE718 - 41F04C08BE38908FA2FF262419C39AF3 - 0E7E8226785D3A5BC1AB66A4448A21FF - 16853095095480EEE5A0637639DFBAC1 - 9D16934FB846D74347FE7BFB0729F80B - 777E5C4D88DD294BE1F08C41BD3B168F - C42D9F9A5B94BD281931C152260231B5 - C51E4878C1029B841263478F21E19EF2 - 16160195B368465FBC08527331DAF489 - A822DA04B0559E5D521579B58F5292D1 - 31711D5ABBA4626EDADD31FE9243C11F - 43CB41CA6833BBBF7F256F8160EFCAA2 - AEA078A66406AEA9B877C25013FD711B - F82159F38E0FD3A08904E7FB2CB11935 - 5F20289539580B7C55CEB7A6C73C47C7 - 2845DD39F298F47A2CB402FF92F71219 - 2B6F8F3C3BA72D41930A23832DC0D5D0 - 66FE7AA751AF92E5CD41E6559DF67241 - 50C6EE3F6FFECC36812F4BD7FDC07923 - 3CE6762E82F1FB83DCC75796AEFD1091 - E88DD11651C77638BFB2385CE1F19C70 - E2D1E2AD88FA32CF38818548A2EB7D12 - B8A401D7DF6A4F2B3558A1BFEDBFF794 - 7A69AB5DCEC37799515B26CA92B04C3F - 05E15DBEA0923ED6BDA871A687824C19 - AA2DAA35AA203B696BB54AD6CBE4F897 - E8580D0F12055C4EDE947052541CC3F5 - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - B2CD9D1412243FBA2CC86DFB06C2585B - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBQuery.h - sourceTree - <group> - - B42357C29835AE7506FE353B96A9464A - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Pods-ConfirmPushNotification.release.xcconfig - sourceTree - <group> - - B49C71A4632620060E4E7FED25B52ADA - - fileRef - D0C15026BC57F66478BF067FBA4D15F3 - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - B5BB9A0CD4EAC5431CBE97069C381272 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBQuery+Private.h - sourceTree - <group> - - B5D7FA229D596EBDF959BC23CA462F40 - - fileRef - 3B3AEA16686E1663556608EF162727E0 - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - B75D51658861D73EA2C274F5E131992F - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBAddOperation.m - sourceTree - <group> - - B76AA22E8E3127B7594499D95BF289EC - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBRequest.h - sourceTree - <group> - - B8A401D7DF6A4F2B3558A1BFEDBFF794 - - fileRef - 62E5D4EFCA73F43A942DF9D8625A7380 - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - B9DD72F47097FD762675157AD8DF9F04 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBPush.m - sourceTree - <group> - - BB242C12A90EB7C0A3DB392FD73C0BDE - - fileRef - A1FD97BBA9DC90FEBEB8A10ADE426BCC - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - BBD0374F434E5575B371CFBE9F11DE92 - - fileRef - FA8D02673B4998C2E2CBCDE411868781 - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - BC297B8FCCD320BE3BAF1A102464A24F - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - SubClassHandler.m - sourceTree - <group> - - BD5006D2A76EABD51BA4AB4DA738C192 - - fileRef - DA6668C7778046B398ACC911A66BCFF0 - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - BE31AB2460EFD9D8A791F90E13F9FEBA - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBAnonymousUtils.h - sourceTree - <group> - - BF5F46F4CD492B58E7DB5EAC60D94410 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Pods-ConfirmPushNotificationTests.debug.xcconfig - sourceTree - <group> - - BFFC3AEE2A7A92B2350583AD40ED5734 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBQuery.m - sourceTree - <group> - - C0AC26CF0B2C969CC5F16E68B0C57E9C - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBObject+Subclass.h - sourceTree - <group> - - C3E5E9E98098ADC1DDF8A25326AE902F - - buildActionMask - 2147483647 - files - - 26CA6641C6BCC8EB4EDA80C9D81715E2 - 2BEAA89A810BE75CCEC9C7C652C63AB6 - 0AF02DBAABA803055A7875511B0482ED - 7FB8FDC8C55F87DF91DB28C9069F5E5E - F6C5E77E7BA280D1BE48CA709C576F5B - 5215F9FA02CB0C81178DAA8DECE2FE3A - 9371848B75049EB594E744AEA9EE4BD1 - 9C25343932D52F5DBEC00589AB4DA6A3 - 439FD45D2368E5B5B9F404309CE0B21F - 1AEDC5639E98C408AE4BAB38F745263F - CB68745F953304C37C23B1B9FE743CC7 - E2B8F499EFD5DE3D518E5F9505B86223 - 7A08E3E7D25D85A45E3CDABA8EC6FBBD - 88067B5DC7D408C67C179D7BE15E1F77 - 10C3DF5486ECBCB1524A2B1A88A35DCF - 96FBCB0E1BA987DA664EB1A234346CAB - 79E01B404406104174E22CDB9ACE2B3A - 7D08918F230583F771A0468B19723EEC - F14450305D668B0CC8F46858EA942BAA - 2044F3AB9634B4EE5FA3BD1D5192A52F - BD5006D2A76EABD51BA4AB4DA738C192 - 1C13F59065645D9B11064298B8B0CE12 - 298480F4A9D6EF6EE6E3566B8482EF5A - BB242C12A90EB7C0A3DB392FD73C0BDE - 9B85019D1537FD97E51233FA78179A92 - 8902A3200A810E2E8542CAFCDB3A8007 - BBD0374F434E5575B371CFBE9F11DE92 - A18B013A59B2794D0522B3FDF99A4288 - EA184DD2C683DA1F127AA41A55DB5007 - 0D3C90B1EA9B3C2B1CA40A8B08DAC9C1 - 76FC99F87765AA49D70601662566D59E - CF27FAD6321E49A1E5E4A37470A8EF8F - B5D7FA229D596EBDF959BC23CA462F40 - A77DB90294774E9DE6BA3B4F89E93637 - 66558938A1A84110C60939A1608A0079 - B49C71A4632620060E4E7FED25B52ADA - 9AD57120C5862E1812192FD1CF6546F5 - - isa - PBXHeadersBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - C42D9F9A5B94BD281931C152260231B5 - - fileRef - 27495FD3F057633A862889F57B63B2B2 - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - C51E4878C1029B841263478F21E19EF2 - - fileRef - 51AD6040B2935F0AE1F0450A071BA506 - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - C637B3BADFA1DB3FA320B5CF34BEAE23 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBScriptService.h - sourceTree - <group> - - C8369F0F73F3C539E1AF28F862872C22 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBUser.h - sourceTree - <group> - - CB68745F953304C37C23B1B9FE743CC7 - - fileRef - 407F2CBD3996E4269110568765F5034F - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - CC858CF74B6E55AD06EB1ADF0CABC6C6 - - children - - 65E13BA854714E468BE51A5EF097E913 - - isa - PBXGroup - name - Development Pods - sourceTree - <group> - - CD455D44E1B9570F63CFC804C47B8D42 - - children - - 7E23A2A3BE097C061DFFAE4B8AF15502 - 23374C12F6180BD5E7AAB93980316D8B - 0F5D0BA1E01431D1B67099E936A4ADA9 - - isa - PBXGroup - name - Products - sourceTree - <group> - - CF27FAD6321E49A1E5E4A37470A8EF8F - - fileRef - 2C5043C63C0611BFCE14AFB2BD52A9FB - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - D0C15026BC57F66478BF067FBA4D15F3 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NSDataBase64Encode.h - sourceTree - <group> - - D0FEA6FBDE17FAE3E91B0AC74A212628 - - fileRef - B75D51658861D73EA2C274F5E131992F - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - D2421878B21A468BCD2DAEE8E3933B6C - - buildActionMask - 2147483647 - files - - EEFCE9AB4FFE187D56C3490C9AAAFBF9 - D96C330CBA62EAD2877193A0011AE94A - DABEEFFF91853BA629C63A93F1560407 - DAD58BFBDCC78641257AA48E87DE0ACE - 5A0DC011A0F4678EE4578C4D1EA1D4FD - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - D2973392C8CA15A119F7A444860FF5ED - - children - - 3B3AEA16686E1663556608EF162727E0 - 3CD7FD17504ABFC33B3F49668723A49B - - isa - PBXGroup - name - NCMBURLConnection - path - NCMBURLConnection - sourceTree - <group> - - D41D8CD98F00B204E9800998ECF8427E - - attributes - - LastSwiftUpdateCheck - 0730 - LastUpgradeCheck - 0700 - - buildConfigurationList - 2D8E8EC45A3A1A1D94AE762CB5028504 - compatibilityVersion - Xcode 3.2 - developmentRegion - English - hasScannedForEncodings - 0 - isa - PBXProject - knownRegions - - en - - mainGroup - 7DB346D0F39D3F0E887471402A8071AB - productRefGroup - CD455D44E1B9570F63CFC804C47B8D42 - projectDirPath - - projectReferences - - projectRoot - - targets - - 1889F13D712980587FAE910B401CAE83 - 394144756587ED5049C75418BF5E198E - 67AEAECDD8E88E64FE06D51095CA271B - - - D560687C2EAA7604298B56AEE78343D9 - - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - CLANG_ANALYZER_NONNULL - YES - CLANG_CXX_LANGUAGE_STANDARD - gnu++0x - CLANG_CXX_LIBRARY - libc++ - CLANG_ENABLE_MODULES - YES - CLANG_ENABLE_OBJC_ARC - YES - CLANG_WARN_BOOL_CONVERSION - YES - CLANG_WARN_CONSTANT_CONVERSION - YES - CLANG_WARN_DIRECT_OBJC_ISA_USAGE - YES - CLANG_WARN_EMPTY_BODY - YES - CLANG_WARN_ENUM_CONVERSION - YES - CLANG_WARN_INT_CONVERSION - YES - CLANG_WARN_OBJC_ROOT_CLASS - YES - CLANG_WARN_UNREACHABLE_CODE - YES - CLANG_WARN__DUPLICATE_METHOD_MATCH - YES - COPY_PHASE_STRIP - YES - ENABLE_NS_ASSERTIONS - NO - GCC_C_LANGUAGE_STANDARD - gnu99 - GCC_PREPROCESSOR_DEFINITIONS - - POD_CONFIGURATION_RELEASE=1 - $(inherited) - - GCC_WARN_64_TO_32_BIT_CONVERSION - YES - GCC_WARN_ABOUT_RETURN_TYPE - YES - GCC_WARN_UNDECLARED_SELECTOR - YES - GCC_WARN_UNINITIALIZED_AUTOS - YES - GCC_WARN_UNUSED_FUNCTION - YES - GCC_WARN_UNUSED_VARIABLE - YES - IPHONEOS_DEPLOYMENT_TARGET - 10.1 - STRIP_INSTALLED_PRODUCT - NO - SYMROOT - ${SRCROOT}/../build - VALIDATE_PRODUCT - YES - - isa - XCBuildConfiguration - name - Release - - D81833DF0B0479F5F5099A2BBD218940 - - children - - B76AA22E8E3127B7594499D95BF289EC - 696179BA7C007C4FF284B1CF3D9AC007 - - isa - PBXGroup - name - NCBMRequest - path - NCBMRequest - sourceTree - <group> - - D93EDF7C2DF4DC36BAA15CDA9B8AEE7E - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBAnalytics.h - sourceTree - <group> - - D96C330CBA62EAD2877193A0011AE94A - - fileRef - 76F019AEFAAA026387FFE4B2EAAB85BF - isa - PBXBuildFile - - DA6668C7778046B398ACC911A66BCFF0 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBReachability.h - sourceTree - <group> - - DABEEFFF91853BA629C63A93F1560407 - - fileRef - 21E6DF25545F13B3A2AB073B8B60AF0F - isa - PBXBuildFile - - DAD58BFBDCC78641257AA48E87DE0ACE - - fileRef - 51349D86F07D32D285D302D80050CCCB - isa - PBXBuildFile - - DD68C4DCA0D192DEB163D6A553C7FE05 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBRemoveOperation.m - sourceTree - <group> - - DF3D3C4DBA486BA8782F22A137F1E7EC - - baseConfigurationReference - BF5F46F4CD492B58E7DB5EAC60D94410 - buildSettings - - CODE_SIGN_IDENTITY[sdk=iphoneos*] - iPhone Developer - DEBUG_INFORMATION_FORMAT - dwarf - ENABLE_STRICT_OBJC_MSGSEND - YES - GCC_NO_COMMON_BLOCKS - YES - IPHONEOS_DEPLOYMENT_TARGET - 10.1 - MACH_O_TYPE - staticlib - MTL_ENABLE_DEBUG_INFO - YES - OTHER_LDFLAGS - - OTHER_LIBTOOLFLAGS - - PODS_ROOT - $(SRCROOT) - PRODUCT_BUNDLE_IDENTIFIER - org.cocoapods.${PRODUCT_NAME:rfc1034identifier} - PRODUCT_NAME - $(TARGET_NAME) - SDKROOT - iphoneos - SKIP_INSTALL - YES - - isa - XCBuildConfiguration - name - Debug - - DF49D345F0E18DC5A7559DB18076B111 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBInstallation.h - sourceTree - <group> - - E09EBDBFFC63A0D6E08873CD636B625C - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBObject+Private.h - sourceTree - <group> - - E0EAAF59106DF7E2278E8D3FC75A6B5A - - fileRef - 74EC5A9EC9E68ED1516E3A0B786ED356 - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - E2363A4E6917F4C48F718C5B2211117B - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBACL.m - sourceTree - <group> - - E2B8F499EFD5DE3D518E5F9505B86223 - - fileRef - 242D57AD3ED8C95F4B1F5FD158FA1D71 - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - E2D1E2AD88FA32CF38818548A2EB7D12 - - fileRef - 5DACDB3867DED408EF869D2A8406C9B4 - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - E618E8B91A502E6D236376AE9867AC80 - - fileRef - 02D30957AC47123B6EE2BA847EB3E296 - isa - PBXBuildFile - - E8580D0F12055C4EDE947052541CC3F5 - - fileRef - BC297B8FCCD320BE3BAF1A102464A24F - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - E88DD11651C77638BFB2385CE1F19C70 - - fileRef - 82887A57570AB6C1E4B6C7CF50639357 - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - EA184DD2C683DA1F127AA41A55DB5007 - - fileRef - 72320485FD184DDA0A71A089F3EB4543 - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - EEFCE9AB4FFE187D56C3490C9AAAFBF9 - - fileRef - A24E35AD99FAFBDE7CCCA4F4EDFF43CF - isa - PBXBuildFile - - F06DAFAA233F4F19F81FFD1C7112D019 - - children - - DA6668C7778046B398ACC911A66BCFF0 - 84B4B5DAFA9291BC8264BA3526AF7576 - - isa - PBXGroup - name - NCMBReachability - path - NCMBReachability - sourceTree - <group> - - F14450305D668B0CC8F46858EA942BAA - - fileRef - B5BB9A0CD4EAC5431CBE97069C381272 - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - F173167AB1C8AD5965E8C0DAA312738B - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - Pods-ConfirmPushNotificationTests-dummy.m - sourceTree - <group> - - F1CACC81189ECB1BB82CE47F73EBE3D1 - - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - CLANG_ANALYZER_NONNULL - YES - CLANG_CXX_LANGUAGE_STANDARD - gnu++0x - CLANG_CXX_LIBRARY - libc++ - CLANG_ENABLE_MODULES - YES - CLANG_ENABLE_OBJC_ARC - YES - CLANG_WARN_BOOL_CONVERSION - YES - CLANG_WARN_CONSTANT_CONVERSION - YES - CLANG_WARN_DIRECT_OBJC_ISA_USAGE - YES - CLANG_WARN_EMPTY_BODY - YES - CLANG_WARN_ENUM_CONVERSION - YES - CLANG_WARN_INT_CONVERSION - YES - CLANG_WARN_OBJC_ROOT_CLASS - YES - CLANG_WARN_UNREACHABLE_CODE - YES - CLANG_WARN__DUPLICATE_METHOD_MATCH - YES - COPY_PHASE_STRIP - NO - ENABLE_TESTABILITY - YES - GCC_C_LANGUAGE_STANDARD - gnu99 - GCC_DYNAMIC_NO_PIC - NO - GCC_OPTIMIZATION_LEVEL - 0 - GCC_PREPROCESSOR_DEFINITIONS - - POD_CONFIGURATION_DEBUG=1 - DEBUG=1 - $(inherited) - - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_WARN_64_TO_32_BIT_CONVERSION - YES - GCC_WARN_ABOUT_RETURN_TYPE - YES - GCC_WARN_UNDECLARED_SELECTOR - YES - GCC_WARN_UNINITIALIZED_AUTOS - YES - GCC_WARN_UNUSED_FUNCTION - YES - GCC_WARN_UNUSED_VARIABLE - YES - IPHONEOS_DEPLOYMENT_TARGET - 10.1 - ONLY_ACTIVE_ARCH - YES - STRIP_INSTALLED_PRODUCT - NO - SYMROOT - ${SRCROOT}/../build - - isa - XCBuildConfiguration - name - Debug - - F3AD73F1D54BF60DA02355CE5A21FA16 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBIncrementOperation.h - sourceTree - <group> - - F4617097DA425543B87443A7A46D1435 - - fileRef - 76F019AEFAAA026387FFE4B2EAAB85BF - isa - PBXBuildFile - - F4EE21856B1C169BE9184A2EA743CFD2 - - fileRef - 76F019AEFAAA026387FFE4B2EAAB85BF - isa - PBXBuildFile - - F6C5E77E7BA280D1BE48CA709C576F5B - - fileRef - D93EDF7C2DF4DC36BAA15CDA9B8AEE7E - isa - PBXBuildFile - settings - - ATTRIBUTES - - Public - - - - F7B9716B020E8676303C030381D2FB51 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Pods-ConfirmPushNotificationTests.release.xcconfig - sourceTree - <group> - - F82159F38E0FD3A08904E7FB2CB11935 - - fileRef - 84B4B5DAFA9291BC8264BA3526AF7576 - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - FA8D02673B4998C2E2CBCDE411868781 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBRichPushView.h - sourceTree - <group> - - FABEED1F9A8D9C6E12A5749C8DBBBD2F - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMBDeleteOperation.h - sourceTree - <group> - - FAC0557BC6CF99C34CBBD4B250A3B26A - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - NCMB.h - sourceTree - <group> - - FDCBF29280C898BF150D4BE758DA0388 - - children - - 9F19CB7A1FCB15AA745546B983E93365 - 27B77466CBDB8901729644D684EDD976 - FA8D02673B4998C2E2CBCDE411868781 - 05B07CCDC830F45E3F8B10E7A37D236E - - isa - PBXGroup - name - NCMBRichPush - path - NCMBRichPush - sourceTree - <group> - - FE2310EC7C28E1F7836865867FE1CC39 - - isa - PBXTargetDependency - name - NCMB - target - 1889F13D712980587FAE910B401CAE83 - targetProxy - 3FB240E1BF08DFBF337B452F96891FF6 - - FF529FE346722619E9233EF49800AF70 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBAddUniqueOperation.m - sourceTree - <group> - - FFC21BD40B12D479870EC42587300663 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - NCMBRole.m - sourceTree - <group> - - - rootObject - D41D8CD98F00B204E9800998ECF8427E - - diff --git a/examples/ConfirmPushNotification/Pods/Target Support Files/NCMB/NCMB-dummy.m b/examples/ConfirmPushNotification/Pods/Target Support Files/NCMB/NCMB-dummy.m deleted file mode 100644 index 2273716d..00000000 --- a/examples/ConfirmPushNotification/Pods/Target Support Files/NCMB/NCMB-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_NCMB : NSObject -@end -@implementation PodsDummy_NCMB -@end diff --git a/examples/ConfirmPushNotification/Pods/Target Support Files/NCMB/NCMB-prefix.pch b/examples/ConfirmPushNotification/Pods/Target Support Files/NCMB/NCMB-prefix.pch deleted file mode 100644 index aa992a4a..00000000 --- a/examples/ConfirmPushNotification/Pods/Target Support Files/NCMB/NCMB-prefix.pch +++ /dev/null @@ -1,4 +0,0 @@ -#ifdef __OBJC__ -#import -#endif - diff --git a/examples/ConfirmPushNotification/Pods/Target Support Files/NCMB/NCMB.xcconfig b/examples/ConfirmPushNotification/Pods/Target Support Files/NCMB/NCMB.xcconfig deleted file mode 100644 index 5cf6535c..00000000 --- a/examples/ConfirmPushNotification/Pods/Target Support Files/NCMB/NCMB.xcconfig +++ /dev/null @@ -1,9 +0,0 @@ -CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/NCMB -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/NCMB" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/NCMB" -OTHER_LDFLAGS = -framework "AudioToolbox" -framework "Foundation" -framework "MobileCoreServices" -framework "SystemConfiguration" -framework "UIKit" -PODS_BUILD_DIR = $BUILD_DIR -PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT} -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES diff --git a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification-acknowledgements.markdown b/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification-acknowledgements.markdown deleted file mode 100644 index 272d58fe..00000000 --- a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification-acknowledgements.markdown +++ /dev/null @@ -1,870 +0,0 @@ -# Acknowledgements -This application makes use of the following third party libraries: - -## NCMB - - Copyright 2014 NIFTY Corporation All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -Part of this project, itself uses ios-oauthconsumer project.(https://github.com/couchbaselabs/ios-oauthconsumer) -And it is licensed under the MIT license. See the bottom of LICENSE file for the details. - - - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - - -NSMutableURLRequest+Parameters.h - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - - -NSMutableURLRequest+Parameters.m - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -NSString+URLEncoding.h - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -NSString+URLEncoding.m - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -NSURL+Base.h -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -NSURL+Base.m -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -Base64Transcoder.c -Base64Test - -Created by Jonathan Wight on Tue Mar 18 2003. -Copyright (c) 2003 Toxic Software. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - - - -Base64Transcoder.h -Base64Test - -Created by Jonathan Wight on Tue Mar 18 2003. -Copyright (c) 2003 Toxic Software. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - - - -hmac.c -OAuthConsumer - -Created by Jonathan Wight on 4/8/8. -Copyright 2008 Jonathan Wight. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -hmac.h -OAuthConsumer - -Created by Jonathan Wight on 4/8/8. -Copyright 2008 Jonathan Wight. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -SHA-1 in C -By Steve Reid -100% Public Domain -Test Vectors (from FIPS PUB 180-1) -"abc" -A9993E36 4706816A BA3E2571 7850C26C 9CD0D89D -"abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq" -84983E44 1C3BD26E BAAE4AA1 F95129E5 E54670F1 -A million repetitions of "a" -34AA973C D4C4DAA4 F61EEB2B DBAD2731 6534016F - - - -OAConsumer.h -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OAConsumer.m -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OADataFetcher.h -OAuthConsumer - -Created by Jon Crosby on 11/5/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OADataFetcher.m -OAuthConsumer - -Created by Jon Crosby on 11/5/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OAHMAC_SHA1SignatureProvider.h -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OAHMAC_SHA1SignatureProvider.m -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OAMutableURLRequest.h -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OAMutableURLRequest.m -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OARequestParameter.h -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - - -OARequestParameter.m -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OAServiceTicket.h -OAuthConsumer - -Created by Jon Crosby on 11/5/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OAServiceTicket.m -OAuthConsumer - -Created by Jon Crosby on 11/5/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OASignatureProviding.h - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OAToken.h -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OAToken.m -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - - -Generated by CocoaPods - https://cocoapods.org diff --git a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification-acknowledgements.plist b/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification-acknowledgements.plist deleted file mode 100644 index eaaac961..00000000 --- a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification-acknowledgements.plist +++ /dev/null @@ -1,900 +0,0 @@ - - - - - PreferenceSpecifiers - - - FooterText - This application makes use of the following third party libraries: - Title - Acknowledgements - Type - PSGroupSpecifier - - - FooterText - Copyright 2014 NIFTY Corporation All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -Part of this project, itself uses ios-oauthconsumer project.(https://github.com/couchbaselabs/ios-oauthconsumer) -And it is licensed under the MIT license. See the bottom of LICENSE file for the details. - - - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - - -NSMutableURLRequest+Parameters.h - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - - -NSMutableURLRequest+Parameters.m - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -NSString+URLEncoding.h - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -NSString+URLEncoding.m - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -NSURL+Base.h -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -NSURL+Base.m -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -Base64Transcoder.c -Base64Test - -Created by Jonathan Wight on Tue Mar 18 2003. -Copyright (c) 2003 Toxic Software. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - - - -Base64Transcoder.h -Base64Test - -Created by Jonathan Wight on Tue Mar 18 2003. -Copyright (c) 2003 Toxic Software. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - - - -hmac.c -OAuthConsumer - -Created by Jonathan Wight on 4/8/8. -Copyright 2008 Jonathan Wight. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -hmac.h -OAuthConsumer - -Created by Jonathan Wight on 4/8/8. -Copyright 2008 Jonathan Wight. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -SHA-1 in C -By Steve Reid <steve@edmweb.com> -100% Public Domain -Test Vectors (from FIPS PUB 180-1) -"abc" -A9993E36 4706816A BA3E2571 7850C26C 9CD0D89D -"abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq" -84983E44 1C3BD26E BAAE4AA1 F95129E5 E54670F1 -A million repetitions of "a" -34AA973C D4C4DAA4 F61EEB2B DBAD2731 6534016F - - - -OAConsumer.h -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OAConsumer.m -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OADataFetcher.h -OAuthConsumer - -Created by Jon Crosby on 11/5/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OADataFetcher.m -OAuthConsumer - -Created by Jon Crosby on 11/5/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OAHMAC_SHA1SignatureProvider.h -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OAHMAC_SHA1SignatureProvider.m -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OAMutableURLRequest.h -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OAMutableURLRequest.m -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OARequestParameter.h -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - - -OARequestParameter.m -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OAServiceTicket.h -OAuthConsumer - -Created by Jon Crosby on 11/5/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OAServiceTicket.m -OAuthConsumer - -Created by Jon Crosby on 11/5/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OASignatureProviding.h - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OAToken.h -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -OAToken.m -OAuthConsumer - -Created by Jon Crosby on 10/19/07. -Copyright 2007 Kaboomerang LLC. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - - - Title - NCMB - Type - PSGroupSpecifier - - - FooterText - Generated by CocoaPods - https://cocoapods.org - Title - - Type - PSGroupSpecifier - - - StringsTable - Acknowledgements - Title - Acknowledgements - - diff --git a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification-dummy.m b/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification-dummy.m deleted file mode 100644 index 735dc5db..00000000 --- a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_ConfirmPushNotification : NSObject -@end -@implementation PodsDummy_Pods_ConfirmPushNotification -@end diff --git a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification-frameworks.sh b/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification-frameworks.sh deleted file mode 100755 index 893c16a6..00000000 --- a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification-frameworks.sh +++ /dev/null @@ -1,84 +0,0 @@ -#!/bin/sh -set -e - -echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" -mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - -SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" - -install_framework() -{ - if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then - local source="${BUILT_PRODUCTS_DIR}/$1" - elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then - local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" - elif [ -r "$1" ]; then - local source="$1" - fi - - local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - - if [ -L "${source}" ]; then - echo "Symlinked..." - source="$(readlink "${source}")" - fi - - # use filter instead of exclude so missing patterns dont' throw errors - echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" - rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" - - local basename - basename="$(basename -s .framework "$1")" - binary="${destination}/${basename}.framework/${basename}" - if ! [ -r "$binary" ]; then - binary="${destination}/${basename}" - fi - - # Strip invalid architectures so "fat" simulator / device frameworks work on device - if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then - strip_invalid_archs "$binary" - fi - - # Resign the code if required by the build settings to avoid unstable apps - code_sign_if_enabled "${destination}/$(basename "$1")" - - # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. - if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then - local swift_runtime_libs - swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) - for lib in $swift_runtime_libs; do - echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" - rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" - code_sign_if_enabled "${destination}/${lib}" - done - fi -} - -# Signs a framework with the provided identity -code_sign_if_enabled() { - if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then - # Use the current code_sign_identitiy - echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" - echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\"" - /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1" - fi -} - -# Strip invalid architectures -strip_invalid_archs() { - binary="$1" - # Get architectures for current file - archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" - stripped="" - for arch in $archs; do - if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then - # Strip non-valid architectures in-place - lipo -remove "$arch" -output "$binary" "$binary" || exit 1 - stripped="$stripped $arch" - fi - done - if [[ "$stripped" ]]; then - echo "Stripped $binary of architectures:$stripped" - fi -} - diff --git a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification-resources.sh b/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification-resources.sh deleted file mode 100755 index e768f929..00000000 --- a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification-resources.sh +++ /dev/null @@ -1,102 +0,0 @@ -#!/bin/sh -set -e - -mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" - -RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt -> "$RESOURCES_TO_COPY" - -XCASSET_FILES=() - -case "${TARGETED_DEVICE_FAMILY}" in - 1,2) - TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" - ;; - 1) - TARGET_DEVICE_ARGS="--target-device iphone" - ;; - 2) - TARGET_DEVICE_ARGS="--target-device ipad" - ;; - *) - TARGET_DEVICE_ARGS="--target-device mac" - ;; -esac - -realpath() { - DIRECTORY="$(cd "${1%/*}" && pwd)" - FILENAME="${1##*/}" - echo "$DIRECTORY/$FILENAME" -} - -install_resource() -{ - if [[ "$1" = /* ]] ; then - RESOURCE_PATH="$1" - else - RESOURCE_PATH="${PODS_ROOT}/$1" - fi - if [[ ! -e "$RESOURCE_PATH" ]] ; then - cat << EOM -error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. -EOM - exit 1 - fi - case $RESOURCE_PATH in - *.storyboard) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" - ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} - ;; - *.xib) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT}" - ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" - ;; - *.framework) - echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - ;; - *.xcdatamodel) - echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" - xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" - ;; - *.xcdatamodeld) - echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" - xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" - ;; - *.xcmappingmodel) - echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" - xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" - ;; - *.xcassets) - ABSOLUTE_XCASSET_FILE=$(realpath "$RESOURCE_PATH") - XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") - ;; - *) - echo "$RESOURCE_PATH" - echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" - ;; - esac -} - -mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then - mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" - rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -fi -rm -f "$RESOURCES_TO_COPY" - -if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] -then - # Find all other xcassets (this unfortunately includes those of path pods and other targets). - OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) - while read line; do - if [[ $line != "`realpath $PODS_ROOT`*" ]]; then - XCASSET_FILES+=("$line") - fi - done <<<"$OTHER_XCASSETS" - - printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -fi diff --git a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification.debug.xcconfig b/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification.debug.xcconfig deleted file mode 100644 index 5a7db129..00000000 --- a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification.debug.xcconfig +++ /dev/null @@ -1,8 +0,0 @@ -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/NCMB" -LIBRARY_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/NCMB" -OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/NCMB" -OTHER_LDFLAGS = $(inherited) -ObjC -l"NCMB" -framework "AudioToolbox" -framework "Foundation" -framework "MobileCoreServices" -framework "SystemConfiguration" -framework "UIKit" -PODS_BUILD_DIR = $BUILD_DIR -PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT}/Pods diff --git a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification.release.xcconfig b/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification.release.xcconfig deleted file mode 100644 index 5a7db129..00000000 --- a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotification/Pods-ConfirmPushNotification.release.xcconfig +++ /dev/null @@ -1,8 +0,0 @@ -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/NCMB" -LIBRARY_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/NCMB" -OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/NCMB" -OTHER_LDFLAGS = $(inherited) -ObjC -l"NCMB" -framework "AudioToolbox" -framework "Foundation" -framework "MobileCoreServices" -framework "SystemConfiguration" -framework "UIKit" -PODS_BUILD_DIR = $BUILD_DIR -PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT}/Pods diff --git a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests-acknowledgements.markdown b/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests-acknowledgements.markdown deleted file mode 100644 index 102af753..00000000 --- a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests-acknowledgements.markdown +++ /dev/null @@ -1,3 +0,0 @@ -# Acknowledgements -This application makes use of the following third party libraries: -Generated by CocoaPods - https://cocoapods.org diff --git a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests-acknowledgements.plist b/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests-acknowledgements.plist deleted file mode 100644 index 7acbad1e..00000000 --- a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests-acknowledgements.plist +++ /dev/null @@ -1,29 +0,0 @@ - - - - - PreferenceSpecifiers - - - FooterText - This application makes use of the following third party libraries: - Title - Acknowledgements - Type - PSGroupSpecifier - - - FooterText - Generated by CocoaPods - https://cocoapods.org - Title - - Type - PSGroupSpecifier - - - StringsTable - Acknowledgements - Title - Acknowledgements - - diff --git a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests-dummy.m b/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests-dummy.m deleted file mode 100644 index 028420ca..00000000 --- a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_ConfirmPushNotificationTests : NSObject -@end -@implementation PodsDummy_Pods_ConfirmPushNotificationTests -@end diff --git a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests-frameworks.sh b/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests-frameworks.sh deleted file mode 100755 index 893c16a6..00000000 --- a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests-frameworks.sh +++ /dev/null @@ -1,84 +0,0 @@ -#!/bin/sh -set -e - -echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" -mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - -SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" - -install_framework() -{ - if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then - local source="${BUILT_PRODUCTS_DIR}/$1" - elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then - local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" - elif [ -r "$1" ]; then - local source="$1" - fi - - local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - - if [ -L "${source}" ]; then - echo "Symlinked..." - source="$(readlink "${source}")" - fi - - # use filter instead of exclude so missing patterns dont' throw errors - echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" - rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" - - local basename - basename="$(basename -s .framework "$1")" - binary="${destination}/${basename}.framework/${basename}" - if ! [ -r "$binary" ]; then - binary="${destination}/${basename}" - fi - - # Strip invalid architectures so "fat" simulator / device frameworks work on device - if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then - strip_invalid_archs "$binary" - fi - - # Resign the code if required by the build settings to avoid unstable apps - code_sign_if_enabled "${destination}/$(basename "$1")" - - # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. - if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then - local swift_runtime_libs - swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) - for lib in $swift_runtime_libs; do - echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" - rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" - code_sign_if_enabled "${destination}/${lib}" - done - fi -} - -# Signs a framework with the provided identity -code_sign_if_enabled() { - if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then - # Use the current code_sign_identitiy - echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" - echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\"" - /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1" - fi -} - -# Strip invalid architectures -strip_invalid_archs() { - binary="$1" - # Get architectures for current file - archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" - stripped="" - for arch in $archs; do - if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then - # Strip non-valid architectures in-place - lipo -remove "$arch" -output "$binary" "$binary" || exit 1 - stripped="$stripped $arch" - fi - done - if [[ "$stripped" ]]; then - echo "Stripped $binary of architectures:$stripped" - fi -} - diff --git a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests-resources.sh b/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests-resources.sh deleted file mode 100755 index e768f929..00000000 --- a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests-resources.sh +++ /dev/null @@ -1,102 +0,0 @@ -#!/bin/sh -set -e - -mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" - -RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt -> "$RESOURCES_TO_COPY" - -XCASSET_FILES=() - -case "${TARGETED_DEVICE_FAMILY}" in - 1,2) - TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" - ;; - 1) - TARGET_DEVICE_ARGS="--target-device iphone" - ;; - 2) - TARGET_DEVICE_ARGS="--target-device ipad" - ;; - *) - TARGET_DEVICE_ARGS="--target-device mac" - ;; -esac - -realpath() { - DIRECTORY="$(cd "${1%/*}" && pwd)" - FILENAME="${1##*/}" - echo "$DIRECTORY/$FILENAME" -} - -install_resource() -{ - if [[ "$1" = /* ]] ; then - RESOURCE_PATH="$1" - else - RESOURCE_PATH="${PODS_ROOT}/$1" - fi - if [[ ! -e "$RESOURCE_PATH" ]] ; then - cat << EOM -error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. -EOM - exit 1 - fi - case $RESOURCE_PATH in - *.storyboard) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" - ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} - ;; - *.xib) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT}" - ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" - ;; - *.framework) - echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - ;; - *.xcdatamodel) - echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" - xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" - ;; - *.xcdatamodeld) - echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" - xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" - ;; - *.xcmappingmodel) - echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" - xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" - ;; - *.xcassets) - ABSOLUTE_XCASSET_FILE=$(realpath "$RESOURCE_PATH") - XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") - ;; - *) - echo "$RESOURCE_PATH" - echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" - ;; - esac -} - -mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then - mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" - rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -fi -rm -f "$RESOURCES_TO_COPY" - -if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] -then - # Find all other xcassets (this unfortunately includes those of path pods and other targets). - OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) - while read line; do - if [[ $line != "`realpath $PODS_ROOT`*" ]]; then - XCASSET_FILES+=("$line") - fi - done <<<"$OTHER_XCASSETS" - - printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -fi diff --git a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests.debug.xcconfig b/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests.debug.xcconfig deleted file mode 100644 index 0ffef431..00000000 --- a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests.debug.xcconfig +++ /dev/null @@ -1,7 +0,0 @@ -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/NCMB" -OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/NCMB" -OTHER_LDFLAGS = $(inherited) -ObjC -PODS_BUILD_DIR = $BUILD_DIR -PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT}/Pods diff --git a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests.release.xcconfig b/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests.release.xcconfig deleted file mode 100644 index 0ffef431..00000000 --- a/examples/ConfirmPushNotification/Pods/Target Support Files/Pods-ConfirmPushNotificationTests/Pods-ConfirmPushNotificationTests.release.xcconfig +++ /dev/null @@ -1,7 +0,0 @@ -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/NCMB" -OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/NCMB" -OTHER_LDFLAGS = $(inherited) -ObjC -PODS_BUILD_DIR = $BUILD_DIR -PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT}/Pods diff --git a/examples/ContainedInArraySample/ContainedInArraySample.xcodeproj/project.pbxproj b/examples/ContainedInArraySample/ContainedInArraySample.xcodeproj/project.pbxproj deleted file mode 100644 index d391cb70..00000000 --- a/examples/ContainedInArraySample/ContainedInArraySample.xcodeproj/project.pbxproj +++ /dev/null @@ -1,306 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 9D63352A1DFE7CA700B80A53 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D6335291DFE7CA700B80A53 /* AppDelegate.swift */; }; - 9D63352C1DFE7CA700B80A53 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D63352B1DFE7CA700B80A53 /* ViewController.swift */; }; - 9D63352F1DFE7CA700B80A53 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 9D63352D1DFE7CA700B80A53 /* Main.storyboard */; }; - 9D6335311DFE7CA700B80A53 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9D6335301DFE7CA700B80A53 /* Assets.xcassets */; }; - 9D6335341DFE7CA700B80A53 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 9D6335321DFE7CA700B80A53 /* LaunchScreen.storyboard */; }; -/* End PBXBuildFile section */ - -/* Begin PBXFileReference section */ - 9D6335261DFE7CA700B80A53 /* ContainedInArraySample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ContainedInArraySample.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 9D6335291DFE7CA700B80A53 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; - 9D63352B1DFE7CA700B80A53 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; - 9D63352E1DFE7CA700B80A53 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; - 9D6335301DFE7CA700B80A53 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; - 9D6335331DFE7CA700B80A53 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; - 9D6335351DFE7CA700B80A53 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 9D6335231DFE7CA700B80A53 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 9D63351D1DFE7CA700B80A53 = { - isa = PBXGroup; - children = ( - 9D6335281DFE7CA700B80A53 /* ContainedInArraySample */, - 9D6335271DFE7CA700B80A53 /* Products */, - ); - sourceTree = ""; - }; - 9D6335271DFE7CA700B80A53 /* Products */ = { - isa = PBXGroup; - children = ( - 9D6335261DFE7CA700B80A53 /* ContainedInArraySample.app */, - ); - name = Products; - sourceTree = ""; - }; - 9D6335281DFE7CA700B80A53 /* ContainedInArraySample */ = { - isa = PBXGroup; - children = ( - 9D6335291DFE7CA700B80A53 /* AppDelegate.swift */, - 9D63352B1DFE7CA700B80A53 /* ViewController.swift */, - 9D63352D1DFE7CA700B80A53 /* Main.storyboard */, - 9D6335301DFE7CA700B80A53 /* Assets.xcassets */, - 9D6335321DFE7CA700B80A53 /* LaunchScreen.storyboard */, - 9D6335351DFE7CA700B80A53 /* Info.plist */, - ); - path = ContainedInArraySample; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 9D6335251DFE7CA700B80A53 /* ContainedInArraySample */ = { - isa = PBXNativeTarget; - buildConfigurationList = 9D6335381DFE7CA700B80A53 /* Build configuration list for PBXNativeTarget "ContainedInArraySample" */; - buildPhases = ( - 9D6335221DFE7CA700B80A53 /* Sources */, - 9D6335231DFE7CA700B80A53 /* Frameworks */, - 9D6335241DFE7CA700B80A53 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = ContainedInArraySample; - productName = ContainedInArraySample; - productReference = 9D6335261DFE7CA700B80A53 /* ContainedInArraySample.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 9D63351E1DFE7CA700B80A53 /* Project object */ = { - isa = PBXProject; - attributes = { - LastSwiftUpdateCheck = 0810; - LastUpgradeCheck = 0810; - ORGANIZATIONNAME = Nifty; - TargetAttributes = { - 9D6335251DFE7CA700B80A53 = { - CreatedOnToolsVersion = 8.1; - ProvisioningStyle = Automatic; - }; - }; - }; - buildConfigurationList = 9D6335211DFE7CA700B80A53 /* Build configuration list for PBXProject "ContainedInArraySample" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = 9D63351D1DFE7CA700B80A53; - productRefGroup = 9D6335271DFE7CA700B80A53 /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 9D6335251DFE7CA700B80A53 /* ContainedInArraySample */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 9D6335241DFE7CA700B80A53 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 9D6335341DFE7CA700B80A53 /* LaunchScreen.storyboard in Resources */, - 9D6335311DFE7CA700B80A53 /* Assets.xcassets in Resources */, - 9D63352F1DFE7CA700B80A53 /* Main.storyboard in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 9D6335221DFE7CA700B80A53 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 9D63352C1DFE7CA700B80A53 /* ViewController.swift in Sources */, - 9D63352A1DFE7CA700B80A53 /* AppDelegate.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXVariantGroup section */ - 9D63352D1DFE7CA700B80A53 /* Main.storyboard */ = { - isa = PBXVariantGroup; - children = ( - 9D63352E1DFE7CA700B80A53 /* Base */, - ); - name = Main.storyboard; - sourceTree = ""; - }; - 9D6335321DFE7CA700B80A53 /* LaunchScreen.storyboard */ = { - isa = PBXVariantGroup; - children = ( - 9D6335331DFE7CA700B80A53 /* Base */, - ); - name = LaunchScreen.storyboard; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 9D6335361DFE7CA700B80A53 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_SUSPICIOUS_MOVES = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 10.1; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = iphoneos; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 9D6335371DFE7CA700B80A53 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_SUSPICIOUS_MOVES = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 10.1; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 9D6335391DFE7CA700B80A53 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - INFOPLIST_FILE = ContainedInArraySample/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = Nifty.ContainedInArraySample; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 3.0; - }; - name = Debug; - }; - 9D63353A1DFE7CA700B80A53 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - INFOPLIST_FILE = ContainedInArraySample/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = Nifty.ContainedInArraySample; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 3.0; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 9D6335211DFE7CA700B80A53 /* Build configuration list for PBXProject "ContainedInArraySample" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 9D6335361DFE7CA700B80A53 /* Debug */, - 9D6335371DFE7CA700B80A53 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 9D6335381DFE7CA700B80A53 /* Build configuration list for PBXNativeTarget "ContainedInArraySample" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 9D6335391DFE7CA700B80A53 /* Debug */, - 9D63353A1DFE7CA700B80A53 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; -/* End XCConfigurationList section */ - }; - rootObject = 9D63351E1DFE7CA700B80A53 /* Project object */; -} diff --git a/examples/ContainedInArraySample/ContainedInArraySample.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/examples/ContainedInArraySample/ContainedInArraySample.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 23555f78..00000000 --- a/examples/ContainedInArraySample/ContainedInArraySample.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/examples/ContainedInArraySample/ContainedInArraySample/AppDelegate.swift b/examples/ContainedInArraySample/ContainedInArraySample/AppDelegate.swift deleted file mode 100644 index c82e8807..00000000 --- a/examples/ContainedInArraySample/ContainedInArraySample/AppDelegate.swift +++ /dev/null @@ -1,57 +0,0 @@ -// -// AppDelegate.swift -// ContainedInArraySample -// -// Created by oono on 2016/12/12. -// Copyright © 2017年 FUJITSU CLOUD TECHNOLOGIES LIMITED. All rights reserved. -// - -import UIKit -import NCMB - -@UIApplicationMain -class AppDelegate: UIResponder, UIApplicationDelegate { - - var window: UIWindow? - - - func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { - // Override point for customization after application launch. - NCMB.setApplicationKey("YOUR_APP_KEY", - clientKey: "YOUR_CLIENT_KEY") - - let query = NCMBQuery.init(className: "test") - - query?.whereKey("key", containedIn: ["value"]) - query?.whereKey("key", containedInArrayTo: ["value"]) - query?.whereKey("key", notContainedIn: ["value"]) - query?.whereKey("key", notContainedInArrayTo: ["value"]) - query?.whereKey("key", containsAllObjectsInArrayTo: ["value"]) - - return true - } - - func applicationWillResignActive(_ application: UIApplication) { - // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. - // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game. - } - - func applicationDidEnterBackground(_ application: UIApplication) { - // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. - // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. - } - - func applicationWillEnterForeground(_ application: UIApplication) { - // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background. - } - - func applicationDidBecomeActive(_ application: UIApplication) { - // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. - } - - func applicationWillTerminate(_ application: UIApplication) { - // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. - } - - -} diff --git a/examples/ContainedInArraySample/ContainedInArraySample/Assets.xcassets/AppIcon.appiconset/Contents.json b/examples/ContainedInArraySample/ContainedInArraySample/Assets.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index 36d2c80d..00000000 --- a/examples/ContainedInArraySample/ContainedInArraySample/Assets.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "images" : [ - { - "idiom" : "iphone", - "size" : "29x29", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "29x29", - "scale" : "3x" - }, - { - "idiom" : "iphone", - "size" : "40x40", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "40x40", - "scale" : "3x" - }, - { - "idiom" : "iphone", - "size" : "60x60", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "60x60", - "scale" : "3x" - }, - { - "idiom" : "ipad", - "size" : "29x29", - "scale" : "1x" - }, - { - "idiom" : "ipad", - "size" : "29x29", - "scale" : "2x" - }, - { - "idiom" : "ipad", - "size" : "40x40", - "scale" : "1x" - }, - { - "idiom" : "ipad", - "size" : "40x40", - "scale" : "2x" - }, - { - "idiom" : "ipad", - "size" : "76x76", - "scale" : "1x" - }, - { - "idiom" : "ipad", - "size" : "76x76", - "scale" : "2x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} \ No newline at end of file diff --git a/examples/ContainedInArraySample/ContainedInArraySample/Base.lproj/LaunchScreen.storyboard b/examples/ContainedInArraySample/ContainedInArraySample/Base.lproj/LaunchScreen.storyboard deleted file mode 100644 index fdf3f97d..00000000 --- a/examples/ContainedInArraySample/ContainedInArraySample/Base.lproj/LaunchScreen.storyboard +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/ContainedInArraySample/ContainedInArraySample/Base.lproj/Main.storyboard b/examples/ContainedInArraySample/ContainedInArraySample/Base.lproj/Main.storyboard deleted file mode 100644 index 273375fc..00000000 --- a/examples/ContainedInArraySample/ContainedInArraySample/Base.lproj/Main.storyboard +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/ContainedInArraySample/ContainedInArraySample/Info.plist b/examples/ContainedInArraySample/ContainedInArraySample/Info.plist deleted file mode 100644 index d0524738..00000000 --- a/examples/ContainedInArraySample/ContainedInArraySample/Info.plist +++ /dev/null @@ -1,45 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - APPL - CFBundleShortVersionString - 1.0 - CFBundleVersion - 1 - LSRequiresIPhoneOS - - UILaunchStoryboardName - LaunchScreen - UIMainStoryboardFile - Main - UIRequiredDeviceCapabilities - - armv7 - - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UISupportedInterfaceOrientations~ipad - - UIInterfaceOrientationPortrait - UIInterfaceOrientationPortraitUpsideDown - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - - diff --git a/examples/ContainedInArraySample/ContainedInArraySample/ViewController.swift b/examples/ContainedInArraySample/ContainedInArraySample/ViewController.swift deleted file mode 100644 index ae33801e..00000000 --- a/examples/ContainedInArraySample/ContainedInArraySample/ViewController.swift +++ /dev/null @@ -1,24 +0,0 @@ -// -// ViewController.swift -// ContainedInArraySample -// -// Created by oono on 2016/12/12. -// Copyright © 2017年 FUJITSU CLOUD TECHNOLOGIES LIMITED. All rights reserved. -// - -import UIKit - -class ViewController: UIViewController { - - override func viewDidLoad() { - super.viewDidLoad() - // Do any additional setup after loading the view, typically from a nib. - } - - override func didReceiveMemoryWarning() { - super.didReceiveMemoryWarning() - // Dispose of any resources that can be recreated. - } - - -} diff --git a/examples/ContainedInArraySample/Podfile b/examples/ContainedInArraySample/Podfile deleted file mode 100644 index 8f89a701..00000000 --- a/examples/ContainedInArraySample/Podfile +++ /dev/null @@ -1,10 +0,0 @@ -# Uncomment this line to define a global platform for your project -platform :ios, '8.0' -# Uncomment this line if you're using Swift -use_frameworks! - -target 'ContainedInArraySample' do - pod 'NCMB', :path => '../../' -end - - diff --git a/examples/ScriptSample/.gitignore b/examples/ScriptSample/.gitignore deleted file mode 100644 index bfd61994..00000000 --- a/examples/ScriptSample/.gitignore +++ /dev/null @@ -1,35 +0,0 @@ -# Xcode -# -# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore - -## Build generated -build/ -DerivedData/ - -## Various settings -*.pbxuser -!default.pbxuser -*.mode1v3 -!default.mode1v3 -*.mode2v3 -!default.mode2v3 -*.perspectivev3 -!default.perspectivev3 -xcuserdata/ - -## Other -*.moved-aside -*.xccheckout -*.xcscmblueprint - -## Obj-C/Swift specific -*.hmap -*.ipa - -# CocoaPods -# -# We recommend against adding the Pods directory to your .gitignore. However -# you should judge for yourself, the pros and cons are mentioned at: -# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control -# -Pods/ diff --git a/examples/ScriptSample/Podfile b/examples/ScriptSample/Podfile deleted file mode 100644 index 762b9df9..00000000 --- a/examples/ScriptSample/Podfile +++ /dev/null @@ -1,13 +0,0 @@ -# Uncomment this line to define a global platform for your project -# platform :ios, '8.0' -# Uncomment this line if you're using Swift -# use_frameworks! - -target 'ScriptSample' do - pod 'NCMB', :path => '../../' -end - -target 'ScriptSampleTests' do - -end - diff --git a/examples/ScriptSample/README.md b/examples/ScriptSample/README.md deleted file mode 100644 index 25ba06bb..00000000 --- a/examples/ScriptSample/README.md +++ /dev/null @@ -1,71 +0,0 @@ -# Test in localhost - -## requirement - -- node.js -- express -- body-parser - -## create local server - -- create directory for local server project -- create app.js - -``` -var express = require('express'); -var bodyParser = require('body-parser'); - -var app = express(); - -app.use(bodyParser.json()); - -var moduleForGetMethod = require('./testScript_GET.js'); -var moduleForPostMethod = require('./testScript_POST.js'); -var moduleForPutMethod = require('./testScript_PUT.js'); -var moduleForDeleteMethod = require('./testScript_DELETE.js'); - -var apiVersion = "/2015-09-01"; -var servicePath = "/script"; - -app.get(apiVersion + servicePath + '/testScript_GET.js', moduleForGetMethod); -app.post(apiVersion + servicePath + '/testScript_POST.js', moduleForPostMethod); -app.put(apiVersion + servicePath + '/testScript_PUT.js', moduleForPutMethod); -app.delete(apiVersion + servicePath + '/testScript_DELETE.js', moduleForDeleteMethod); - -app.listen(3000, function () { - console.log('app listening on port 3000'); -}); -``` - -- copy test script(test_XXX.js) to directory of local server -- execute `node app.js` - -## access to local server from ScriptSample - -- set endpoint to local server in AppDelegate.m - -``` -- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { - // Override point for customization after application launch. - - [NCMB setApplicationKey:@"YOUR_APP_KEY" - clientKey:@"YOUR_CLIENT_KEY"]; - - NCMBScript *script = [NCMBScript scriptWithName:@"testScript_GET.js" - method:NCMBSCRIPT_GET - endpoint:@"http://localhost:3000"]; //endpoint of local server - - [script execute:@{@"name":@"Test"} - headers:nil - queries:@{@"objectId":@"testId"} - withBlock:^(NSData *data, NSError *error) { - if (error) { - NSLog(@"error:%@", error.description); - } else { - NSLog(@"data:%@", [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]); - } - }]; - - return YES; -} -``` diff --git a/examples/ScriptSample/ScriptSample.xcodeproj/project.pbxproj b/examples/ScriptSample/ScriptSample.xcodeproj/project.pbxproj deleted file mode 100644 index d436c99f..00000000 --- a/examples/ScriptSample/ScriptSample.xcodeproj/project.pbxproj +++ /dev/null @@ -1,554 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 0F3F2A535AEB2BE1B6633529 /* libPods-ScriptSampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 222A36092D44B26AE50DE883 /* libPods-ScriptSampleTests.a */; }; - 1E0726BE11FFF9ACA655E198 /* libPods-ScriptSample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F83C517C022B00D724BCF9C2 /* libPods-ScriptSample.a */; }; - 5DECD7261C58BAE40005060C /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DECD7251C58BAE40005060C /* main.m */; }; - 5DECD7291C58BAE40005060C /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DECD7281C58BAE40005060C /* AppDelegate.m */; }; - 5DECD72C1C58BAE40005060C /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DECD72B1C58BAE40005060C /* ViewController.m */; }; - 5DECD72F1C58BAE40005060C /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 5DECD72D1C58BAE40005060C /* Main.storyboard */; }; - 5DECD7311C58BAE40005060C /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 5DECD7301C58BAE40005060C /* Assets.xcassets */; }; - 5DECD7341C58BAE40005060C /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 5DECD7321C58BAE40005060C /* LaunchScreen.storyboard */; }; - 5DECD73F1C58BAE40005060C /* ScriptSampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DECD73E1C58BAE40005060C /* ScriptSampleTests.m */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 5DECD73B1C58BAE40005060C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 5DECD7191C58BAE40005060C /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5DECD7201C58BAE40005060C; - remoteInfo = ScriptSample; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXFileReference section */ - 08FE35A5B915B7ADE8AABDB8 /* Pods-ScriptSampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ScriptSampleTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-ScriptSampleTests/Pods-ScriptSampleTests.release.xcconfig"; sourceTree = ""; }; - 222A36092D44B26AE50DE883 /* libPods-ScriptSampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ScriptSampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 39222BFBEED07E8C95B0F9E3 /* Pods-ScriptSample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ScriptSample.debug.xcconfig"; path = "Pods/Target Support Files/Pods-ScriptSample/Pods-ScriptSample.debug.xcconfig"; sourceTree = ""; }; - 5DECD7211C58BAE40005060C /* ScriptSample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ScriptSample.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 5DECD7251C58BAE40005060C /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; - 5DECD7271C58BAE40005060C /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; - 5DECD7281C58BAE40005060C /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; - 5DECD72A1C58BAE40005060C /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = ""; }; - 5DECD72B1C58BAE40005060C /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = ""; }; - 5DECD72E1C58BAE40005060C /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; - 5DECD7301C58BAE40005060C /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; - 5DECD7331C58BAE40005060C /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; - 5DECD7351C58BAE40005060C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 5DECD73A1C58BAE40005060C /* ScriptSampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ScriptSampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; - 5DECD73E1C58BAE40005060C /* ScriptSampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ScriptSampleTests.m; sourceTree = ""; }; - 5DECD7401C58BAE40005060C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 614BDEEE527C2C7EE3BB4779 /* Pods-ScriptSampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ScriptSampleTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-ScriptSampleTests/Pods-ScriptSampleTests.debug.xcconfig"; sourceTree = ""; }; - F83C517C022B00D724BCF9C2 /* libPods-ScriptSample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ScriptSample.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F9E7413AA4BE338F37A09517 /* Pods-ScriptSample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ScriptSample.release.xcconfig"; path = "Pods/Target Support Files/Pods-ScriptSample/Pods-ScriptSample.release.xcconfig"; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 5DECD71E1C58BAE40005060C /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 1E0726BE11FFF9ACA655E198 /* libPods-ScriptSample.a in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5DECD7371C58BAE40005060C /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 0F3F2A535AEB2BE1B6633529 /* libPods-ScriptSampleTests.a in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 36FD37CE7F3AD239C862C98F /* Pods */ = { - isa = PBXGroup; - children = ( - 39222BFBEED07E8C95B0F9E3 /* Pods-ScriptSample.debug.xcconfig */, - F9E7413AA4BE338F37A09517 /* Pods-ScriptSample.release.xcconfig */, - 614BDEEE527C2C7EE3BB4779 /* Pods-ScriptSampleTests.debug.xcconfig */, - 08FE35A5B915B7ADE8AABDB8 /* Pods-ScriptSampleTests.release.xcconfig */, - ); - name = Pods; - sourceTree = ""; - }; - 402C544118BAC2F49ABE56B7 /* Frameworks */ = { - isa = PBXGroup; - children = ( - F83C517C022B00D724BCF9C2 /* libPods-ScriptSample.a */, - 222A36092D44B26AE50DE883 /* libPods-ScriptSampleTests.a */, - ); - name = Frameworks; - sourceTree = ""; - }; - 5DECD7181C58BAE40005060C = { - isa = PBXGroup; - children = ( - 5DECD7231C58BAE40005060C /* ScriptSample */, - 5DECD73D1C58BAE40005060C /* ScriptSampleTests */, - 5DECD7221C58BAE40005060C /* Products */, - 36FD37CE7F3AD239C862C98F /* Pods */, - 402C544118BAC2F49ABE56B7 /* Frameworks */, - ); - sourceTree = ""; - }; - 5DECD7221C58BAE40005060C /* Products */ = { - isa = PBXGroup; - children = ( - 5DECD7211C58BAE40005060C /* ScriptSample.app */, - 5DECD73A1C58BAE40005060C /* ScriptSampleTests.xctest */, - ); - name = Products; - sourceTree = ""; - }; - 5DECD7231C58BAE40005060C /* ScriptSample */ = { - isa = PBXGroup; - children = ( - 5DECD7271C58BAE40005060C /* AppDelegate.h */, - 5DECD7281C58BAE40005060C /* AppDelegate.m */, - 5DECD72A1C58BAE40005060C /* ViewController.h */, - 5DECD72B1C58BAE40005060C /* ViewController.m */, - 5DECD72D1C58BAE40005060C /* Main.storyboard */, - 5DECD7301C58BAE40005060C /* Assets.xcassets */, - 5DECD7321C58BAE40005060C /* LaunchScreen.storyboard */, - 5DECD7351C58BAE40005060C /* Info.plist */, - 5DECD7241C58BAE40005060C /* Supporting Files */, - ); - path = ScriptSample; - sourceTree = ""; - }; - 5DECD7241C58BAE40005060C /* Supporting Files */ = { - isa = PBXGroup; - children = ( - 5DECD7251C58BAE40005060C /* main.m */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; - 5DECD73D1C58BAE40005060C /* ScriptSampleTests */ = { - isa = PBXGroup; - children = ( - 5DECD73E1C58BAE40005060C /* ScriptSampleTests.m */, - 5DECD7401C58BAE40005060C /* Info.plist */, - ); - path = ScriptSampleTests; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 5DECD7201C58BAE40005060C /* ScriptSample */ = { - isa = PBXNativeTarget; - buildConfigurationList = 5DECD7431C58BAE40005060C /* Build configuration list for PBXNativeTarget "ScriptSample" */; - buildPhases = ( - 4394FA46F2BA6DC17ACA05DC /* Check Pods Manifest.lock */, - 5DECD71D1C58BAE40005060C /* Sources */, - 5DECD71E1C58BAE40005060C /* Frameworks */, - 5DECD71F1C58BAE40005060C /* Resources */, - 6B03A13510DE60DF0EDE314C /* Embed Pods Frameworks */, - 958CB8A5EC30FEF7689419BF /* Copy Pods Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = ScriptSample; - productName = ScriptSample; - productReference = 5DECD7211C58BAE40005060C /* ScriptSample.app */; - productType = "com.apple.product-type.application"; - }; - 5DECD7391C58BAE40005060C /* ScriptSampleTests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 5DECD7461C58BAE40005060C /* Build configuration list for PBXNativeTarget "ScriptSampleTests" */; - buildPhases = ( - 033330810098EDA697E02DD2 /* Check Pods Manifest.lock */, - 5DECD7361C58BAE40005060C /* Sources */, - 5DECD7371C58BAE40005060C /* Frameworks */, - 5DECD7381C58BAE40005060C /* Resources */, - D431EA627FB2734D2FF3E877 /* Embed Pods Frameworks */, - 92A7EC784A3A9B85EF3548CD /* Copy Pods Resources */, - ); - buildRules = ( - ); - dependencies = ( - 5DECD73C1C58BAE40005060C /* PBXTargetDependency */, - ); - name = ScriptSampleTests; - productName = ScriptSampleTests; - productReference = 5DECD73A1C58BAE40005060C /* ScriptSampleTests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 5DECD7191C58BAE40005060C /* Project object */ = { - isa = PBXProject; - attributes = { - LastUpgradeCheck = 0720; - ORGANIZATIONNAME = "NIFTY Corporation"; - TargetAttributes = { - 5DECD7201C58BAE40005060C = { - CreatedOnToolsVersion = 7.2; - }; - 5DECD7391C58BAE40005060C = { - CreatedOnToolsVersion = 7.2; - TestTargetID = 5DECD7201C58BAE40005060C; - }; - }; - }; - buildConfigurationList = 5DECD71C1C58BAE40005060C /* Build configuration list for PBXProject "ScriptSample" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = 5DECD7181C58BAE40005060C; - productRefGroup = 5DECD7221C58BAE40005060C /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 5DECD7201C58BAE40005060C /* ScriptSample */, - 5DECD7391C58BAE40005060C /* ScriptSampleTests */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 5DECD71F1C58BAE40005060C /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 5DECD7341C58BAE40005060C /* LaunchScreen.storyboard in Resources */, - 5DECD7311C58BAE40005060C /* Assets.xcassets in Resources */, - 5DECD72F1C58BAE40005060C /* Main.storyboard in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5DECD7381C58BAE40005060C /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXShellScriptBuildPhase section */ - 033330810098EDA697E02DD2 /* Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Check Pods Manifest.lock"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; - showEnvVarsInLog = 0; - }; - 4394FA46F2BA6DC17ACA05DC /* Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Check Pods Manifest.lock"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; - showEnvVarsInLog = 0; - }; - 6B03A13510DE60DF0EDE314C /* Embed Pods Frameworks */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Embed Pods Frameworks"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ScriptSample/Pods-ScriptSample-frameworks.sh\"\n"; - showEnvVarsInLog = 0; - }; - 92A7EC784A3A9B85EF3548CD /* Copy Pods Resources */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Copy Pods Resources"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ScriptSampleTests/Pods-ScriptSampleTests-resources.sh\"\n"; - showEnvVarsInLog = 0; - }; - 958CB8A5EC30FEF7689419BF /* Copy Pods Resources */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Copy Pods Resources"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ScriptSample/Pods-ScriptSample-resources.sh\"\n"; - showEnvVarsInLog = 0; - }; - D431EA627FB2734D2FF3E877 /* Embed Pods Frameworks */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Embed Pods Frameworks"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ScriptSampleTests/Pods-ScriptSampleTests-frameworks.sh\"\n"; - showEnvVarsInLog = 0; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 5DECD71D1C58BAE40005060C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 5DECD72C1C58BAE40005060C /* ViewController.m in Sources */, - 5DECD7291C58BAE40005060C /* AppDelegate.m in Sources */, - 5DECD7261C58BAE40005060C /* main.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5DECD7361C58BAE40005060C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 5DECD73F1C58BAE40005060C /* ScriptSampleTests.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 5DECD73C1C58BAE40005060C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 5DECD7201C58BAE40005060C /* ScriptSample */; - targetProxy = 5DECD73B1C58BAE40005060C /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin PBXVariantGroup section */ - 5DECD72D1C58BAE40005060C /* Main.storyboard */ = { - isa = PBXVariantGroup; - children = ( - 5DECD72E1C58BAE40005060C /* Base */, - ); - name = Main.storyboard; - sourceTree = ""; - }; - 5DECD7321C58BAE40005060C /* LaunchScreen.storyboard */ = { - isa = PBXVariantGroup; - children = ( - 5DECD7331C58BAE40005060C /* Base */, - ); - name = LaunchScreen.storyboard; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 5DECD7411C58BAE40005060C /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 9.2; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 5DECD7421C58BAE40005060C /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 9.2; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 5DECD7441C58BAE40005060C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 39222BFBEED07E8C95B0F9E3 /* Pods-ScriptSample.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - INFOPLIST_FILE = ScriptSample/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.nifty.cloud.mb.ScriptSample; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = Debug; - }; - 5DECD7451C58BAE40005060C /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F9E7413AA4BE338F37A09517 /* Pods-ScriptSample.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - INFOPLIST_FILE = ScriptSample/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.nifty.cloud.mb.ScriptSample; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = Release; - }; - 5DECD7471C58BAE40005060C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 614BDEEE527C2C7EE3BB4779 /* Pods-ScriptSampleTests.debug.xcconfig */; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - INFOPLIST_FILE = ScriptSampleTests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.nifty.cloud.mb.ScriptSampleTests; - PRODUCT_NAME = "$(TARGET_NAME)"; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ScriptSample.app/ScriptSample"; - }; - name = Debug; - }; - 5DECD7481C58BAE40005060C /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 08FE35A5B915B7ADE8AABDB8 /* Pods-ScriptSampleTests.release.xcconfig */; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - INFOPLIST_FILE = ScriptSampleTests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.nifty.cloud.mb.ScriptSampleTests; - PRODUCT_NAME = "$(TARGET_NAME)"; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ScriptSample.app/ScriptSample"; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 5DECD71C1C58BAE40005060C /* Build configuration list for PBXProject "ScriptSample" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 5DECD7411C58BAE40005060C /* Debug */, - 5DECD7421C58BAE40005060C /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 5DECD7431C58BAE40005060C /* Build configuration list for PBXNativeTarget "ScriptSample" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 5DECD7441C58BAE40005060C /* Debug */, - 5DECD7451C58BAE40005060C /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 5DECD7461C58BAE40005060C /* Build configuration list for PBXNativeTarget "ScriptSampleTests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 5DECD7471C58BAE40005060C /* Debug */, - 5DECD7481C58BAE40005060C /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 5DECD7191C58BAE40005060C /* Project object */; -} diff --git a/examples/ScriptSample/ScriptSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/examples/ScriptSample/ScriptSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index fd85f7f5..00000000 --- a/examples/ScriptSample/ScriptSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/examples/ScriptSample/ScriptSample.xcworkspace/contents.xcworkspacedata b/examples/ScriptSample/ScriptSample.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 96c19500..00000000 --- a/examples/ScriptSample/ScriptSample.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/examples/ScriptSample/ScriptSample/AppDelegate.h b/examples/ScriptSample/ScriptSample/AppDelegate.h deleted file mode 100644 index 831929c9..00000000 --- a/examples/ScriptSample/ScriptSample/AppDelegate.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - Copyright 2017 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - */ - -#import - -@interface AppDelegate : UIResponder - -@property (strong, nonatomic) UIWindow *window; - - -@end diff --git a/examples/ScriptSample/ScriptSample/AppDelegate.m b/examples/ScriptSample/ScriptSample/AppDelegate.m deleted file mode 100644 index 92b8d491..00000000 --- a/examples/ScriptSample/ScriptSample/AppDelegate.m +++ /dev/null @@ -1,73 +0,0 @@ -/* - Copyright 2017 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - */ - -#import "AppDelegate.h" -#import - -@interface AppDelegate () - -@end - -@implementation AppDelegate - - -- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { - // Override point for customization after application launch. - - [NCMB setApplicationKey:@"YOUR_APP_KEY" - clientKey:@"YOUR_CLIENT_KEY"]; - - NCMBScript *script = [NCMBScript scriptWithName:@"testScript_GET.js" - method:NCMBExecuteWithGetMethod - endpoint:@"http://localhost:3000"]; - - [script execute:@{@"name":@"Test"} - headers:nil - queries:@{@"objectId":@"testId"} - withBlock:^(NSData *data, NSError *error) { - if (error) { - NSLog(@"error:%@", error.description); - } else { - NSLog(@"data:%@", [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]); - } - }]; - - return YES; -} - -- (void)applicationWillResignActive:(UIApplication *)application { - // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. - // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. -} - -- (void)applicationDidEnterBackground:(UIApplication *)application { - // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. - // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. -} - -- (void)applicationWillEnterForeground:(UIApplication *)application { - // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. -} - -- (void)applicationDidBecomeActive:(UIApplication *)application { - // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. -} - -- (void)applicationWillTerminate:(UIApplication *)application { - // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. -} - -@end diff --git a/examples/ScriptSample/ScriptSample/Assets.xcassets/AppIcon.appiconset/Contents.json b/examples/ScriptSample/ScriptSample/Assets.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index 36d2c80d..00000000 --- a/examples/ScriptSample/ScriptSample/Assets.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "images" : [ - { - "idiom" : "iphone", - "size" : "29x29", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "29x29", - "scale" : "3x" - }, - { - "idiom" : "iphone", - "size" : "40x40", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "40x40", - "scale" : "3x" - }, - { - "idiom" : "iphone", - "size" : "60x60", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "60x60", - "scale" : "3x" - }, - { - "idiom" : "ipad", - "size" : "29x29", - "scale" : "1x" - }, - { - "idiom" : "ipad", - "size" : "29x29", - "scale" : "2x" - }, - { - "idiom" : "ipad", - "size" : "40x40", - "scale" : "1x" - }, - { - "idiom" : "ipad", - "size" : "40x40", - "scale" : "2x" - }, - { - "idiom" : "ipad", - "size" : "76x76", - "scale" : "1x" - }, - { - "idiom" : "ipad", - "size" : "76x76", - "scale" : "2x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} \ No newline at end of file diff --git a/examples/ScriptSample/ScriptSample/Base.lproj/LaunchScreen.storyboard b/examples/ScriptSample/ScriptSample/Base.lproj/LaunchScreen.storyboard deleted file mode 100644 index 2e721e18..00000000 --- a/examples/ScriptSample/ScriptSample/Base.lproj/LaunchScreen.storyboard +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/ScriptSample/ScriptSample/Base.lproj/Main.storyboard b/examples/ScriptSample/ScriptSample/Base.lproj/Main.storyboard deleted file mode 100644 index f56d2f3b..00000000 --- a/examples/ScriptSample/ScriptSample/Base.lproj/Main.storyboard +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/ScriptSample/ScriptSample/Info.plist b/examples/ScriptSample/ScriptSample/Info.plist deleted file mode 100644 index f3d8d448..00000000 --- a/examples/ScriptSample/ScriptSample/Info.plist +++ /dev/null @@ -1,52 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - APPL - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1 - LSRequiresIPhoneOS - - UILaunchStoryboardName - LaunchScreen - UIMainStoryboardFile - Main - UIRequiredDeviceCapabilities - - armv7 - - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UISupportedInterfaceOrientations~ipad - - UIInterfaceOrientationPortrait - UIInterfaceOrientationPortraitUpsideDown - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - NSAppTransportSecurity - - NSAllowsArbitraryLoads - - - - diff --git a/examples/ScriptSample/ScriptSample/ViewController.h b/examples/ScriptSample/ScriptSample/ViewController.h deleted file mode 100644 index f4fe9c7c..00000000 --- a/examples/ScriptSample/ScriptSample/ViewController.h +++ /dev/null @@ -1,22 +0,0 @@ -/* - Copyright 2017 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - */ - -#import - -@interface ViewController : UIViewController - - -@end diff --git a/examples/ScriptSample/ScriptSample/ViewController.m b/examples/ScriptSample/ScriptSample/ViewController.m deleted file mode 100644 index 3fab24af..00000000 --- a/examples/ScriptSample/ScriptSample/ViewController.m +++ /dev/null @@ -1,35 +0,0 @@ -/* - Copyright 2017 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - */ - -#import "ViewController.h" - -@interface ViewController () - -@end - -@implementation ViewController - -- (void)viewDidLoad { - [super viewDidLoad]; - // Do any additional setup after loading the view, typically from a nib. -} - -- (void)didReceiveMemoryWarning { - [super didReceiveMemoryWarning]; - // Dispose of any resources that can be recreated. -} - -@end diff --git a/examples/ScriptSample/ScriptSample/main.m b/examples/ScriptSample/ScriptSample/main.m deleted file mode 100644 index eeb0d853..00000000 --- a/examples/ScriptSample/ScriptSample/main.m +++ /dev/null @@ -1,24 +0,0 @@ -/* - Copyright 2017 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - */ - -#import -#import "AppDelegate.h" - -int main(int argc, char * argv[]) { - @autoreleasepool { - return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); - } -} diff --git a/examples/ScriptSample/ScriptSampleTests/Info.plist b/examples/ScriptSample/ScriptSampleTests/Info.plist deleted file mode 100644 index ba72822e..00000000 --- a/examples/ScriptSample/ScriptSampleTests/Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1 - - diff --git a/examples/ScriptSample/ScriptSampleTests/ScriptSampleTests.m b/examples/ScriptSample/ScriptSampleTests/ScriptSampleTests.m deleted file mode 100644 index a74232f6..00000000 --- a/examples/ScriptSample/ScriptSampleTests/ScriptSampleTests.m +++ /dev/null @@ -1,47 +0,0 @@ -/* - Copyright 2017 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - */ - -#import - -@interface ScriptSampleTests : XCTestCase - -@end - -@implementation ScriptSampleTests - -- (void)setUp { - [super setUp]; - // Put setup code here. This method is called before the invocation of each test method in the class. -} - -- (void)tearDown { - // Put teardown code here. This method is called after the invocation of each test method in the class. - [super tearDown]; -} - -- (void)testExample { - // This is an example of a functional test case. - // Use XCTAssert and related functions to verify your tests produce the correct results. -} - -- (void)testPerformanceExample { - // This is an example of a performance test case. - [self measureBlock:^{ - // Put the code you want to measure the time of here. - }]; -} - -@end diff --git a/examples/ScriptSample/testScript_DELETE.js b/examples/ScriptSample/testScript_DELETE.js deleted file mode 100644 index b761efd9..00000000 --- a/examples/ScriptSample/testScript_DELETE.js +++ /dev/null @@ -1,7 +0,0 @@ -module.exports = function(req, res){ - if (req.query.objectId === undefined) { - res.status(400).json({error: 'objectId must not be null'}); - } else { - res.send("good bye."); - } -}; diff --git a/examples/ScriptSample/testScript_GET.js b/examples/ScriptSample/testScript_GET.js deleted file mode 100644 index 5ff3a702..00000000 --- a/examples/ScriptSample/testScript_GET.js +++ /dev/null @@ -1,7 +0,0 @@ -module.exports = function(req, res){ - if(req.query.name){ - res.send('hello,' + req.query.name); - }else { - res.send('hello'); - } -}; diff --git a/examples/ScriptSample/testScript_POST.js b/examples/ScriptSample/testScript_POST.js deleted file mode 100644 index 75e77292..00000000 --- a/examples/ScriptSample/testScript_POST.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = function(req, res){ - res.send('body:' + req.body["name"]); -}; diff --git a/examples/ScriptSample/testScript_PUT.js b/examples/ScriptSample/testScript_PUT.js deleted file mode 100644 index fbde93da..00000000 --- a/examples/ScriptSample/testScript_PUT.js +++ /dev/null @@ -1,13 +0,0 @@ -module.exports = function(req, res){ - if (req.query.objectId === undefined) { - console.log("error:" + {error: "object id must not be null"}); - res.status(400).json({ error: 'objectId must not be null'}); - } - if(req.body["name"] !== undefined){ - console.log("hello:" + req.body["name"]); - res.send('hello,' + req.body["name"]); - }else { - console.log("hello"); - res.send('hello'); - } -};