Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
goya committed Oct 15, 2015
0 parents commit dace230
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# OS X
.DS_Store
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Minimal PhoneGap Build Application

> A minimal application built with PhoneGap

21 changes: 21 additions & 0 deletions www/config.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>

<!-- config.xml reference: https://build.phonegap.com/docs/config-xml -->
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "com.phonegapbuild.test"
version = "1.0.0">

<name>Minimal App</name>

<description>
This is a minimal PhoneGap app.
</description>

<author href="http://build.phonegap.com" email="[email protected]">
PhoneGap Build
</author>

<icon src="icon.png" />

</widget>
Binary file added www/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions www/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>Minimal App</title>
</head>
<body>

<div>a minimal app</div>

<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript">
document.addEventListener('deviceready', function() { alert('device is ready'); }, false);
</script>
</body>
</html>

0 comments on commit dace230

Please sign in to comment.