You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module.exports=function(rm){//.... Options values check and default settingsvaroptions=options.release ? ['--release'] : [];//.... Begin of the promise.then(function(){// Build the platformreturncordova.build({platforms: ['ios'],options: options});})//... Rest of the promise
Releasing an iOS app means also having the developer certificate and provisoning store configured in XCode. We may (or not) leave this part to the developer's responsability.
Tell me what you think of this idea, and thank you !
The text was updated successfully, but these errors were encountered:
Thanks for the input! We already started discussing some things in issue #1. This is definitely something we should add because it works for Android and BlackBerry 10 already. But I am not really an iOS developer so all the help on this would be nice!
Hello there, me again.
As the gulp-cordova-build-android plugin does, I think we should add the possibility to make a release build when compiling an iOS app.
A very trivial implementation would be adding an option object instead of a single boolean to the
ios()
function, like this :And handling it like this in the
index.js
file :Releasing an iOS app means also having the developer certificate and provisoning store configured in XCode. We may (or not) leave this part to the developer's responsability.
Tell me what you think of this idea, and thank you !
The text was updated successfully, but these errors were encountered: