From c4a803a5a4ed05ec4810d2f80c77b74b08f62ed3 Mon Sep 17 00:00:00 2001 From: jcesarmobile Date: Wed, 24 Feb 2021 11:27:55 +0100 Subject: [PATCH] chore: Update androidxMaterialVersion (#267) --- action-sheet/README.md | 2 +- action-sheet/android/build.gradle | 2 +- camera/README.md | 2 +- camera/android/build.gradle | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/action-sheet/README.md b/action-sheet/README.md index 05777f761..9069e0132 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.3.0-rc01`) +- `$androidxMaterialVersion`: version of `com.google.android.material:material` (default: `1.3.0`) ## Example diff --git a/action-sheet/android/build.gradle b/action-sheet/android/build.gradle index 4ede1fedd..71de89f27 100644 --- a/action-sheet/android/build.gradle +++ b/action-sheet/android/build.gradle @@ -1,7 +1,7 @@ ext { junitVersion = project.hasProperty('junitVersion') ? rootProject.ext.junitVersion : '4.13.1' androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.2.0' - androidxMaterialVersion = project.hasProperty('androidxMaterialVersion') ? rootProject.ext.androidxMaterialVersion : '1.3.0-rc01' + androidxMaterialVersion = project.hasProperty('androidxMaterialVersion') ? rootProject.ext.androidxMaterialVersion : '1.3.0' androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.2' androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.3.0' } diff --git a/camera/README.md b/camera/README.md index f38fa68d2..936b7c96b 100644 --- a/camera/README.md +++ b/camera/README.md @@ -39,7 +39,7 @@ Additionally, because the Camera API launches a separate Activity to handle taki This plugin will use the following project variables (defined in your app's `variables.gradle` file): - `$androidxExifInterfaceVersion`: version of `androidx.exifinterface:exifinterface` (default: `1.3.2`) -- `$androidxMaterialVersion`: version of `com.google.android.material:material` (default: `1.3.0-rc01`) +- `$androidxMaterialVersion`: version of `com.google.android.material:material` (default: `1.3.0`) ## PWA Notes diff --git a/camera/android/build.gradle b/camera/android/build.gradle index b88a9c76b..6616a81c0 100644 --- a/camera/android/build.gradle +++ b/camera/android/build.gradle @@ -4,7 +4,7 @@ ext { androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.3.0' androidxExifInterfaceVersion = project.hasProperty('androidxExifInterfaceVersion') ? rootProject.ext.androidxExifInterfaceVersion : '1.3.2' androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.2' - androidxMaterialVersion = project.hasProperty('androidxMaterialVersion') ? rootProject.ext.androidxMaterialVersion : '1.3.0-rc01' + androidxMaterialVersion = project.hasProperty('androidxMaterialVersion') ? rootProject.ext.androidxMaterialVersion : '1.3.0' } buildscript {