꿈소년의 개발 이야기

Repo를 이용한 Android Full source 받기 본문

Android Development

Repo를 이용한 Android Full source 받기

꿈소년 2012. 12. 6. 11:23
반응형

Repo를 이용해서 안드로이드 소스를 받기 위해 작업 하던 중 아래와 같은 에러가 발생했다. 


error: Exited sync due to gc errors


뭐 때문인지 인터넷 검색을 해보니 아래와 같은 내용이 있었다.

(링크 참조)


The latest version of repo now requires Git 1.7.2 or newer, as that is when the -c flag was introduced. 


https://groups.google.com/forum/?fromgroups=#!topic/repo-discuss/tnIWemm8M6k


아,,, repo 버전이 변경됨에 따라 git 버전도 새 걸로 변경해야 한다. 


1. sudo add-apt-repository ppa:git-core/ppa

2. sudo apt-get update

3. sudo apt-get install git-core 

4. repo sync


이렇게 하니 Android 4.1.2 소스가 잘 받아진다. 


repo 랑 git 버전은 꾸준히 업데이트 해놓아야 겠다.