From 25e8181907e811bfdc2a99c370214c5aaa53169c Mon Sep 17 00:00:00 2001 From: jcesarmobile Date: Mon, 20 Nov 2023 16:00:20 +0100 Subject: [PATCH] chore(browser): Update default androidxBrowserVersion value (#1903) --- 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 2b914324f..10be54d2a 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.5.0`) +- `androidxBrowserVersion`: version of `androidx.browser:browser` (default: `1.7.0`) ## Example diff --git a/browser/android/build.gradle b/browser/android/build.gradle index 25e3e07d4..5cd054919 100644 --- a/browser/android/build.gradle +++ b/browser/android/build.gradle @@ -4,7 +4,7 @@ ext { androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.6.1' androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.5' androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.5.1' - androidxBrowserVersion = project.hasProperty('androidxBrowserVersion') ? rootProject.ext.androidxBrowserVersion : '1.5.0' + androidxBrowserVersion = project.hasProperty('androidxBrowserVersion') ? rootProject.ext.androidxBrowserVersion : '1.7.0' } buildscript {