capacitor-freerasp 2.2.0 → 2.2.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/CHANGELOG.md CHANGED
@@ -5,6 +5,32 @@ 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.2] - 2025-08-12
9
+
10
+ - iOS SDK version: 6.12.1
11
+ - Android SDK version: 16.0.2
12
+
13
+ ### Capacitor
14
+
15
+ #### Fixed
16
+
17
+ - Added missing `proguard-rules.pro` into package on npmjs
18
+
19
+ ## [2.2.1] - 2025-08-05
20
+
21
+ - iOS SDK version: 6.12.1
22
+ - Android SDK version: 16.0.2
23
+
24
+ ### Android
25
+
26
+ #### Fixed
27
+
28
+ - Issue with empty `SharedPreferences` files
29
+
30
+ #### Changed
31
+
32
+ - Decreased version of `Kotlin` to `2.0.0`
33
+
8
34
  ## [2.2.0] - 2025-07-16
9
35
 
10
36
  - 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
  }
@@ -0,0 +1,23 @@
1
+ # Add project specific ProGuard rules here.
2
+ # You can control the set of applied configuration files using the
3
+ # proguardFiles setting in build.gradle.
4
+ #
5
+ # For more details, see
6
+ # http://developer.android.com/guide/developing/tools/proguard.html
7
+
8
+ # If your project uses WebView with JS, uncomment the following
9
+ # and specify the fully qualified class name to the JavaScript interface
10
+ # class:
11
+ #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12
+ # public *;
13
+ #}
14
+
15
+ # Uncomment this to preserve the line number information for
16
+ # debugging stack traces.
17
+ #-keepattributes SourceFile,LineNumberTable
18
+
19
+ # If you keep the line number information, uncomment this to
20
+ # hide the original source file name.
21
+ #-renamesourcefileattribute SourceFile
22
+
23
+ -dontwarn java.lang.invoke.StringConcatFactory
@@ -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.2",
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",