@capgo/capacitor-social-login 8.3.1 → 8.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -16,8 +16,8 @@ Pod::Spec.new do |s|
|
|
|
16
16
|
s.dependency 'Capacitor'
|
|
17
17
|
# Provider dependencies (conditionally included via hook script)
|
|
18
18
|
# Hook script modifies these lines based on capacitor.config.ts
|
|
19
|
-
s.dependency 'FBSDKCoreKit', '18.0
|
|
20
|
-
s.dependency 'FBSDKLoginKit', '18.0
|
|
19
|
+
s.dependency 'FBSDKCoreKit', '~> 18.0'
|
|
20
|
+
s.dependency 'FBSDKLoginKit', '~> 18.0'
|
|
21
21
|
s.dependency 'GoogleSignIn', '~> 9.0.0'
|
|
22
22
|
s.dependency 'Alamofire', '~> 5.10.2'
|
|
23
23
|
s.swift_version = '5.1'
|
|
@@ -22,7 +22,7 @@ import org.json.JSONObject;
|
|
|
22
22
|
@CapacitorPlugin(name = "SocialLogin")
|
|
23
23
|
public class SocialLoginPlugin extends Plugin {
|
|
24
24
|
|
|
25
|
-
private final String pluginVersion = "8.3.
|
|
25
|
+
private final String pluginVersion = "8.3.3";
|
|
26
26
|
|
|
27
27
|
public static String LOG_TAG = "CapgoSocialLogin";
|
|
28
28
|
|
|
@@ -16,7 +16,7 @@ import GoogleSignIn
|
|
|
16
16
|
*/
|
|
17
17
|
@objc(SocialLoginPlugin)
|
|
18
18
|
public class SocialLoginPlugin: CAPPlugin, CAPBridgedPlugin {
|
|
19
|
-
private let pluginVersion: String = "8.3.
|
|
19
|
+
private let pluginVersion: String = "8.3.3"
|
|
20
20
|
public let identifier = "SocialLoginPlugin"
|
|
21
21
|
public let jsName = "SocialLogin"
|
|
22
22
|
public let pluginMethods: [CAPPluginMethod] = [
|
package/package.json
CHANGED
|
@@ -272,17 +272,17 @@ function configureIOS(providerConfig) {
|
|
|
272
272
|
},
|
|
273
273
|
{
|
|
274
274
|
// Facebook Core - handle both active and commented (including existing disabled comments)
|
|
275
|
-
old: /(#\s*)?s\.dependency\s+'FBSDKCoreKit',\s*'18\.0
|
|
275
|
+
old: /(#\s*)?s\.dependency\s+'FBSDKCoreKit',\s*'~>\s*18\.0'(\s*#.*)?/,
|
|
276
276
|
new: providerConfig.facebook === 'implementation'
|
|
277
|
-
? `s.dependency 'FBSDKCoreKit', '18.0
|
|
278
|
-
: `# s.dependency 'FBSDKCoreKit', '18.0
|
|
277
|
+
? `s.dependency 'FBSDKCoreKit', '~> 18.0'`
|
|
278
|
+
: `# s.dependency 'FBSDKCoreKit', '~> 18.0' # Disabled via config (compileOnly)`,
|
|
279
279
|
},
|
|
280
280
|
{
|
|
281
281
|
// Facebook Login - handle both active and commented (including existing disabled comments)
|
|
282
|
-
old: /(#\s*)?s\.dependency\s+'FBSDKLoginKit',\s*'18\.0
|
|
282
|
+
old: /(#\s*)?s\.dependency\s+'FBSDKLoginKit',\s*'~>\s*18\.0'(\s*#.*)?/,
|
|
283
283
|
new: providerConfig.facebook === 'implementation'
|
|
284
|
-
? `s.dependency 'FBSDKLoginKit', '18.0
|
|
285
|
-
: `# s.dependency 'FBSDKLoginKit', '18.0
|
|
284
|
+
? `s.dependency 'FBSDKLoginKit', '~> 18.0'`
|
|
285
|
+
: `# s.dependency 'FBSDKLoginKit', '~> 18.0' # Disabled via config (compileOnly)`,
|
|
286
286
|
},
|
|
287
287
|
{
|
|
288
288
|
// Alamofire (for Apple) - handle both active and commented (including existing disabled comments)
|