hank
2017-09-04 37c026a8cae451b543b46d2941a221b8b1bd2c5e
添加V3.6.5
22 files modified
61 ■■■■ changed files
WAFbImpl.podspec 2 ●●● patch | view | raw | blame | history
frameworks/Bolts.framework/Bolts patch | view | raw | blame | history
frameworks/Bolts.framework/Info.plist patch | view | raw | blame | history
frameworks/FBSDKCoreKit.framework/FBSDKCoreKit patch | view | raw | blame | history
frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppEvents.h 9 ●●●●● patch | view | raw | blame | history
frameworks/FBSDKCoreKit.framework/Headers/FBSDKApplicationDelegate.h 4 ●●● patch | view | raw | blame | history
frameworks/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h 4 ●●●● patch | view | raw | blame | history
frameworks/FBSDKCoreKit.framework/Headers/FBSDKSettings.h 12 ●●●●● patch | view | raw | blame | history
frameworks/FBSDKCoreKit.framework/Info.plist patch | view | raw | blame | history
frameworks/FBSDKLoginKit.framework/FBSDKLoginKit patch | view | raw | blame | history
frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginButton.h 2 ●●● patch | view | raw | blame | history
frameworks/FBSDKLoginKit.framework/Info.plist patch | view | raw | blame | history
frameworks/FBSDKShareKit.framework/FBSDKShareKit patch | view | raw | blame | history
frameworks/FBSDKShareKit.framework/Headers/FBSDKShareLinkContent.h 18 ●●●● patch | view | raw | blame | history
frameworks/FBSDKShareKit.framework/Info.plist patch | view | raw | blame | history
frameworks/WAFbImpl.framework/Headers/WAFbImpl.h 2 ●●● patch | view | raw | blame | history
frameworks/WAFbImpl.framework/Info.plist patch | view | raw | blame | history
frameworks/WAFbImpl.framework/WAFbImpl patch | view | raw | blame | history
frameworks/WAFbImpl.framework/_CodeSignature/CodeDirectory patch | view | raw | blame | history
frameworks/WAFbImpl.framework/_CodeSignature/CodeRequirements-1 patch | view | raw | blame | history
frameworks/WAFbImpl.framework/_CodeSignature/CodeResources 8 ●●●● patch | view | raw | blame | history
frameworks/WAFbImpl.framework/_CodeSignature/CodeSignature patch | view | raw | blame | history
WAFbImpl.podspec
@@ -9,7 +9,7 @@
Pod::Spec.new do |s|
s.name = 'WAFbImpl'
s.version = '3.6.4'
s.version = '3.6.5'
s.summary = 'WAFbImpl framework in production environment.'
s.license = 'MIT'
s.author = { "Wuyx" => "wuyixin_gh@gamehollywood.com" }
frameworks/Bolts.framework/Bolts
Binary files differ
frameworks/Bolts.framework/Info.plist
Binary files differ
frameworks/FBSDKCoreKit.framework/FBSDKCoreKit
Binary files differ
frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppEvents.h
@@ -381,7 +381,10 @@
/**
  Notifies the events system that the app has launched and, when appropriate, logs an "activated app" event.  Should typically be placed in the
  Notifies the events system that the app has launched and, when appropriate, logs an "activated app" event.
 This function is called automatically from FBSDKApplicationDelegate applicationDidBecomeActive, unless
 one overrides 'FacebookAutoLogAppEventsEnabled' key to false in the project info plist file.
 In case 'FacebookAutoLogAppEventsEnabled' is set to false, then it should typically be placed in the
 app delegates' `applicationDidBecomeActive:` method.
 This method also takes care of logging the event indicating the first time this app has been launched, which, among other things, is used to
@@ -402,11 +405,11 @@
 */
/**
  Sets a device token to register the current application installation for push notifications.
  Sets and sends device token to register the current application for push notifications.
 Sets a device token from `NSData` representation that you get from `UIApplicationDelegate.-application:didRegisterForRemoteNotificationsWithDeviceToken:`.
 Sets and sends a device token from `NSData` representation that you get from `UIApplicationDelegate.-application:didRegisterForRemoteNotificationsWithDeviceToken:`.
 - Parameter deviceToken: Device token data.
 */
frameworks/FBSDKCoreKit.framework/Headers/FBSDKApplicationDelegate.h
@@ -56,7 +56,7 @@
  sourceApplication:(NSString *)sourceApplication
         annotation:(id)annotation;
#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_9_3
#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_9_0
/**
  Call this method from the [UIApplicationDelegate application:openURL:options:] method
 of the AppDelegate for your app. It should be invoked for the proper processing of responses during interaction
@@ -78,6 +78,8 @@
/**
  Call this method from the [UIApplicationDelegate application:didFinishLaunchingWithOptions:] method
 of the AppDelegate for your app. It should be invoked for the proper use of the Facebook SDK.
 As part of SDK initialization basic auto logging of app events will occur, this can be
controlled via 'FacebookAutoLogAppEventsEnabled' key in the project info plist file.
 - Parameter application: The application as passed to [UIApplicationDelegate application:didFinishLaunchingWithOptions:].
frameworks/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h
@@ -44,5 +44,5 @@
#import <FBSDKCoreKit/FBSDKDeviceViewControllerBase.h>
#endif
#define FBSDK_VERSION_STRING @"4.18.0"
#define FBSDK_TARGET_PLATFORM_VERSION @"v2.8"
#define FBSDK_VERSION_STRING @"4.23.0"
#define FBSDK_TARGET_PLATFORM_VERSION @"v2.9"
frameworks/FBSDKCoreKit.framework/Headers/FBSDKSettings.h
@@ -154,6 +154,18 @@
+ (void)setJPEGCompressionQuality:(CGFloat)JPEGCompressionQuality;
/**
  Flag which controls the auto logging of basic app events, such as activateApp and deactivateApp.
 If not explicitly set, the default is 1 - true
 */
