agiro
agiro

Reputation: 2080

Unity unable to publish to Play Console - Invalid app signature

enter image description here

Here is what I get after waiting for the upload. I'm using latest Unity (2017.3.0f3) with JDK 8 (because 9 wasn't even building). Now the project builds but I can't deploy it to the console nor can I to the Emulator.

Note, I did assign my keystore file and I did write the passwords. I'm not uploading a development build, I double checked that. For the build I was using the old .25 tools (inside the sdk folder I replaced the existing ones). I did that so that I can get a build.

I looked for the error message of course, but couldn't find anything useful.

Upvotes: 1

Views: 409

Answers (1)

Akhil
Akhil

Reputation: 6697

Might be your app signing step failed while producing final apk.

As mentioned here, try resigning your apk with below sample commands

apksigner sign --ks my-release-key.jks --out my-app-release.apk my-app-unsigned-aligned.apk

and validate same using

apksigner verify my-app-release.apk

Upvotes: 2

Related Questions