From 16100f62f15a22b4c9f21a84ae3ab6560285c49b Mon Sep 17 00:00:00 2001 From: sbosse Date: Mon, 21 Jul 2025 23:34:14 +0200 Subject: [PATCH] Mon 21 Jul 22:43:21 CEST 2025 --- .../plugins/cordova-plugin-compat/README.md | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 js/ui/cordova/plugins/cordova-plugin-compat/README.md diff --git a/js/ui/cordova/plugins/cordova-plugin-compat/README.md b/js/ui/cordova/plugins/cordova-plugin-compat/README.md new file mode 100644 index 0000000..4e51219 --- /dev/null +++ b/js/ui/cordova/plugins/cordova-plugin-compat/README.md @@ -0,0 +1,35 @@ + + +cordova-plugin-compat +------------------------ + +This repo is for remaining backwards compatible with previous versions of Cordova. + +## Deprecated + +> This plugin is no longer being worked on as the functionality provided by this plugin is now included in cordova-android 6.3.0. You should upgrade your application to use version 1.2.0 of this plugin. It will detect whether or not the plugin is required based on the version of cordova-android your app uses. + +## USAGE + +Your plugin can depend on this plugin and use it to handle the new run time permissions Android 6.0.0 (cordova-android 5.0.0) introduced. + +View [this commit](https://github.com/apache/cordova-plugin-camera/commit/a9c18710f23e86f5b7f8918dfab7c87a85064870) to see how to depend on `cordova-plugin-compat`. View [this file](https://github.com/apache/cordova-plugin-camera/blob/master/src/android/CameraLauncher.java) to see how `PermissionHelper` is being used to request and store permissions. Read more about Android permissions at http://cordova.apache.org/docs/en/latest/guide/platforms/android/plugin.html#android-permissions.