+ (NSNumber *)autoLogAppEventsEnabled;
/**
 Set the flag which controls the auto logging of basic app events, such as activateApp and deactivateApp.
 - Parameter AutoLogAppEventsEnabled: Flag value, expressed as a value from 0 - false or 1 - true.
 */
+ (void)setAutoLogAppEventsEnabled:(NSNumber *)AutoLogAppEventsEnabled;
/**
  Gets whether data such as that generated through FBSDKAppEvents and sent to Facebook should be restricted from being used for other than analytics and conversions.  Defaults to NO.  This value is stored on the device and persists across app launches.
 */
+ (BOOL)limitEventAndDataUsage;
frameworks/FBSDKCoreKit.framework/Info.plist
Binary files differ
frameworks/FBSDKLoginKit.framework/FBSDKLoginKit
Binary files differ
frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginButton.h
@@ -110,7 +110,7 @@
 - Parameter result: The results of the login
 - Parameter error: The error (if any) from the login
 */
- (void)  loginButton:(FBSDKLoginButton *)loginButton
- (void)loginButton:(FBSDKLoginButton *)loginButton
didCompleteWithResult:(FBSDKLoginManagerLoginResult *)result
                error:(NSError *)error;
frameworks/FBSDKLoginKit.framework/Info.plist
Binary files differ
frameworks/FBSDKShareKit.framework/FBSDKShareKit
Binary files differ
frameworks/FBSDKShareKit.framework/Headers/FBSDKShareLinkContent.h
@@ -31,22 +31,34 @@
 If not specified, this field is automatically populated by information scraped from the contentURL,
 typically the title of the page.  This value may be discarded for specially handled links (ex: iTunes URLs).
 - Returns: The description of the link
 @deprecated `contentDescription` is deprecated from Graph API 2.9.
 For more information, see https://developers.facebook.com/docs/apps/changelog#v2_9_deprecations.
 */
@property (nonatomic, copy) NSString *contentDescription;
@property (nonatomic, readonly) NSString *contentDescription
  DEPRECATED_MSG_ATTRIBUTE("`contentDescription` is deprecated from Graph API 2.9");
/**
  The title to display for this link.
 This value may be discarded for specially handled links (ex: iTunes URLs).
 - Returns: The link title
 @deprecated `contentTitle` is deprecated from Graph API 2.9.
 For more information, see https://developers.facebook.com/docs/apps/changelog#v2_9_deprecations
 */
@property (nonatomic, copy) NSString *contentTitle;
@property (nonatomic, readonly) NSString *contentTitle
  DEPRECATED_MSG_ATTRIBUTE("`contentTitle` is deprecated from Graph API 2.9");
/**
  The URL of a picture to attach to this content.
 - Returns: The network URL of an image
 @deprecated `imageURL` is deprecated from Graph API 2.9.
 For more information, see https://developers.facebook.com/docs/apps/changelog#v2_9_deprecations
 */
@property (nonatomic, copy) NSURL *imageURL;
@property (nonatomic, readonly) NSURL *imageURL
  DEPRECATED_MSG_ATTRIBUTE("`imageURL` is deprecated from Graph API 2.9");
/**
  Some quote text of the link.
frameworks/FBSDKShareKit.framework/Info.plist
Binary files differ
frameworks/WAFbImpl.framework/Headers/WAFbImpl.h
@@ -16,4 +16,4 @@
// In this header, you should import all the public headers of your framework using statements like #import <WAFbImpl/PublicHeader.h>
//time:2017/6/12 14:43 ver:3.6.4
//time:2017/6/27 09:28 ver:3.6.5
frameworks/WAFbImpl.framework/Info.plist
Binary files differ
frameworks/WAFbImpl.framework/WAFbImpl
Binary files differ
frameworks/WAFbImpl.framework/_CodeSignature/CodeDirectory
Binary files differ
frameworks/WAFbImpl.framework/_CodeSignature/CodeRequirements-1
Binary files differ
frameworks/WAFbImpl.framework/_CodeSignature/CodeResources
@@ -6,11 +6,11 @@
    <dict>
        <key>Headers/WAFbImpl.h</key>
        <data>
        cxujfs0LZluonczeRDdCAYoWq68=
        SgroB4ZGkdmdmXsFWTBHNdJ5Ils=
        </data>
        <key>Info.plist</key>
        <data>
        Aee3qinupjeYYI4m8VywRDVWkuk=
        8ysIbnzAwNMm28KNTY16+eyFmMc=
        </data>
        <key>Modules/module.modulemap</key>
        <data>
@@ -23,11 +23,11 @@
        <dict>
            <key>hash</key>
            <data>
            cxujfs0LZluonczeRDdCAYoWq68=
            SgroB4ZGkdmdmXsFWTBHNdJ5Ils=
            </data>
            <key>hash2</key>
            <data>
            poto8dzjthUXrGVgXTwugeRUdVyMWS2TTEhNhnfyhY4=
            ffrjmu/JWJ+Vx8VuVWdCyMxjT9g7JEXtyVmsPdQ0d8c=
            </data>
        </dict>
        <key>Modules/module.modulemap</key>
frameworks/WAFbImpl.framework/_CodeSignature/CodeSignature
Binary files differ