안녕하세요? 착한이입니다.
Android 개발 하다 보면 repo init 명령어 실행 시, 다음 에러가 발생하는 경우 해결 방법입니다.
repo init -u 명령어를 실행 한 후,
...............
repo 1.12.7
gpg: Signature made Thursday, October 17, 2013 AM06:46:04 KST using RSA key ID 692B382C
gpg: Can't check signature: public key not found
error: could not verify the tag 'v1.12.7'
와 같은 에러를 발생한다면 다음과 같은 방법으로 해결이 가능합니다.
$curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
$chmod a+x ~/bin/repo
위의 두 줄의 명령어를 실행해 주고
다시 repo init 명령을 실행하면 됩니다.
그럼 즐거운 개발 하세요.