I went through the publishing guide.
Whenever I want to build a release for our internal testing, I have to do a release build, and sign it in CLI.
This is something I repeat everyday. Is there a way to automate this build and signing process with a keystore?
Or could I write a script to combine all the publishing steps into just one script?
Alternatively, is there another way to distribute apps easily for your teams internal testing?
Did you have a look at Ionic View?
Thanks for the reply. I’m looking for a way to distribute the built app without having to download the Ionic View app. (sometimes we forward these .apk files for reviewing as well)
Ok, well you can certainly write a shell script or similar that automates the various steps. You can specify a password with the -storepass
and -keypass
options when calling jarsigner to avoid any manual steps. (Although this way anybody with access with that script can see the password of course.)