Android 소스를 다운 받고 환경 구축을 할 때, jdk를 깔아야 한다.
Android 웹사이트에는 다음과 같이 하라고 나와 있다.
Installing the JDK
The Sun JDK is no longer in Ubuntu's main package repository. In order to download it, you need to add the appropriate repository and indicate to the system which JDK should be used.
Java 6: for Gingerbread and newer
$ sudo add-apt-repository "deb http://archive.canonical.com/ lucid partner"
$ sudo apt-get update
$ sudo apt-get install sun-java6-jdk
Java 5: for Froyo and older
$ sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu hardy main multiverse"
$ sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu hardy-updates main multiverse"
$ sudo apt-get update
$ sudo apt-get install sun-java5-jdk
Note: The lunch command in the build step will ensure that the Sun JDK is used instead of any previously installed JDK.
위와 같은 방법은 우분투 10.x 에서는 잘 되나, 11.x(11.04 특히)에서는 되지 않는다.
그럴 땐 다음과 같이 하면 jdk6을 깔 수 있다.
sudo add-apt-repository ppa:ferramroberto/java
sudo apt-get update
sudo apt-get install sun-java6-jdk sun-java6-plugin
'안드로이드 > 포팅' 카테고리의 다른 글
pthread_cancel() (0) | 2013.02.04 |
---|---|
안드로이드 젤리빈 소스 다운로 (0) | 2012.10.03 |
안드로이드 아이스크림샌드위치 vs 진저브레드 (0) | 2012.04.07 |
ramdisk.img 디버깅 방법 (0) | 2012.03.18 |
안드로이드 쉘 상에서 시스템 분석을 위한 명령 (0) | 2011.04.24 |