1. #1
    Sencha User
    Join Date
    Mar 2012
    Posts
    3
    Vote Rating
    0
    TomGH is on a distinguished road

      0  

    Default Deploy packaged and signed app to the appstore

    Deploy packaged and signed app to the appstore


    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.

    And how do I get the app in the appstore?

    Thanks for the help.

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,684
    Vote Rating
    435
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    To submit to the app store you have to do that on apples developer website
    Mitchell Simoens @SenchaMitch
    Sencha Inc, Senior Forum Manager
    ________________
    http://www.JSONPLint.com - Source to lint your JSONP!

    Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
    https://github.com/mitchellsimoens

    Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/

    Need more help with your app? Hire Sencha Services services@sencha.com

    Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!

    When posting code, please use BBCode's CODE tags.

  3. #3
    Sencha - Training Team
    Join Date
    Nov 2009
    Location
    Washington, DC
    Posts
    34
    Vote Rating
    0
    sdruckerfig is on a distinguished road

      0  

    Default


    I ran into the same problem.

    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.

  4. #4
    Sencha User
    Join Date
    Mar 2012
    Posts
    18
    Vote Rating
    0
    devyn is on a distinguished road

      0  

    Default


    Thanks! chmod does work