Hello, I have a problem with building a native ios app on windows.
To be precise I tried a lot of different versions of sencha cmd and sdk. My latest attempts were executed according to this guide. I am using:
Sencha cmd v3.0.2.288 and 2.1.1 framework version.
I created all the provisioning portal certificates etc. Got my bundle seed id. I generate the project then follow up with a production (or native I tried both) build. finally I try to package it using
sencha app package build packager.json
As I understand it the result (outpath) should contain a file MyApp.app that I can upload to my iTunes and further onto my device.
The thing is I get no file with that extension and the command line does not prompt me at all after I execute the last command. I get the cmd version empty line and that's it. However a file structure is created in the destenation folder.
The attached picture shows the output and here is my config file:
Code:
{ "applicationName":"BusinessGallery",
"applicationId":"com.dps.businessgallery",
"bundleSeedId":"xxxxxxxx",
"versionString":"1.0",
"versionCode":"1",
"icon": {
"57":"resources/icons/Icon.png",
"72":"resources/icons/Icon~ipad.png",
"114":"resources/icons/Icon@2x.png",
"144":"resources/icons/Icon~ipad@2x.png"
},
"inputPath":"build/BusinessGallery/production/",
"outputPath":"build/",
"configuration":"Release",
"platform":"iOS",
"deviceType":"Universal",
"certificatePath":"ios_dev.p12",
"certificatePassword":"*******",
"provisionProfile":"Test_Profile.mobileprovision",
"sdkPath":"/path/to/android-sdk",
"androidAPILevel":"8",
"permissions":[
"INTERNET",
"ACCESS_NETWORK_STATE",
"CAMERA",
"VIBRATE",
"ACCESS_FINE_LOCATION",
"ACCESS_COARSE_LOCATION",
"CALL_PHONE"],
"orientations": [
"portrait",
"landscapeLeft",
"landscapeRight",
"portraitUpsideDown"
]
}
I am stuck at this point for at least a week now and since there is no error message I am quite clueless about what is going on. I am guessing this miight be an error on my part or some sort of bug. Any help will be much appriciated.
senchapost.jpg