0

I already tried this, this and this but my problem doesnt solve. Am not able to understand what am doing wrong. here is my signing Configs

  signingConfigs {

    config {
        keyAlias 'changeit'
        keyPassword 'changeit'
        storeFile file('C:/Users/abc/.android/debug.keystore')
        storePassword 'changeit'
    }
}

And this is the error it is showing when am trying to run the application Error:Failed to read key changeit from store "C:\Users\abc\.android\debug.keystore": Keystore was tampered with, or password was incorrect

cant figure out what to do.. thanks for the help in advance.

Edit - Adding screenshot of the error.enter image description here

Community
  • 1
  • 1
Mayank Bhatnagar
  • 1,316
  • 2
  • 13
  • 21

1 Answers1

0

If you want to sign your for release app, generate a new key and sign it with that: https://developer.android.com/studio/publish/app-signing.html

DataDino
  • 1,507
  • 1
  • 15
  • 30
  • So you generated a new keystore, alias, and password, then after entering that in your release configuration you got the same error? – DataDino Sep 23 '16 at 11:52