Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 알뜰폰
- 국민임대
- 국임
- 펜타카메라
- 스마트 멀티탭
- 평강랜드
- 분양
- 장기전세
- 2018 공급계획
- 워렌버핏
- 2017년 분양계획
- 일반근로자
- LG
- 공공분양
- AI 카메라
- 퇴직한 직장인
- KT
- SH
- 공공임대
- 3자녀우선
- 소득조회
- sh공사
- AOFO Smart power
- 시놀로지
- 강환국
- 가치투자
- 통신3사
- 국립항공박물관
- 장전
- 행복주택
Archives
- Today
- Total
초코비니
안드로이드 릴리즈 키해시 얻기 본문
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
- First open a terminal (open a command prompt in windows).
- Navigate in the terminal to the directory where your Android debug.keystore is stored.
- Mostly it will located under “/Users/user_name/.android/” (In Windows will be C:\Documents and Settings\.android).
Once you are in the “.android” directory, run the following command.
keytool -exportcert -alias androiddebugkey -keystore debug.keystore | openssl sha1 -binary | openssl base64
When it prompts you for a password, type android and hit Enter
Copy the value printed in the terminal that ends with an “=” and paste it in the Key Hash field in Facebook. Then click the Save Changes button.
private void getAppKeyHash() {
try {
PackageInfo info = getPackageManager().getPackageInfo(getPackageName(), PackageManager.GET_SIGNATURES);
for (Signature signature : info.signatures) {
MessageDigest md;
md = MessageDigest.getInstance("SHA");
md.update(signature.toByteArray());
String something = new String(Base64.encode(md.digest(), 0));
Log.d("Hash key", something);
}
} catch (Exception e) {
// TODO Auto-generated catch block
Log.e("name not found", e.toString());
}
}
출처 : http://stackoverflow.com/questions/6661993/how-to-generate-key-hash-for-facebook-sdk-in-mac
'안드로이드' 카테고리의 다른 글
This Activity already has an action bar supplied by the window decor. Do not request Window.FEATURE_ACTION_BAR and set windowActionBar to false in your theme to use a Toolbar instead. (0) | 2015.09.03 |
---|---|
DateTimePicker (0) | 2015.08.31 |
MaterialEditText (0) | 2015.08.31 |
[안드로이드] Preference – UI 정보, 간단한 변수 저장하기 (0) | 2015.08.30 |
[안드로이드] jar 추가시 빌드 에러 - duplicate files during packaging of APK (0) | 2015.08.28 |
Comments