-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit dace230
Showing
5 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# OS X | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Minimal PhoneGap Build Application | ||
|
||
> A minimal application built with PhoneGap | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |