私はこのチュートリアルhttp://docs.sencha.com/touch/2-0/#!/guide/getting_startedに正確に従っています 私のアプリケーションは私のウェブブラウザ (私のラップトップ) で動作しており、Android 用に生成されています。しかし、インストールして起動すると、ブルー スクリーンに読み込み中のアイコンがまだ表示されます。これについてのアイデアはありますか?
thnx
Ext.define("GS.view.Main", {
    extend: 'Ext.tab.Panel',
    requires: [
        'Ext.TitleBar'
    ],
    config: {
        tabBarPosition: 'bottom',
        items: [{
                xtype : 'homePanel'
            }
        ]
    }
});
Ext.define('GS.view.Home', {
    extend : Ext.Panel,
    xtype : 'homePanel',
    config : {
        title : 'Home',
        iconCls : 'home',
        scrollable : true,
        styleHtmlContent : true,
        html: [
            '<img src="http://staging.sencha.com/img/sencha.png" />',
            '<h1>Welcome to Sencha Touch</h1>',
            "<p>You're creating the Getting Started app. This demonstrates how ",
            "to use tabs, lists and forms to create a simple app</p>",
            '<h2>Sencha Touch (2.0.0)</h2>'
        ].join("")
    }
});
    