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
[Eclipse]Eclipse 자주 쓰는 단축키 (0) | 2014.10.08 |
---|---|
Cross-Cable을 이용한 직접 연결 (0) | 2014.08.03 |
툴체인(Tool-Chain) 설치 (0) | 2014.07.13 |
안드로이드 Full Source 다운로드 및 Build 하기(PDK 환경 구성) (0) | 2014.07.12 |
안드로이드 소스 컴파일 (ubuntu 11.04 + android gingerbread) (0) | 2013.03.17 |
댓글 영역