diff --git a/CHANGELOG.md b/CHANGELOG.md index eb36ad3..6ca79e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,10 +8,14 @@ The changes documented here do not include those from the original repository. ## [Unreleased] -### Android +### 11-11-2024 +- Chore: Android - Remove unneeded `kotlin-kapt` plugin (https://outsystemsrd.atlassian.net/browse/RMET-3803). -#### Chores -- Remove unneeded `kotlin-kapt` plugin (https://outsystemsrd.atlassian.net/browse/RMET-3803). +### 08-11-2024 +- Fix: Android - Update libraries for supporting 16KB page size (https://outsystemsrd.atlassian.net/browse/RMET-3602) + +### 05-11-2024 +- Fix: Android - Edge-to-edge support on Android 15 (https://outsystemsrd.atlassian.net/browse/RMET-3597) ## [1.1.6] diff --git a/src/android/com/outsystems/plugins/barcode/build.gradle b/src/android/com/outsystems/plugins/barcode/build.gradle index a9ca58a..1903c47 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("com.github.outsystems:osbarcode-android:1.1.4@aar") + implementation("com.github.outsystems:osbarcode-android:1.1.5-dev2@aar") implementation 'androidx.appcompat:appcompat:1.4.1' implementation "androidx.activity:activity-ktx:1.4.0" @@ -35,10 +35,10 @@ dependencies { implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3' implementation 'com.google.zxing:core:3.4.1' - implementation 'com.google.mlkit:barcode-scanning:17.2.0' - implementation "androidx.camera:camera-camera2:1.3.0" - implementation "androidx.camera:camera-lifecycle:1.0.2" - implementation "androidx.camera:camera-view:1.0.0-alpha31" + 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'