From 37c026a8cae451b543b46d2941a221b8b1bd2c5e Mon Sep 17 00:00:00 2001
From: hank <hank.zhang@proficientcity.com>
Date: Mon, 04 Sep 2017 10:03:43 +0800
Subject: [PATCH] 添加V3.6.5

---
 frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppEvents.h           |    9 +++-
 frameworks/FBSDKCoreKit.framework/Info.plist                         |    0 
 frameworks/Bolts.framework/Info.plist                                |    0 
 frameworks/WAFbImpl.framework/_CodeSignature/CodeResources           |    8 ++--
 frameworks/WAFbImpl.framework/WAFbImpl                               |    0 
 frameworks/FBSDKShareKit.framework/Info.plist                        |    0 
 frameworks/FBSDKShareKit.framework/Headers/FBSDKShareLinkContent.h   |   18 +++++++-
 frameworks/FBSDKLoginKit.framework/Info.plist                        |    0 
 frameworks/WAFbImpl.framework/Headers/WAFbImpl.h                     |    2 
 frameworks/FBSDKCoreKit.framework/FBSDKCoreKit                       |    0 
 frameworks/FBSDKLoginKit.framework/FBSDKLoginKit                     |    0 
 frameworks/WAFbImpl.framework/_CodeSignature/CodeSignature           |    0 
 frameworks/FBSDKCoreKit.framework/Headers/FBSDKApplicationDelegate.h |    4 +
 frameworks/WAFbImpl.framework/_CodeSignature/CodeDirectory           |    0 
 frameworks/Bolts.framework/Bolts                                     |    0 
 frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginButton.h        |    2 
 WAFbImpl.podspec                                                     |    2 
 frameworks/FBSDKCoreKit.framework/Headers/FBSDKSettings.h            |   12 ++++++
 frameworks/WAFbImpl.framework/_CodeSignature/CodeRequirements-1      |    0 
 frameworks/WAFbImpl.framework/Info.plist                             |    0 
 frameworks/FBSDKShareKit.framework/FBSDKShareKit                     |    0 
 frameworks/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h             |    4 +-
 22 files changed, 45 insertions(+), 16 deletions(-)

diff --git a/WAFbImpl.podspec b/WAFbImpl.podspec
index 95b503b..52668f2 100644
--- a/WAFbImpl.podspec
+++ b/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" }
diff --git a/frameworks/Bolts.framework/Bolts b/frameworks/Bolts.framework/Bolts
index 5c61815..921b6e5 100644
--- a/frameworks/Bolts.framework/Bolts
+++ b/frameworks/Bolts.framework/Bolts
Binary files differ
diff --git a/frameworks/Bolts.framework/Info.plist b/frameworks/Bolts.framework/Info.plist
index 40889d4..9f03022 100644
--- a/frameworks/Bolts.framework/Info.plist
+++ b/frameworks/Bolts.framework/Info.plist
Binary files differ
diff --git a/frameworks/FBSDKCoreKit.framework/FBSDKCoreKit b/frameworks/FBSDKCoreKit.framework/FBSDKCoreKit
index f0d8d3b..b8438ee 100644
--- a/frameworks/FBSDKCoreKit.framework/FBSDKCoreKit
+++ b/frameworks/FBSDKCoreKit.framework/FBSDKCoreKit
Binary files differ
diff --git a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppEvents.h b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppEvents.h
index 4c359c5..c35a526 100644
--- a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppEvents.h
+++ b/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.
  */
diff --git a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKApplicationDelegate.h b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKApplicationDelegate.h
index c98ac37..4550826 100644
--- a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKApplicationDelegate.h
+++ b/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:].
 
diff --git a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h
index 9a12845..151a899 100644
--- a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h
+++ b/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"
diff --git a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKSettings.h b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKSettings.h
index 2d59a2a..22347b7 100644
--- a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKSettings.h
+++ b/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;
diff --git a/frameworks/FBSDKCoreKit.framework/Info.plist b/frameworks/FBSDKCoreKit.framework/Info.plist
index 9b30b10..68c6103 100644
--- a/frameworks/FBSDKCoreKit.framework/Info.plist
+++ b/frameworks/FBSDKCoreKit.framework/Info.plist
Binary files differ
diff --git a/frameworks/FBSDKLoginKit.framework/FBSDKLoginKit b/frameworks/FBSDKLoginKit.framework/FBSDKLoginKit
index 330a5ae..475c800 100644
--- a/frameworks/FBSDKLoginKit.framework/FBSDKLoginKit
+++ b/frameworks/FBSDKLoginKit.framework/FBSDKLoginKit
Binary files differ
diff --git a/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginButton.h b/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginButton.h
index ff2f3f3..adc7b9b 100644
--- a/frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginButton.h
+++ b/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;
 
