Home > database >  Should I add debug.keystore to my Semaphore CI build?
Should I add debug.keystore to my Semaphore CI build?

Time:12-28

I'm using Semaphore CI and my build breaks because there is no debug.keystore file found. Should I upload the file to Semaphore?

Here is the error I'm getting:

Execution failed for task ':app:validateSigningDebug'.
> Keystore file '/root/my-app/android/app/debug.keystore' not found for signing config 'debug'.

CodePudding user response:

The answer is yes, keep it in your project in git to build debug builds.

  • Related