Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 API

you 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
```