Dear Sencha and developers,
First of all @Sencha, very very very very nice job !!
I've been able to create an app with sencha touch on windows, packaged the app with the command "sencha app build ios.json".
With the following config:
Code:
{ "versionString":"1.0",
"iconName":"Icon.png",
"applicationName":"packageDemo",
"applicationId":"com.company.myapp",
"bundleSeedId": "MySeedID",
// Your webapp path
"inputPath":"C:/Apps/iOsApps/packageDemo",
// Native app destination
"outputPath":"C:/Apps/iOsApps/ios",
// Destination App Store!!!!
"configuration":"Release",
"platform":"ios",
"deviceType":"iPhone",
// Your Developer Cert
"certificatePath": "C:/Apps/Certificaten/Mycertificate.p12",
"certificatePassword":"thepassword",
"provisionProfile":"c:/Apps/Certificaten/Developer.mobileprovision",
//iPhone Developer
"certificateAlias":"---",
"orientations": ["portrait",
"portraitUpsideDown"
]
}
Response from CMD:
The application was succesfully packaged
The application was succesfully signed
But what now, sencha tools created a nice packagedemo.app in my outputdirectory (C:/Apps/iOsApps/ios).
How can I install this package on my iPhone on Windows?
Thanks in advance,
Nigel Severing