Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RELEASE_KEY_ALIAS and RELEASE_KEY_PATH values for generating key hash

1- I'm trying to generate my key hash for integrating Android with Facebook. I understand that I have to run the following command on prompt (I am on Windows):

keytool -exportcert -alias <RELEASE_KEY_ALIAS> -keystore <RELEASE_KEY_PATH> | openssl sha1 -binary | openssl base64

But where can I get the values of RELEASE_KEY_ALIAS and RELEASE_KEY_PATH? Please help me, I have browsed a lot and haven't find where to get them.

2- A stackoverflow answer said that another way to obtain the hash key was to download this, and run in on my android device. Buy when I import it into Eclipse I get a bunch of errors which I don't know hot to fix. The question was this one

like image 938
Adocad Avatar asked Jan 20 '15 16:01

Adocad


People also ask

What is Release_key_alias?

RELEASE_KEY_ALIAS : Each keystore can contain multiple aliases. You could use different aliases to sign different applications, or you can sign multiple apps with the same alias. The default debug keystore for example only has one alias- androiddebugkey .


3 Answers

When you publish your application to the Google Play Store, you need to sign it with a Java keystore. If you haven't published yet and you don't have a keystore, you will need to configure one now. Check out the Signing Your Application documentation for more information.

RELEASE_KEY_ALIAS: Each keystore can contain multiple aliases. You could use different aliases to sign different applications, or you can sign multiple apps with the same alias. The default debug keystore for example only has one alias- androiddebugkey. If you already have a keystore and don't know what alias to use, run the command keytool -list -v -keystore YOUR_KEYSTORE_FILE to see all the available aliases.

RELEASE_KEY_PATH: This is simple the path to the keystore on your machine. It might look something like C:\Users\somezombie\myproject\release.keystore.

Once you have a keystore, you can run the command you posted to get the hash that Facebook needs. Keep in mind that Facebook might also require that you do this with your debug keystore for debug builds.

like image 137
Bryan Herbst Avatar answered Oct 07 '22 16:10

Bryan Herbst


Another way:

1- Past this code within your onCreate.

2- Run your app.

3- Check your logcat! Your hash will show in red color

public class MainActivity extends AppCompatActivity {

@Override protected void onCreate(Bundle savedInstanceState) {     super.onCreate(savedInstanceState);     setContentView(R.layout.activity_main);      // Add code to print out the key hash     try {         PackageInfo info = getPackageManager().getPackageInfo(                 getPackageName(),  //Or replace to your package name directly, instead getPackageName()  "com.your.app"                  PackageManager.GET_SIGNATURES);          for (Signature signature : info.signatures) {             MessageDigest md = MessageDigest.getInstance("SHA");             md.update(signature.toByteArray());              Log.e("KeyHash:", Base64.encodeToString(md.digest(), Base64.DEFAULT));         }     } catch (PackageManager.NameNotFoundException | NoSuchAlgorithmException e) {      } } 
like image 40
Jonathan Souza Avatar answered Oct 07 '22 15:10

Jonathan Souza


Terminal

For get Debug Hash key in Linux or macOs

keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore | openssl sha1 -binary | openssl base64

For Windows

keytool -exportcert -alias androiddebugkey -keystore "C:\Users\USERNAME\.android\debug.keystore" | "PATH_TO_OPENSSL_LIBRARY\bin\openssl" sha1 -binary | "PATH_TO_OPENSSL_LIBRARY\bin\openssl" base64

Release Key For linux or Macos

 keytool -exportcert -alias androidreleasekey -keystore ~/.android/release.keystore | openssl sha1 -binary | openssl base64

For Windows

 keytool -exportcert -alias androidreleasekey -keystore "C:\Users\USERNAME\.android\release.keystore" | "PATH_TO_OPENSSL_LIBRARY\bin\openssl" sha1 -binary | "PATH_TO_OPENSSL_LIBRARY\bin\openssl" base64
like image 27
Sahil Kumar Avatar answered Oct 07 '22 14:10

Sahil Kumar