@capgo/capacitor-social-login 8.2.3 → 8.2.5

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.
package/Package.swift CHANGED
@@ -16,7 +16,7 @@ let package = Package(
16
16
  // Add Google Sign-In dependency
17
17
  .package(url: "https://github.com/google/GoogleSignIn-iOS.git", .upToNextMajor(from: "9.0.0")),
18
18
  // Alamofire
19
- .package(url: "https://github.com/Alamofire/Alamofire.git", .upToNextMajor(from: "5.9.0"))
19
+ .package(url: "https://github.com/Alamofire/Alamofire.git", .upToNextMajor(from: "5.11.0"))
20
20
  ],
21
21
  targets: [
22
22
  .target(
@@ -1,7 +1,6 @@
1
1
  package ee.forgr.capacitor.social.login;
2
2
 
3
3
  import android.content.Intent;
4
- import android.os.Build;
5
4
  import android.util.Log;
6
5
  import com.getcapacitor.JSArray;
7
6
  import com.getcapacitor.JSObject;
@@ -19,7 +18,7 @@ import org.json.JSONObject;
19
18
  @CapacitorPlugin(name = "SocialLogin")
20
19
  public class SocialLoginPlugin extends Plugin {
21
20
 
22
- private final String pluginVersion = "8.2.3";
21
+ private final String pluginVersion = "8.2.5";
23
22
 
24
23
  public static String LOG_TAG = "CapgoSocialLogin";
25
24
 
@@ -30,11 +29,6 @@ public class SocialLoginPlugin extends Plugin {
30
29
  // Set plugin instance for config access
31
30
  DependencyAvailabilityChecker.setPluginInstance(this);
32
31
 
33
- if (Build.VERSION.SDK_INT < Build.VERSION_CODES.N) {
34
- call.reject("Your android device is too old");
35
- return;
36
- }
37
-
38
32
  JSObject apple = call.getObject("apple");
39
33
  if (apple != null) {
40
34
  // Check if Apple dependencies are available
@@ -15,7 +15,7 @@ import GoogleSignIn
15
15
  */
16
16
  @objc(SocialLoginPlugin)
17
17
  public class SocialLoginPlugin: CAPPlugin, CAPBridgedPlugin {
18
- private let pluginVersion: String = "8.2.3"
18
+ private let pluginVersion: String = "8.2.5"
19
19
  public let identifier = "SocialLoginPlugin"
20
20
  public let jsName = "SocialLogin"
21
21
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-social-login",
3
- "version": "8.2.3",
3
+ "version": "8.2.5",
4
4
  "description": "All social logins in one plugin",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",