after importing the der file into the keystore, following
keytool -keystore my-release-key.keystore -importcert
-file ~/Downloads/upload_cert.der -alias uploadcert
I get an error when trying to build an APK release
trusted certificate entries are not password-protected
If I add
-protected
for import, i geth
keytool error: java.lang.IllegalArgumentException: password can't be null
and if I pass the password after protection, I get a usage message. not sure how to pass the password.
Any idea if I am on the right track for signing up with google upload der der certificate?
source
share