I used these 2 commands to compress my project;
sencha create jsb -a http://localhost/Project/app.html -p a.jsb3 -v
sencha build -p a.jsb3 -v -d .
and then used the following code in the app.html file
<script type="text/javascript" src="extjs/ext.js"></script>
<script type="text/javascript" src="app-all.js"></script>
But, the problem is that when I run the application, I get an error saying
"NetworkError: 404 Not Found - http://localhost/Project/MyApp/view/PersonView.js?_dc=1347769776730"
and many other views; but when I change ext.js to ext-all.js everything works.
But if I use ext-all.js I think I am calling all the extjs classes, and this could reduce the start up speed. How should I correct my code?