diff --git a/docs/plugins/file-md5/README.md b/docs/plugins/file-md5/README.md new file mode 100644 index 000000000..22ba9c86c --- /dev/null +++ b/docs/plugins/file-md5/README.md @@ -0,0 +1,20 @@ +# File MD5 + +``` +$ ionic cordova plugin add cordova-plugin-file-md5 +$ npm install @awesome-cordova-plugins/file-md5 +``` + +## [Usage Documentation](https://danielsogl.gitbook.io/awesome-cordova-plugins/plugins/file-md5/) + +Plugin Repo: [https://github.com/mramonlopez/cordova-plugin-file-md5](https://github.com/mramonlopez/cordova-plugin-file-md5) + +This plugin reads large files in chunks and build the md5sum incrementally. + +## Supported platforms + +- Android + - iOS + + + diff --git a/docs/plugins/keychain/README.md b/docs/plugins/keychain/README.md index 14c607866..1d9de930c 100644 --- a/docs/plugins/keychain/README.md +++ b/docs/plugins/keychain/README.md @@ -13,7 +13,7 @@ Get and set data in the iOS Keychain Requires Cordova plugin: `cordova-plugin-ios-keychain`. For more info, please see the [Keychain plugin docs](https://github.com/ionic-team/cordova-plugin-ios-keychain). -See also [Secure Storage](https://ionicframework.com/docs/native/secure-storage/) for more supported platforms. +See also [Secure Storage](https://ionic.io/docs/secure-storage) for more supported platforms. ## Supported platforms diff --git a/docs/plugins/lets-cooee/README.md b/docs/plugins/lets-cooee/README.md index 460835e3b..af6fdf122 100644 --- a/docs/plugins/lets-cooee/README.md +++ b/docs/plugins/lets-cooee/README.md @@ -1,38 +1,20 @@ -# Ionic Plugin for Cooee SDK - -## What is Cooee? - -Let’s Cooee powers hyper-personalized and real time engagements for mobile apps based on machine learning. The SaaS platform, hosted on -cloud infrastructure processes millions of user transactions and data attributes to create unique and contextual user engagement -triggers for end users with simple SDK integration that requires no coding at mobile app level. - -For more information visit our [website](https://www.letscooee.com/) and [documentation](https://docs.letscooee.com/developers/cordova/quickstart). - -## Features - -1. Plug and Play - Plugin is plug and play for mobile applications. That means it needs to be initialized with the Application Context, and it - will work automatically in the background. -2. Independent of Application - Plugin is independent of the application. It will collect data points with zero interference from/to the - applications. Although applications can send additional data points (if required) to the Plugin using API’s. -3. Rendering engagement triggers - Plugin will render the campaign trigger at real-time with the help of server http calls. - -## Platforms - -- Android (Minimum Android 5.0 / API level 21) -- iOS (Minimum deployment target iOS 13) - -## Installation +# Lets Cooee ``` -$ ionic cordova plugin add @letscooee/cordova-plugin --variable COOEE_APP_ID="MY_COOEE_APP_ID" +$ ionic cordova plugin add @letscooee/cordova-plugin --variable COOEE_APP_ID=appId $ npm install @awesome-cordova-plugins/lets-cooee ``` -Replace `MY_COOEE_APP_ID` with the `App ID` which is present at [Cooee Portal](https://dashboard.letscooee.com/app/details). -## Usage Documentation - -For detailed installation & uses, Refer [Cordova](https://docs.letscooee.com/developers/cordova/quickstart) documentation. +## [Usage Documentation](https://danielsogl.gitbook.io/awesome-cordova-plugins/plugins/lets-cooee/) Plugin Repo: [https://github.com/letscooee/cordova-plugin-cooee](https://github.com/letscooee/cordova-plugin-cooee) -Requires Cordova plugin: `@letscooee/cordova-plugin` [![npm](https://img.shields.io/npm/v/@letscooee/cordova-plugin)](https://www.npmjs.com/package/@letscooee/cordova-plugin). \ No newline at end of file +AI driven Personalised Notifications for Better Customer Engagement + +## Supported platforms + +- Android + - iOS + + + diff --git a/docs/plugins/zip/README.md b/docs/plugins/zip/README.md new file mode 100644 index 000000000..cc5cf25be --- /dev/null +++ b/docs/plugins/zip/README.md @@ -0,0 +1,20 @@ +# Zip + +``` +$ ionic cordova plugin add cordova-plugin-zip +$ npm install @awesome-cordova-plugins/zip +``` + +## [Usage Documentation](https://danielsogl.gitbook.io/awesome-cordova-plugins/plugins/zip/) + +Plugin Repo: [https://github.com/MobileChromeApps/cordova-plugin-zip](https://github.com/MobileChromeApps/cordova-plugin-zip) + +A Cordova plugin to unzip files in Android and iOS. + +## Supported platforms + +- Android + - iOS + + + diff --git a/src/@awesome-cordova-plugins/plugins/dynamsoft-barcode-scanner/index.ts b/src/@awesome-cordova-plugins/plugins/dynamsoft-barcode-scanner/index.ts index a28f31b5f..488856703 100755 --- a/src/@awesome-cordova-plugins/plugins/dynamsoft-barcode-scanner/index.ts +++ b/src/@awesome-cordova-plugins/plugins/dynamsoft-barcode-scanner/index.ts @@ -47,7 +47,7 @@ export enum EnumResolution { RESOLUTION_720P = 2, RESOLUTION_1080P = 3, RESOLUTION_2K = 4, - RESOLUTION_4K = 5 + RESOLUTION_4K = 5, } /** @@ -199,12 +199,11 @@ export class BarcodeScanner extends AwesomeCordovaNativePlugin { /** * set focus - * @param point {x:number,y:number} focus point + * @param point focus point * @return {Promise} Returns a promise */ - @Cordova({ successIndex: 1, errorIndex: 2 }) - setFocus(point: {x:number,y:number}): Promise { - return; - } - + @Cordova({ successIndex: 1, errorIndex: 2 }) + setFocus(point: { x: number; y: number }): Promise { + return; + } }