Hey Folks!!
If you forget your android debug.keystore password !!
Don't you worry now, here is the solution for it.
If you forget your android debug.keystore password !!
Don't you worry now, here is the solution for it.
Keystore name: "debug.keystore"
Keystore password: "android"
Key alias: "androiddebugkey"
Key password: "android"
CN: "CN=Android Debug,O=Android,C=US"
If you want to configure them in gradle then it should be look like this
signingConfigs {
debug {
storeFile file('PATH_TO_HOME/.android/debug.keystore')
storePassword 'android'
keyAlias 'AndroidDebugKey'
keyPassword 'android'
}
...
}
No comments:
Post a Comment