Software_Platform/Android
Android source download (안드로이드 소스 다운로드)
반응형
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
LMY47I | android-5.1.0_r3 | Lollipop | Nexus 5, Nexus 6 |
3) Downloading the Android Source Tree
$ repo sync
4) Using Authentication
다음 url로 이동해서 password 설정
https://android.googlesource.com/new-password
반응형
'Software_Platform > Android' 카테고리의 다른 글
[CVS] repo 특정 git 만 sync 하기 (0) | 2015.04.30 |
---|---|
Android Lollipop 5.1.0_r3 코드 size (안드로이드 코드 사이즈) (0) | 2015.04.03 |
Nexus5 Lollipop 5.1 rooting (0) | 2015.03.24 |
Android SDK installation (0) | 2015.03.22 |
Android Studio Installation (안드로이드 스트디오 설치) (0) | 2015.03.22 |
댓글