Exporting to Android error: "Could not find keystore"

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Deban
:warning: Old Version Published before Godot 3 was released.

I have a little test proyect, it exports to windows correctly but fails to android.

I created the keystore with the data from the docs:

keytool -keyalg RSA -genkeypair -alias androiddebugkey -keypass android -keystore debug.keystore -storepass android -dname "CN=Android Debug,O=Android,C=US" -validity 9999

And I also try with the data from another question:

keytool -keyalg RSA -genkeypair -alias androiddebugkey -keypass android -keystore debug.keystore -storepass android -dname "CN=Android Debug,O=Android,C=US" -validity 9999 -sigalg MD5withRSA

Of course I added the keystore to the config of android:

Here is the error:

Thanks

:bust_in_silhouette: Reply From: volzhs

First screenshot is for Debug.
You can see Debug Keystore, Debug Keystore User, Debug Keystore Pass.
That’s not for the exporting.
You can find Keystore section on Export settings.

Yes, that was it.
Thanks

Deban | 2016-08-31 19:12