Skip to content

Commit feccd3f

Browse files
fix(android): crash on lateinit var (#45)
* fix(android): crash on lateinit var `kotlin.UninitializedPropertyAccessException: lateinit property camera has not been initialized` References: - https://outsystemsrd.atlassian.net/browse/RMET-4530 - OutSystems/OSBarcodeLib-Android#52 * chore(release): prepare for 2.0.1 release
1 parent 9d5bde3 commit feccd3f

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
The changes documented here do not include those from the original repository.
88

9+
## [2.0.1]
10+
11+
### 02-10-2025
12+
13+
- Fix: Android - Crash due to `kotlin.UninitializedPropertyAccessException`.
14+
915
## [2.0.0]
1016

1117
### 01-09-2025

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.outsystems.plugins.barcode",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "Cordova Bridge for the OutSystems Officially Supported Barcode Plugin.",
55
"keywords": [
66
"ecosystem:cordova",

plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2-
<plugin id="com.outsystems.plugins.barcode" version="2.0.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
2+
<plugin id="com.outsystems.plugins.barcode" version="2.0.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
33
<name>OSBarcode</name>
44
<description>Cordova Bridge for the OutSystems Officially Supported Barcode Plugin.</description>
55
<author>OutSystems Inc</author>

src/android/com/outsystems/plugins/barcode/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ repositories{
2626
dependencies {
2727
implementation("com.github.outsystems:oscore-android:1.2.0@aar")
2828
implementation("com.github.outsystems:oscordova-android:2.0.1@aar")
29-
implementation("io.ionic.libs:ionbarcode-android:2.0.0@aar")
29+
implementation("io.ionic.libs:ionbarcode-android:2.0.1@aar")
3030

3131
implementation 'androidx.appcompat:appcompat:1.7.0'
3232
implementation "androidx.activity:activity-ktx:1.9.3"

0 commit comments

Comments
 (0)