Bitrise is generating debug keystore for signing app bundle app.aab

My application is using the signing configs like this:
signingConfigs {
release {
keyAlias keystoreProperties[‘keyAlias’]
keyPassword keystoreProperties[‘keyPassword’]
storeFile file(keystoreProperties[‘storeFile’])
storePassword keystoreProperties[‘storePassword’]
}
}

But during the deploy-to-bitrise-io step in build log I see the following output:

Uploading aab file: /Users/vagrant/deploy/app.aab
analyzing aab
generating debug keystore
$ keytool “-genkey” “-v” “-keystore” “/var/folders/xx/xxxxxxxxxxxxxxxxxxxxxxxxx/x/aab-bundleXXXXXXXXXX/debug.keystore” “-storepass” “xxxxx” “-alias” “androiddebugkey” “-keypass” “xxxxx” “-keyalg” “RSA” “-keysize” “2048” “-validity” “10000” “-dname” “C=US, O=Android, CN=Android Debug”

Generating 2,048 bit RSA key pair and self-signed certificate (SHA256withRSA) with a validity of 10,000 days
for: C=US, O=Android, CN=Android Debug
[Storing /var/folders/xx/xxxxxxxxxxxxxxxxxxxxxxxxx/x/aab-bundleXXXXXXXXXX/debug.keystore]

Why is this debug signing happening?

1 Like

Hi @andriy.gulak

Can you please include the builds URL so we can check out the logs?

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.