初めてPhonegapを学んでいます。これはシンプルなアプリです。これにより、「hello world」が表示されます。しかし、ビルドしようとすると、アプリを作成できない、無効なファイルタイプが表示されます。
以下に示す私のhtmlコードID-
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="format-detection" content="telephone-no">
<meta name="viewport" content="user-scalable=no, initial-scale=1, minimum-scale=1, maximum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi">
<title>Our Application</title>
<script type="text/javascript" src="condova.js"></script>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
ここに私のconfig.xmlがあります
<?xml version="1.0" encoding="UTF-8" ?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "com.example.pgbuild"
versionCode="10"
version = "1.0.0">
<name>Test</name>
<description>
Show Hello World
</description>
<author href="http://phonegap.com/blog/" email="ryan@adobe.com">
Eddard Start
</author>
<preference name="phonegap-version" value="2.2.0" />
<preference name="webviewbounce" value="false" />
<icon src="img/icon.png" />
<gap:splash src="img/splash.png" />
</widget>
私はフォローアップして、Lynda の Phonegap を実行しています。すべてのアイコンを含む img フォルダーを含めました。cordova.ios.js ファイルも含めました。チュートリアルの人も名前を変更していないので、名前を変更していません。