Skip to content

Commit

Permalink
Merge pull request #10 from volodymyrtaliar/main
Browse files Browse the repository at this point in the history
README for main branch
  • Loading branch information
gghangura authored Dec 15, 2020
2 parents a122052 + 1501f2a commit cbee918
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .gitignore
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
42 changes: 42 additions & 0 deletions README.md
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
```

0 comments on commit cbee918

Please sign in to comment.