Re: Integrate binaries (apk / ipa) upload to stores into Cordova CLI

2015-11-10 Thread Connor Pearson
they developers at least have a > choice of using this "third party" node module. > > -Original Message- > From: Kerri Shotts [mailto:kerrisho...@gmail.com] > Sent: Tuesday, November 10, 2015 12:26 PM > To: Maxime Alexandre ; > dev@cordova.apache.org > Subjec

RE: Integrate binaries (apk / ipa) upload to stores into Cordova CLI

2015-11-10 Thread Parashuram N
ubject: Re: Integrate binaries (apk / ipa) upload to stores into Cordova CLI Useful or not, I don’t think uploading binaries belongs in core. There are plenty of third-party offerings that work well, and they shoulder the support as well. Bringing uploading into core is just one more thing that Co

Re: Integrate binaries (apk / ipa) upload to stores into Cordova CLI

2015-11-10 Thread Kerri Shotts
-saving, it should be a third-party plugin/add-on, not core, in my opinion. ~ Kerri Shotts From: Maxime Alexandre Reply: dev@cordova.apache.org Date: November 10, 2015 at 4:35:46 AM To: dev@cordova.apache.org Subject:  Re: Integrate binaries (apk / ipa) upload to stores into Cordova CLI I

Re: Integrate binaries (apk / ipa) upload to stores into Cordova CLI

2015-11-10 Thread Maxime Alexandre
I get your point, still think though that it would be a useful feature for many developers because it saves lots of time when you have your apps already set up. Cordova could later work on making Continuous Integration an easy step. Talking about documenting the process of adding one app to the st

Re: Integrate binaries (apk / ipa) upload to stores into Cordova CLI

2015-11-09 Thread Tommy Williams
Agree. The actual submission is such a small part over the overall pain. There are plenty of places we could make the day to day development better for all platforms before submission. On 10 November 2015 at 06:43:42, Jesse (purplecabb...@gmail.com) wrote: Ultimately this is optimizing 1% of t

Re: Integrate binaries (apk / ipa) upload to stores into Cordova CLI

2015-11-09 Thread Jesse
Again, not allowed by Apple, so I would rather not waste time with this. + The current implementation is probably not how we would want to extend our tooling. Shoe-horning a cli plugin into the runtime plugin definition is interesting, but fragile. Ultimately this is optimizing 1% of the process o

Re: Integrate binaries (apk / ipa) upload to stores into Cordova CLI

2015-11-09 Thread Maxime Alexandre
Thanks Connor for this script. It's "simpler" for iOS because you don't need to modify Cordova source files, whereas for Android, i need to change the gradle build file to integrate more instructions. I'll try your script and get back to you. -- Maxime On Mon, Nov 9, 2015 at 12:55 PM, Connor Pea

Re: Integrate binaries (apk / ipa) upload to stores into Cordova CLI

2015-11-09 Thread Connor Pearson
If you're interested, I created a proof of concept for iOS using deliver. https://github.com/cjpearson/cordova-package-upload It works as an after_build hook. If you add --upload to the build command, it will upload the ipa to the store. On Mon, Nov 9, 2015 at 5:09 AM, Maxime Alexandre < maxime.a

Re: Integrate binaries (apk / ipa) upload to stores into Cordova CLI

2015-11-09 Thread Maxime Alexandre
Hey! Thanks everyone for your answers. Just to be more precise, this upload command could, at first, only upload the binaries and not creating the whole process (meta, images, descriptions...) which is quite complex as we all know. So it should first focus on uploading a new binary to an existing p

Re: Integrate binaries (apk / ipa) upload to stores into Cordova CLI

2015-11-07 Thread Carlos Santana
Bless you Shaz :-) Yeah officially supporting unofficial methods not good idea. This is similar as old ios-sim or ios-deploy Before solving uploading, I would prefer to see improved docs and UX for packaging. For uploading this is something that lives in user land tools. With this said would

Re: Integrate binaries (apk / ipa) upload to stores into Cordova CLI

2015-11-06 Thread Connor Pearson
Would a hook or plugin work better then? On Fri, Nov 6, 2015 at 8:42 PM, Shazron wrote: > The problem with using "unofficial" methods is, at least for some of > our code contributors *cough IBM*, it won't fly with them, and IMO I'd > rather not support unofficial methods as well in this project.

Re: Integrate binaries (apk / ipa) upload to stores into Cordova CLI

2015-11-06 Thread Shazron
The problem with using "unofficial" methods is, at least for some of our code contributors *cough IBM*, it won't fly with them, and IMO I'd rather not support unofficial methods as well in this project. e.g. http://stackoverflow.com/a/13232352 which appears to show a command line tool that allows

Re: Integrate binaries (apk / ipa) upload to stores into Cordova CLI

2015-11-06 Thread Parashuram N
How about sending a PR to the docs, and list these tools in those docs ? These tools could be useful for folks who are looking at Cordova continuous integration scenarios. Speaking of which, what do folks on this usually use for Cordova continuous integration ? On 11/6/15, 4:58 PM, "Conno

Re: Integrate binaries (apk / ipa) upload to stores into Cordova CLI

2015-11-06 Thread Connor Pearson
There are some command line tools that support uploading an ipa ( https://github.com/nomad/shenzhen, https://github.com/fastlane/deliver) so it is possible. I don't think Apple officially supports this though, so it may be prone to breaking. On Fri, Nov 6, 2015 at 7:08 PM, Tommy Williams wrote:

Re: Integrate binaries (apk / ipa) upload to stores into Cordova CLI

2015-11-06 Thread Tommy Williams
I am with Jesse… I think it would be great, but wouldn’t hold my breath. Also agree documenting the process would be fantastic both as a reality check and a resource for our users. The more we can provide after "Hello World", the better. - tommy On 7 November 2015 at 09:54:41, Jesse (purpleca

Re: Integrate binaries (apk / ipa) upload to stores into Cordova CLI

2015-11-06 Thread Jesse
Yes, I too see the value, but I think it's a bit of wishful thinking. I would love to be proven wrong though. There are vast differences between the stores submission processes, as well as the meta that they require. In the case of iOS, you would likely need to scrape the website and live with the

Re: Integrate binaries (apk / ipa) upload to stores into Cordova CLI

2015-11-06 Thread Parashuram N
I think this is a great idea. I understand that we already have a package command and this could be a logical extension. However, will this be a functionality that can be supported on multiple stores ? I am not sure if this is legal on an iOS store. On 11/6/15, 2:41 AM, "M Alexandre" wrote

Integrate binaries (apk / ipa) upload to stores into Cordova CLI

2015-11-06 Thread M Alexandre
Hello Cordova devs, Because Cordova CLI is a great tool for command line for almost everything about creating, building hybrids apps, it would be great to include a new command for uploading the generated binaries to the app stores. As far as I know, nothing exists at the moment in Cordova. I suc