diff --git a/CHANGELOG.md b/CHANGELOG.md index 8806b8f..e7a9553 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 The changes documented here do not include those from the original repository. +## [2.0.1] + +### 02-10-2025 + +- Fix: Android - Crash due to `kotlin.UninitializedPropertyAccessException`. + ## [2.0.0] ### 01-09-2025 diff --git a/package.json b/package.json index 01c9bee..377f796 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "com.outsystems.plugins.barcode", - "version": "2.0.0", + "version": "2.0.1", "description": "Cordova Bridge for the OutSystems Officially Supported Barcode Plugin.", "keywords": [ "ecosystem:cordova", diff --git a/plugin.xml b/plugin.xml index 64d8e80..5742df1 100644 --- a/plugin.xml +++ b/plugin.xml @@ -1,5 +1,5 @@ - + OSBarcode Cordova Bridge for the OutSystems Officially Supported Barcode Plugin. OutSystems Inc diff --git a/src/android/com/outsystems/plugins/barcode/build.gradle b/src/android/com/outsystems/plugins/barcode/build.gradle index 5753792..d20c27d 100644 --- a/src/android/com/outsystems/plugins/barcode/build.gradle +++ b/src/android/com/outsystems/plugins/barcode/build.gradle @@ -26,7 +26,7 @@ repositories{ dependencies { implementation("com.github.outsystems:oscore-android:1.2.0@aar") implementation("com.github.outsystems:oscordova-android:2.0.1@aar") - implementation("io.ionic.libs:ionbarcode-android:2.0.0@aar") + implementation("io.ionic.libs:ionbarcode-android:2.0.1@aar") implementation 'androidx.appcompat:appcompat:1.7.0' implementation "androidx.activity:activity-ktx:1.9.3"