[cherry] [release-81-fixes] [ios] Updated 3party frameworks.

This commit is contained in:
Ilya Grechuhin 2018-03-06 18:32:04 +03:00 committed by Roman Kuznetsov
parent 40e13cd2e6
commit 11ad2c010d
42 changed files with 33 additions and 18 deletions

View file

@ -1,8 +1,8 @@
github "Alamofire/Alamofire" "4.6.0"
github "Alamofire/Alamofire" "4.7.0"
github "Alamofire/AlamofireImage" "3.3.0"
github "AppsFlyerSDK/AppsFlyerFramework" "4.8.2"
github "AppsFlyerSDK/AppsFlyerFramework" "4.8.3"
github "BoltsFramework/Bolts-ObjC" "1.9.0"
github "Pushwoosh/pushwoosh-ios-sdk" "5.5.3"
github "Pushwoosh/pushwoosh-ios-sdk" "5.5.4"
github "facebook/Facebook-SDK-Swift" "0.3.0"
github "facebook/facebook-ios-sdk" "sdk-version-4.29.0"
github "facebook/facebook-ios-sdk" "sdk-version-4.31.1"
github "skywinder/ActionSheetPicker-3.0" "2.3.0"

Binary file not shown.

Binary file not shown.

View file

@ -60,4 +60,4 @@ static const float secondColumnWidth = 160.0f;
@property (nonatomic, copy) ActionLocaleDoneBlock onActionSheetDone;
@property (nonatomic, copy) ActionLocaleCancelBlock onActionSheetCancel;
@end
@end

View file

@ -32,4 +32,4 @@
#import "ActionSheetDistancePicker.h"
#import "ActionSheetLocalePicker.h"
#import "ActionSheetStringPicker.h"
#import "ActionSheetMultipleStringPicker.h"
#import "ActionSheetMultipleStringPicker.h"

View file

@ -59,4 +59,4 @@ typedef void(^ActionStringCancelBlock)(ActionSheetStringPicker *picker);
@property (nonatomic, copy) ActionStringDoneBlock onActionSheetDone;
@property (nonatomic, copy) ActionStringCancelBlock onActionSheetCancel;
@end
@end

View file

@ -44,5 +44,5 @@
#import <FBSDKCoreKit/FBSDKDeviceViewControllerBase.h>
#endif
#define FBSDK_VERSION_STRING @"4.29.0"
#define FBSDK_VERSION_STRING @"4.31.1"
#define FBSDK_TARGET_PLATFORM_VERSION @"v2.11"

View file

@ -52,4 +52,18 @@
*/
+ (NSString *)URLEncode:(NSString *)value;
/**
Creates a timer using Grand Central Dispatch.
- Parameter interval: The interval to fire the timer, in seconds.
- Parameter block: The code block to execute when timer is fired.
- Returns: The dispatch handle.
*/
+ (dispatch_source_t)startGCDTimerWithInterval:(double)interval block:(dispatch_block_t)block;
/**
Stop a timer that was started by startGCDTimerWithInterval.
- Parameter timer: The dispatch handle received from startGCDTimerWithInterval.
*/
+ (void)stopGCDTimer:(dispatch_source_t)timer;
@end

View file

@ -12,7 +12,7 @@
#import <UserNotifications/UserNotifications.h>
#endif
#define PUSHWOOSH_VERSION @"5.5.3"
#define PUSHWOOSH_VERSION @"5.5.4"
@class PushNotificationManager;
@ -229,19 +229,24 @@ typedef void (^PushwooshErrorHandler)(NSError *error);
- (void)registerForPushNotifications;
/**
Unregisters from push notifications. You should call this method in rare circumstances only, such as when a new version of the app drops support for remote notifications. Users can temporarily prevent apps from receiving remote notifications through the Notifications section of the Settings app. Apps unregistered through this method can always re-register.
Unregisters from push notifications.
*/
- (void)unregisterForPushNotifications;
- (void)unregisterForPushNotificationsWithCompletion:(void (^)(NSError *error))completion;
/**
Deprecated. Use initializeWithAppCode:appName: method class
Deprecated. Use unregisterForPushNotificationsWithCompletion: method instead
*/
- (void)unregisterForPushNotifications __attribute__((deprecated));
/**
Deprecated. Use initializeWithAppCode:appName: method instead
*/
- (instancetype)initWithApplicationCode:(NSString *)appCode appName:(NSString *)appName __attribute__((deprecated));
#if TARGET_OS_IPHONE
/**
Deprecated. Use initializeWithAppCode:appName: method class
Deprecated. Use initializeWithAppCode:appName: method instead
*/
- (id)initWithApplicationCode:(NSString *)appCode navController:(UIViewController *)navController appName:(NSString *)appName __attribute__((deprecated));

View file

@ -16,12 +16,8 @@
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2011 Google Inc. All rights reserved.</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>