我第一次学习Phonegap。这是一个简单的应用程序。这只会显示“你好世界”。但每当我尝试构建时,它都显示我无法创建应用程序,无效的文件类型。
我的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文件。我没有重命名它,因为教程中的人也没有重命名它。
答案 0 :(得分:1)
在黑暗中拍摄,但文件实际上是保存为.PNG而不是.png?
在原生XCode环境中,你可以让模拟器运行错误案例的扩展,但它会在设备上失败,除非扩展是确切的情况,只是设备操作系统搜索捆绑包的方式与模拟器OS
答案 1 :(得分:1)
在黑暗中再拍一次:
你有这个:
<script type="text/javascript" src="condova.js"></script>
当我认为你想要cordova.js时带有“r”
<script type="text/javascript" src="cordova.js"></script>
如果像这样的拼写错误那么简单,欢迎来到俱乐部。有时只需要一段时间来追踪那个完全无关紧要但又有瑕疵的错误。