Sencha Touch アプリを Phonegap ビルダー (https://build.phonegap.com/) でパッケージ化すると、ビルドでエラーが発生しません。ただし、アプリを起動すると、空白の (白い) 画面が表示され、何も起こりません。
何が間違っている可能性がありますか?
私の 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 を使用しています。
前もって感謝します。