microsoft / google-play-vsts-extension

Visual Studio Team Services (VSTS) extension for performing continuous delivery to the Google Play store from your automated CI builds
Other
84 stars 57 forks source link

Error: error:1E08010C:DECODER routines::unsupported when uploading #434

Closed celloza closed 6 months ago

celloza commented 6 months ago

Hi

I have a (very) simple Release pipeline that uploads an aab file to the Play Store:

image

This step fails, with a cryptic error message stating Error: error:1E08010C:DECODER routines::unsupported:

image

I'm guessing this is somehow related to the certificate, as that looks like an OpenSSL error? The bundle is good however... I can upload it to Play Store manually.

Anyone seen this before?

celloza commented 6 months ago

This issue was related to the Private Key used on the Service Connection between AzDO and Play Store. Most likely a copy/paste issue.

a2741890 commented 1 week ago

For anyone who has this issue, I found that even thought the description of the field on DevOps makes it feel like (well at leaset for me) you need just the private key part , you actually need everything rather than just "YourPrivateKeyHere": Copy and paste the whole private_key value inside the quotes, i.e. "-----BEGIN PRIVATE KEY-----\nxxxxx\n-----END PRIVATE KEY-----\n"

image