diff --git a/frameworks/FBSDKLoginKit.framework/Info.plist b/frameworks/FBSDKLoginKit.framework/Info.plist
index 0d61380..9409e46 100644
--- a/frameworks/FBSDKLoginKit.framework/Info.plist
+++ b/frameworks/FBSDKLoginKit.framework/Info.plist
Binary files differ
diff --git a/frameworks/FBSDKShareKit.framework/FBSDKShareKit b/frameworks/FBSDKShareKit.framework/FBSDKShareKit
index 80e23f0..d223212 100644
--- a/frameworks/FBSDKShareKit.framework/FBSDKShareKit
+++ b/frameworks/FBSDKShareKit.framework/FBSDKShareKit
Binary files differ
diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareLinkContent.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareLinkContent.h
index 3168333..b4290d1 100644
--- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareLinkContent.h
+++ b/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.
diff --git a/frameworks/FBSDKShareKit.framework/Info.plist b/frameworks/FBSDKShareKit.framework/Info.plist
index d373f44..a7f4593 100644
--- a/frameworks/FBSDKShareKit.framework/Info.plist
+++ b/frameworks/FBSDKShareKit.framework/Info.plist
Binary files differ
diff --git a/frameworks/WAFbImpl.framework/Headers/WAFbImpl.h b/frameworks/WAFbImpl.framework/Headers/WAFbImpl.h
index 254974a..7f0131c 100644
--- a/frameworks/WAFbImpl.framework/Headers/WAFbImpl.h
+++ b/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
diff --git a/frameworks/WAFbImpl.framework/Info.plist b/frameworks/WAFbImpl.framework/Info.plist
index c39b835..1a7cb0a 100644
--- a/frameworks/WAFbImpl.framework/Info.plist
+++ b/frameworks/WAFbImpl.framework/Info.plist
Binary files differ
diff --git a/frameworks/WAFbImpl.framework/WAFbImpl b/frameworks/WAFbImpl.framework/WAFbImpl
index eebc6d4..ef8c2f3 100644
--- a/frameworks/WAFbImpl.framework/WAFbImpl
+++ b/frameworks/WAFbImpl.framework/WAFbImpl
Binary files differ
diff --git a/frameworks/WAFbImpl.framework/_CodeSignature/CodeDirectory b/frameworks/WAFbImpl.framework/_CodeSignature/CodeDirectory
index e63e140..17e1d52 100644
--- a/frameworks/WAFbImpl.framework/_CodeSignature/CodeDirectory
+++ b/frameworks/WAFbImpl.framework/_CodeSignature/CodeDirectory
Binary files differ
diff --git a/frameworks/WAFbImpl.framework/_CodeSignature/CodeRequirements-1 b/frameworks/WAFbImpl.framework/_CodeSignature/CodeRequirements-1
index cdd7847..614b888 100644
--- a/frameworks/WAFbImpl.framework/_CodeSignature/CodeRequirements-1
+++ b/frameworks/WAFbImpl.framework/_CodeSignature/CodeRequirements-1
Binary files differ
diff --git a/frameworks/WAFbImpl.framework/_CodeSignature/CodeResources b/frameworks/WAFbImpl.framework/_CodeSignature/CodeResources
index dea2114..11ded86 100644
--- a/frameworks/WAFbImpl.framework/_CodeSignature/CodeResources
+++ b/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>
diff --git a/frameworks/WAFbImpl.framework/_CodeSignature/CodeSignature b/frameworks/WAFbImpl.framework/_CodeSignature/CodeSignature
index c0335d1..29299d2 100644
--- a/frameworks/WAFbImpl.framework/_CodeSignature/CodeSignature
+++ b/frameworks/WAFbImpl.framework/_CodeSignature/CodeSignature
Binary files differ

--
Gitblit v1.8.0