Google Map API Key 신청
1, 안드로이드 맵스 API Key를 신청하기 전에 개발 환경에서 키스토어의 MD5 인코딩을 얻어 Google 웹 사이트에서 서명하면
debug."keystore 파일 경로는 Eclipse IDE의""Window - Preferences - Android - Build""에서 찾을 수 있습니다."
$ keytool -list -alias androiddebugkey -keystore/home/cat/.android/debug.keystore -storepass android androiddebugkey, 2012-9-1, PrivateKey Entry, 인증 지문(MD5): 97:33:40:5E: FD: XX: XX: XX: XX: XX: YY: YYY: ZZ: ZZ: 19:11
Keytool Option
Description
-list
Print an MD5 fingerprint of a certificate.
-keystore <keystore-name>.keystore
The name of the keystore containing the target key.
-storepass <password>
A password for the keystore. As a security precaution, do not include this option in your command line unless you are working at a secure computer. If not supplied, Keytool prompts you to enter the password. In this way, your password is not stored in your shell history.
-alias <alias_name>
The alias for the key for which to generate the MD5 certificate fingerprint.
-keypass <password>
The password for the key. As a security precaution, do not include this option in your command line unless you are working at a secure computer. If not supplied, Keytool prompts you to enter the password. In this way, your password is not stored in your shell history.
다음에 이 MD5 값을 다시 볼 필요가 있으면 $keytool-list-keystore/home/cat/.android/debug.키스토어 명령, 키스토어 비밀번호 입력:android에서
Keystore 유형: JKS Keystore 공급자: SUN 당신의 키스토어는 1 입력 androiddebugkey, 2012-9-1, PrivateKeyEntry, 인증 지문(MD5): 97:33:40:5E:FD:X:XX:XX:XX:YY:YY:ZZ:ZZ:19:11
2, 액세스https://developers.google.com/android/maps-api-signup?hl=zh- CN, 입력한 MD5 인코딩, Android Maps API Key 신청
<com.google.android.maps.MapView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="0mP5XXn2YY7wzy_2ZZc4OObP_WCQQX9hPPpLMMQ"
/>
3, 프로젝트의layout 파일에 Android Maps API Key 가져오기
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.