Software_Platform/Android

Android source download (안드로이드 소스 다운로드)

Roien 2015. 4. 1.
반응형

1. 개발 환경 설정



0) 기본 utility 설치

기본적으로 다음의 tool 들이 Ubuntu 12.04 기준으로 설치 되어 있어야 함

$ sudo apt-get install bison g++-multilib git gperf libxml2-utils make zlib1g-dev:i386 zip

git config --global user.email you@email.com
git config --global user.name yourname



1) Installing Repo

$ mkdir ~/bin
$ PATH=~/bin:$PATH

$ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
$ chmod a+x ~/bin/repo



2) Initializing a Repo client

$ mkdir WORKING_DIRECTORY
$ cd WORKING_DIRECTORY

$ repo init -u https://android.googlesource.com/platform/manifest


master branch를 다운 받으려면, 다음과 같이 repo init
$ repo init -u https://android.googlesource.com/platform/manifest -b android-4.0.1_r1

branch 확인은 다음 site에서
https://source.android.com/source/build-numbers.html#source-code-tags-and-builds

2015-04-01 현재 가장 최신의 branch는 5.1.0_r3
LMY47Iandroid-5.1.0_r3LollipopNexus 5, Nexus 6



3) Downloading the Android Source Tree

$ repo sync



4) Using Authentication

다음 url로 이동해서 password 설정
https://android.googlesource.com/new-password


반응형

댓글