当我使用 Phonegap 构建器 (https://build.phonegap.com/) 打包我的 Sencha Touch 应用程序时,构建时不会出现任何错误。虽然,当我启动应用程序时,我得到一个空白(白色)屏幕并且没有任何反应。
我能做错什么?
我的 index.html 文件如下所示:
<!DOCTYPE html>
<html>
<head>
<title>My app</title>
<link rel="stylesheet" href="app.css" type="text/css">
<link href="resources/css/app.css" rel="stylesheet" type="text/css" />
<link href="resources/plugins/SliderFieldExtended.css" rel="stylesheet" type="text/css" />
<link href="styles/OrangeTheme.css" rel="stylesheet" type="text/css" />
<script src="resources/lib/sencha-touch-all.js" type="text/javascript"></script>
<script type="text/javascript" src="app.js"></script>
<script type="text/javascript" src="resources/plugins/SliderFieldExtended.js"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"> </script>
</head>
<body></body>
</html>
PS。我正在使用 Sencha Touch 2.0.1。
提前致谢。