I have succesfully packaged and signed a sencha touch 2 app.
Now what?
When I want to add the application to the device (xcode - organizer - devices - applications) I get this message: Can't install application - The Info.plist for application at /Users/Benny/Documents/App/Insusoft/insusoft.app specifies a CFBundleExecutable of stbuild_template, which is not executable
Everything I found on the internet talks about doing stuff in the project in xcode. But the sencha app isn't made in xcode.
The solution is pretty simple - you need to open Terminal and go into your .app folder. Use chmod to set execute permissions on the file stbuild_template.
chmod a+x stbuild_template
Once you do that, you can redeploy the app to your device via iTunes and it should work, assuming that you've got everything else configured properly.