@capawesome/capacitor-sim 0.1.0 → 0.1.2

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
@@ -19,10 +19,6 @@ let package = Package(
19
19
  .product(name: "Capacitor", package: "capacitor-swift-pm"),
20
20
  .product(name: "Cordova", package: "capacitor-swift-pm")
21
21
  ],
22
- path: "ios/Plugin"),
23
- .testTarget(
24
- name: "SimPluginTests",
25
- dependencies: ["SimPlugin"],
26
- path: "ios/PluginTests")
22
+ path: "ios/Plugin")
27
23
  ]
28
24
  )
package/README.md CHANGED
@@ -14,6 +14,7 @@ Capacitor plugin for reading SIM card and carrier information.
14
14
  - 🔀 **Multi-SIM**: Supports devices with multiple SIM slots.
15
15
  - 🌐 **Carrier details**: Read carrier name, country code, MCC and MNC.
16
16
  - 🔒 **Permissions**: Built-in handling of the required runtime permission.
17
+ - 🤝 **Compatibility**: Works alongside the [Device Info](https://capawesome.io/docs/sdks/capacitor/device-info/), [Network](https://capawesome.io/docs/sdks/capacitor/network/) and [Phone Dialer](https://capawesome.io/docs/sdks/capacitor/phone-dialer/) plugins.
17
18
  - 🔁 **Up-to-date**: Always supports the latest Capacitor version.
18
19
 
19
20
  Missing a feature? Just [open an issue](https://github.com/capawesome-team/capacitor-plugins/issues) and we'll take a look!
@@ -30,7 +30,7 @@ android {
30
30
  buildTypes {
31
31
  release {
32
32
  minifyEnabled false
33
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
33
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
34
34
  }
35
35
  }
36
36
  lintOptions {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capawesome/capacitor-sim",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Capacitor plugin for reading SIM card and carrier information on Android.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -68,15 +68,15 @@
68
68
  },
69
69
  "devDependencies": {
70
70
  "@capacitor/android": "8.0.0",
71
- "@capacitor/cli": "8.0.0",
71
+ "@capacitor/cli": "8.4.2",
72
72
  "@capacitor/core": "8.0.0",
73
73
  "@capacitor/docgen": "0.3.1",
74
74
  "@capacitor/ios": "8.0.0",
75
75
  "@ionic/eslint-config": "0.4.0",
76
76
  "eslint": "8.57.0",
77
- "prettier-plugin-java": "2.6.7",
77
+ "prettier-plugin-java": "2.9.7",
78
78
  "rimraf": "6.1.2",
79
- "rollup": "4.53.3",
79
+ "rollup": "4.62.3",
80
80
  "swiftlint": "2.0.0",
81
81
  "typescript": "5.9.3"
82
82
  },