From 7e8a48f406308289ffb302e51a5bf6f78c5236c9 Mon Sep 17 00:00:00 2001 From: OS-pedrogustavobilro Date: Wed, 29 Jul 2026 12:44:00 +0100 Subject: [PATCH 1/2] chore(android): update action-sheet material to 1.14.0 References: https://outsystemsrd.atlassian.net/browse/RMET-5329 --- action-sheet/README.md | 2 +- action-sheet/android/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/action-sheet/README.md b/action-sheet/README.md index 7c402cd23..c76617785 100644 --- a/action-sheet/README.md +++ b/action-sheet/README.md @@ -13,7 +13,7 @@ npx cap sync This plugin will use the following project variables (defined in your app's `variables.gradle` file): -- `androidxMaterialVersion`: version of `com.google.android.material:material` (default: `1.13.0`) +- `androidxMaterialVersion`: version of `com.google.android.material:material` (default: `1.14.0`) ## PWA Notes diff --git a/action-sheet/android/build.gradle b/action-sheet/android/build.gradle index b5736a760..2ff147068 100644 --- a/action-sheet/android/build.gradle +++ b/action-sheet/android/build.gradle @@ -2,7 +2,7 @@ ext { capacitorVersion = System.getenv('CAPACITOR_VERSION') junitVersion = project.hasProperty('junitVersion') ? rootProject.ext.junitVersion : '4.13.2' androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.7.1' - androidxMaterialVersion = project.hasProperty('androidxMaterialVersion') ? rootProject.ext.androidxMaterialVersion : '1.13.0' + androidxMaterialVersion = project.hasProperty('androidxMaterialVersion') ? rootProject.ext.androidxMaterialVersion : '1.14.0' androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.3.0' androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.7.0' } From eb24e9f6b707d7b856e81e3303b42f4b3ed5159e Mon Sep 17 00:00:00 2001 From: OS-pedrogustavobilro Date: Wed, 29 Jul 2026 12:52:51 +0100 Subject: [PATCH 2/2] chore(android): update browser plugin androidx.browser to 1.10.0 References: https://outsystemsrd.atlassian.net/browse/RMET-5329 --- browser/README.md | 2 +- browser/android/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/browser/README.md b/browser/README.md index 24bb3574b..b84efde7f 100644 --- a/browser/README.md +++ b/browser/README.md @@ -17,7 +17,7 @@ npx cap sync This plugin will use the following project variables (defined in your app's `variables.gradle` file): -- `androidxBrowserVersion`: version of `androidx.browser:browser` (default: `1.9.0`) +- `androidxBrowserVersion`: version of `androidx.browser:browser` (default: `1.10.0`) ## Example diff --git a/browser/android/build.gradle b/browser/android/build.gradle index 8117f85d9..e6f8ebc0b 100644 --- a/browser/android/build.gradle +++ b/browser/android/build.gradle @@ -4,7 +4,7 @@ ext { androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.7.1' androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.3.0' androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.7.0' - androidxBrowserVersion = project.hasProperty('androidxBrowserVersion') ? rootProject.ext.androidxBrowserVersion : '1.9.0' + androidxBrowserVersion = project.hasProperty('androidxBrowserVersion') ? rootProject.ext.androidxBrowserVersion : '1.10.0' } buildscript {