| There are still issues with creating a debug and release version of the android showcase application, with it currently failing with this error for release builds:
* What went wrong: |
A problem was found with the configuration of task ':app:packageRelease'. |
> No value has been specified for property 'signingConfig.storePassword'.
|
This seems to be down to this config here https://github.com/aerogear/android-showcase-template/blob/master/app/build.gradle#L20-L25 where i presume it is always going to try and sign the release build and expects those things to be set. The way we have setup the android builds previously (for Mobile CI/CD) is that this signing of the release build would be done separately using the supplied credentials see https://github.com/mikenairn/android-showcase-template/blob/5xjenkinsfile/Jenkinsfile#L25-L34. craig Brookes Summers Pittman Daniel Passos What's the best way to get this build-able for debug and release builds via the Mobile CI/CD service? Is there a reason we need to have the code signing config setup the way it is currently and trying to sign the release build during assembleRelease? |