我是第一次学习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 文件。我没有重命名它,因为教程中的人也没有重命名它。