2014년 4월 27일 일요일

Obtaining authorisation credentials and an API Key

App에서 Google에서 제공하는 API들을 사용하기 위해서는 App을 등록하고 API key를 발급 받는 과정을 거쳐야 합니다. 이 과정은 크게 두 단계로 나눌 수 있습니다.
1. 인증서의 SHA1값 생성
2. Google Development Console에서 API key 값 생성



  • 인증서의 SHA1값 생성

애플리케이션을 배포하기 위해서는 정식으로 발급받은 키를 사용해야 하지만, 개발 과정에서는 디버그용 인증서를 사용할 수도 있습니다. 디버기용 인증서를 사용해서 API 키를 발급받기 위해서는 안드로이드 사용자 폴더(Windows인 경우 C:\Documents and Settings\username\.android, Mac OS인 경우 /Users/username/.android)에서 다음과 같이 keytool 명령을 실행합니다
keytool -list -v -keystore debug.keystore -storepass android -keypass android



  • Google Development Console에서 API key 값 생성

1. Google 계정으로 Google Developers에 로그인

2. Google Developers Console로 이동


3. Create Project


4. API & auth -> APIs에서 원하는 API들을 ON

5. Credentials -> OAuth -> NEW CLIENT ID
  Application type: Installed application
  Installed application type: Android
  Package name:
  Signing certificate fingerprint(SHA1):

6. Create Client ID

7. Credentials -> Public API Access -> Create New Key

8. Android Key

9. Create

2014년 4월 25일 금요일

Taking screenshots in Mac OS X

In Mac OS X 10.9

  • Command-Shift-3: Take a screenshot of the screen, and save it as a file on the desktop
  • Command-Shift-4, then select an area: Take a screenshot of an area and save it as a file on the desktop
  • Command-Shift-4, then space, then click a window: Take a screenshot of a window and save it as a file on the desktop