diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f4220aa --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +#If ignorance is bliss, then somebody knock the smile off my face + +*.csproj.user +*.suo +*.cache +Thumbs.db +*.DS_Store + +*.bak +*.cache +*.log +*.swp +*.user + +/.project +node_modules \ No newline at end of file diff --git a/README.md b/README.md index 680f9e2..0f6e97f 100644 --- a/README.md +++ b/README.md @@ -1 +1,43 @@ # BlackBerry-Dynamics-Cordova-Plugins +This repository contains three Cordova plugins separated into branches: + - `file` branch corresponds to [cordova-plugin-bbd-file](https://github.com/blackberry/BlackBerry-Dynamics-Cordova-Plugins/tree/file) plugin + - `file-transfer` branch corresponds to [cordova-plugin-bbd-file-transfer](https://github.com/blackberry/BlackBerry-Dynamics-Cordova-Plugins/tree/file-transfer) plugin + - `sqlite-storage` branch corresponds to [cordova-plugin-bbd-sqlite-storage](https://github.com/blackberry/BlackBerry-Dynamics-Cordova-Plugins/tree/sqlite-storage) plugin + +> Please visit appropriate branch in order to take a look at implementation of specific plugin. + +## cordova-plugin-bbd-file +`cordova-plugin-bbd-file` is a fork of [cordova-plugin-file@6.0.1](https://github.com/apache/cordova-plugin-file). +This plugin enables you to manage the FileSystem residing within the BlackBerry Dynamics secure container using a similar JavaScript API to the original plugin. +### Installation +``` +$ cordova plugin add git+https://github.com/blackberry/BlackBerry-Dynamics-Cordova-Plugins#file +``` +### Uninstallation +``` +$ cordova plugin rm cordova-plugin-bbd-file +``` + +## cordova-plugin-bbd-file-transfer +`cordova-plugin-bbd-file-transfer` is a fork of [cordova-plugin-file-transfer@1.7.2](https://github.com/apache/cordova-plugin-file-transfer). +This plugin enables you to securely upload and download files within the BlackBerry Dynamics secure container using a similar JavaScript API to the original plugin. +### Installation +``` +$ cordova plugin add git+https://github.com/blackberry/BlackBerry-Dynamics-Cordova-Plugins#file-transfer +``` +### Uninstallation +``` +$ cordova plugin rm cordova-plugin-bbd-file-transfer +``` + +## cordova-plugin-bbd-sqlite-storage +`cordova-plugin-bbd-sqlite-storage` is a fork of [cordova-plugin-sqlite-storage@4.0.0](https://github.com/litehelpers/Cordova-sqlite-storage). +This plugin enables you to securely create and manage an SQLite database within the BlackBerry Dynamics secure container using a similar JavaScript SQLite API to the original plugin. +### Installation +``` +$ cordova plugin add git+https://github.com/blackberry/BlackBerry-Dynamics-Cordova-Plugins#sqlite-storage +``` +### Uninstallation +``` +$ cordova plugin rm cordova-plugin-bbd-sqlite-storage +```