Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
changed from cordova light to cordova app
Browse files Browse the repository at this point in the history
  • Loading branch information
edewit committed Aug 11, 2016
1 parent aeb8eae commit 94b8bfe
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 10 deletions.
4 changes: 3 additions & 1 deletion .gitignore
@@ -1,2 +1,4 @@
node_modules
*~
*~
plugins
platforms
4 changes: 2 additions & 2 deletions www/Gruntfile.js → Gruntfile.js
Expand Up @@ -21,7 +21,7 @@ module.exports = function (grunt) {
// Project settings
app: {
// configurable paths
app: '.',
app: 'www',
url: '',
default_local_server_url: 'http://localhost:8001'
},
Expand Down Expand Up @@ -81,7 +81,7 @@ module.exports = function (grunt) {
},

browserify: {
'main.js': ['js/*.js']
'www/main.js': ['www/js/*.js']
}
});

Expand Down
28 changes: 28 additions & 0 deletions config.xml
@@ -0,0 +1,28 @@
<?xml version='1.0' encoding='utf-8'?>
<widget id="org.feedhenry" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Helloworld</name>
<description>
Helloworld with RHMAP.
</description>
<author email="feedhenry-dev@redhat.com" href="http://feedhenry.org">
Feedhenry
</author>
<content src="index.html" />
<access origin="*" />
<engine name="android"/>
<engine name="ios"/>
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
<plugin name="cordova-plugin-whitelist"/>
</widget>
File renamed without changes.
7 changes: 0 additions & 7 deletions www/config.json

This file was deleted.

0 comments on commit 94b8bfe

Please sign in to comment.