diff --git a/CHANGELOG.md b/CHANGELOG.md index f87bf7f..b8ff614 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ 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. +## [1.2.0] + +### 03-12-2024 +- Chore: Android - Bump Kotlin and Gradle versions (https://outsystemsrd.atlassian.net/browse/RMET-3887) + +### 26-11-2024 +- Feature: Android - Support Edge-to-Edge on all Android versions. + ## [1.1.7] ### 11-11-2024 diff --git a/package.json b/package.json index 0310501..b0eec5a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "com.outsystems.plugins.barcode", - "version": "1.1.7", + "version": "1.2.0", "description": "Cordova Bridge for the OutSystems Officially Supported Barcode Plugin.", "keywords": [ "ecosystem:cordova", diff --git a/plugin.xml b/plugin.xml index 74e96de..6f37010 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 ad4e5b9..e8efd27 100644 --- a/src/android/com/outsystems/plugins/barcode/build.gradle +++ b/src/android/com/outsystems/plugins/barcode/build.gradle @@ -5,7 +5,7 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:8.1.1' + classpath 'com.android.tools.build:gradle:8.7.2' } } @@ -26,20 +26,20 @@ repositories{ dependencies { implementation("com.github.outsystems:oscore-android:1.2.0@aar") implementation("com.github.outsystems:oscordova-android:2.0.1@aar") - implementation("com.github.outsystems:osbarcode-android:1.1.5@aar") + implementation("com.github.outsystems:osbarcode-android:1.2.0@aar") - implementation 'androidx.appcompat:appcompat:1.4.1' - implementation "androidx.activity:activity-ktx:1.4.0" + implementation 'androidx.appcompat:appcompat:1.7.0' + implementation "androidx.activity:activity-ktx:1.9.3" - implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.5.0' - implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3' + implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3' + implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3' implementation 'com.google.zxing:core:3.4.1' implementation 'com.google.mlkit:barcode-scanning:17.3.0' implementation "androidx.camera:camera-camera2:1.4.0" implementation "androidx.camera:camera-lifecycle:1.4.0" implementation "androidx.camera:camera-view:1.4.0" - implementation "androidx.activity:activity-compose:1.4.0" - implementation 'androidx.compose.material3:material3:1.0.0' - implementation 'androidx.compose.material3:material3-window-size-class:1.0.0' + implementation "androidx.activity:activity-compose:1.9.3" + implementation 'androidx.compose.material3:material3:1.3.1' + implementation 'androidx.compose.material3:material3-window-size-class:1.3.1' }