From d0d46c151cf98494e3c92b79dc117ffd3893f993 Mon Sep 17 00:00:00 2001 From: jcesarmobile Date: Sun, 25 Sep 2022 05:03:51 +0200 Subject: [PATCH] docs(README): Document ANDROIDX_CORE_VERSION variable (#808) --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e97401c..e9a6025 100644 --- a/README.md +++ b/README.md @@ -38,16 +38,20 @@ Although the object is attached to the global scoped `navigator`, it is not avai ## Installation -This requires cordova 5.0+ - cordova plugin add cordova-plugin-camera -Older versions of cordova can still install via the __deprecated__ id - cordova plugin add org.apache.cordova.camera It is also possible to install via repo url directly ( unstable ) cordova plugin add https://github.com/apache/cordova-plugin-camera.git +## Plugin variables + +The plugin uses the `ANDROIDX_CORE_VERSION` variable to configure `androidx.core:core` dependency. This allows to avoid conflicts with other plugins that have the dependency hardcoded. +If no value is passed, it will use `1.6.+` as the default value. + +The variable is configured on install time + + cordova plugin add cordova-plugin-camera --variable ANDROIDX_CORE_VERSION=1.8.0 ## How to Contribute