Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/diegoshs/cordova_test
Little cordova app that can store images and text
https://github.com/diegoshs/cordova_test
cordova cordova-android indexeddb localstorage
Last synced: about 1 month ago
JSON representation
Little cordova app that can store images and text
- Host: GitHub
- URL: https://github.com/diegoshs/cordova_test
- Owner: DiegoSHS
- License: gpl-2.0
- Created: 2023-03-17T06:07:20.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-10-11T04:25:20.000Z (about 1 year ago)
- Last Synced: 2024-10-15T17:25:06.339Z (about 1 month ago)
- Topics: cordova, cordova-android, indexeddb, localstorage
- Language: JavaScript
- Homepage:
- Size: 992 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Testing apache cordova
this is a test app for apache cordova, using the design pattern mvc
this proyect uses localStorage and indexedDB to store data locally using the browser APIyou can use this app as an example of cordova-apps and indexedDB
## How to create the app
to generate an android app with cordova you must see the [Apache Cordova Documentation](https://cordova.apache.org/docs/en/latest/)Install cordova globally
```bash
npm i -g cordova
```
Check requirements
```bash
cordova requirments
```
Install platforms
```bash
cordova platform add android
```
Generate an android app
```bash
cordova build android
```
Run app directly on your device (needs USB debuggind enabled)
```bash
cordova run android --device
```