Top Menu

Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Wednesday 20 January 2016

How to get SHA1 fingerprint key

Go to your java bin directory via the cmd:
C:\Program Files\Java\jdk1.7.0_71\bin>
Now type in the below command in your cmd:
keytool -list -v -keystore c:\users\your_user_name\.android\debug.keystore -alias androiddebugkey -storepass android -keypass android
example:
keytool -list -v -keystore c:\users\prince\.android\debug.keystore -alias androiddebugkey -storepass android -keypass android
and you will get SHA1
Make sure you are in BIN folder of jdkX.X.X_XX(mine folder name is jdk1.7.0_71) , or else if you don't know what folder name you have then find it by opening java folder and you will see what folder name is but you must be in your BIN folder and then run this command. 
SNAPSHOT:

Read more...

How to switch from C drive to D drive in cmd

Here is very simple method to change the drive, follow as shown below on command prompt.

C:\>cd /d "D:\"
D:\>cd /c "C:\"
The filename, directory name, or volume label syntax is incorrect.
D:\>
Read more...

Tuesday 12 January 2016

Android debug.keystore password

Hey Folks!!

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'                     
        }
        ...
}
Read more...