-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from volodymyrtaliar/main
README for main branch
- Loading branch information
Showing
2 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
``` |