├── LICENSE ├── README.md ├── index.js ├── package.json ├── template_docs.md └── template_src ├── config.xml ├── hooks └── README.md ├── package.json └── www ├── css └── index.css ├── img └── logo.png ├── index.html └── js └── index.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carynbear/cordova-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carynbear/cordova-template/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carynbear/cordova-template/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carynbear/cordova-template/HEAD/package.json -------------------------------------------------------------------------------- /template_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carynbear/cordova-template/HEAD/template_docs.md -------------------------------------------------------------------------------- /template_src/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carynbear/cordova-template/HEAD/template_src/config.xml -------------------------------------------------------------------------------- /template_src/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carynbear/cordova-template/HEAD/template_src/hooks/README.md -------------------------------------------------------------------------------- /template_src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carynbear/cordova-template/HEAD/template_src/package.json -------------------------------------------------------------------------------- /template_src/www/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carynbear/cordova-template/HEAD/template_src/www/css/index.css -------------------------------------------------------------------------------- /template_src/www/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carynbear/cordova-template/HEAD/template_src/www/img/logo.png -------------------------------------------------------------------------------- /template_src/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carynbear/cordova-template/HEAD/template_src/www/index.html -------------------------------------------------------------------------------- /template_src/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carynbear/cordova-template/HEAD/template_src/www/js/index.js --------------------------------------------------------------------------------