• Building
  • "could not find keystore" when exporting for Android

Hi,

I'm trying to export for Android, but get a "could not find keystore" error.

I set the debug keystore according to http://docs.godotengine.org/en/latest/development/compiling/compiling_for_android.html.

However, I'm trying to make a non-debug build. Do I need to set a keystore path for this as well? I noticed that there's a "keystore/Release" field in the export settings, but what should I select there? By default it's empty and in my ~/.android folder, I can only find the debug.keystore.

Hi,

thanks.

For some reason, the menu mentioned in the documentation doesn't exist.

However, I was able to generate a keystore file using:

keytool -genkey -v -keystore my-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000

(the file then showed up in my user home directory).

The Android build worked now! :)