|
|
@@ -22,4 +22,43 @@ Facebook的email转hash逻辑参考
|
|
|
|
|
|
Facebook用户信息的email提取和hash处理,还有转发log,正常
|
|
|
|
|
|
-![[Pasted image 20250709095850.png]]
|
|
|
+![[Pasted image 20250709095850.png]]
|
|
|
+
|
|
|
+facebook 18.0.2 对于unity出的ios xcode工程,会有问题
|
|
|
+
|
|
|
+https://github.com/facebook/facebook-sdk-for-unity/issues/766
|
|
|
+
|
|
|
+以割草项目为例,podfile要改成这样,才可以正常出ios包提审,关键修改点:
|
|
|
+
|
|
|
+![[Pasted image 20251127102847.png]]
|
|
|
+
|
|
|
+```
|
|
|
+source 'https://cdn.cocoapods.org/'
|
|
|
+
|
|
|
+platform :ios, '15.0'
|
|
|
+
|
|
|
+target 'UnityFramework' do
|
|
|
+ pod 'Adjust', '5.1.1'
|
|
|
+ pod 'Amplitude', '~> 8.19'
|
|
|
+ pod 'AppLovinMediationGoogleAdapter', '12.9.0.0'
|
|
|
+ pod 'AppLovinMediationUnityAdsAdapter', '4.16.0.0'
|
|
|
+ pod 'AppLovinSDK', '13.2.0'
|
|
|
+ pod 'FBSDKCoreKit', '18.0.1'
|
|
|
+ pod 'FBSDKCoreKit_Basics', '18.0.1'
|
|
|
+ pod 'FBSDKLoginKit', '18.0.1'
|
|
|
+ pod 'FBSDKShareKit', '18.0.1'
|
|
|
+ pod 'FBSDKGamingServicesKit', '18.0.1'
|
|
|
+ pod 'Firebase/Analytics', '12.4.0'
|
|
|
+ pod 'Firebase/Core', '12.4.0'
|
|
|
+ pod 'Firebase/Messaging', '12.4.0'
|
|
|
+end
|
|
|
+target 'Unity-iPhone' do
|
|
|
+end
|
|
|
+use_frameworks! :linkage => :static
|
|
|
+```
|
|
|
+
|
|
|
+修改后,为了确保稳定,还需要进行,这样的操作,先清理一下;
|
|
|
+
|
|
|
+![[Pasted image 20251127102931.png]]
|
|
|
+
|
|
|
+然后再`pod install`就会重新生成了
|