capacitor-freerasp 2.2.0 → 2.2.1

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/CHANGELOG.md CHANGED
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [2.2.1] - 2025-08-05
9
+
10
+ ### Android
11
+
12
+ #### Fixed
13
+
14
+ - Issue with empty `SharedPreferences` files
15
+
16
+ #### Changed
17
+
18
+ - Decreased version of `Kotlin` to `2.0.0`
19
+
8
20
  ## [2.2.0] - 2025-07-16
9
21
 
10
22
  - iOS SDK version: 6.12.1
@@ -76,5 +76,5 @@ dependencies {
76
76
  androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
77
77
  androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
78
78
 
79
- implementation 'com.aheaditec.talsec.security:TalsecSecurity-Community-Capacitor:16.0.1'
79
+ implementation 'com.aheaditec.talsec.security:TalsecSecurity-Community-Capacitor:16.0.2'
80
80
  }
@@ -214,6 +214,7 @@ class FreeraspPlugin : Plugin() {
214
214
  call.reject(
215
215
  "External ID not provided", "MissingArgumentError"
216
216
  )
217
+ return
217
218
  }
218
219
  try {
219
220
  Talsec.storeExternalId(context, externalId)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "capacitor-freerasp",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "description": "Capacitor plugin for improving app security and threat monitoring on Android and iOS mobile devices",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",