Skip to content Skip to sidebar Skip to footer

Unable To Generate Android Skeleton Project From Sencha Touch Because Of Stbuild Exited With Non-zero Code : 7

I have downloaded sencha command v4.0.4.84 , sencha touch2.4.0-commercial and have installed ruby 1.9.3p545 and installed sass and compass and ant and installed jdk 1.7 and set c

Solution 1:

The build process fails, because it misses an icon. This is communicated by the following line:

[aapt] D:\firstapp\touch-2.4.0-commercial\build\bin\AndroidManifest.xml:11:
 error: Error: No resource found that matches the given name (at 'icon'with val
ue '@drawable/icon').

I haven't used Sencha Cmd to build a phonegap project yet (I use phonegap directly) so I have no idea which icon is missing or what names you have to provide in your packager.json file. But the error says that aapt is looking for an icon that is named 'icon.png'. You have not provided this icon in your packager.json.

Make sure that all icons are in your resources/icons folder and are named correctly.

Post a Comment for "Unable To Generate Android Skeleton Project From Sencha Touch Because Of Stbuild Exited With Non-zero Code : 7"