- Eclipse 설치
1.1. 설치 및 제거
+ sudo apt-get install eclipse
+ sudo apt-get remove eclipse
또는
1.2. android SDK 컴포넌트 추가
+Link : http://developer.android.com/sdk/adding-components.html
+ ~/.bashrc 화일을 열어서 자신이 SDK를 위치한 패스로 다음을 설정
export PATH=${PATH}:~/android-sdk-linux_86/tools
+ eclipse의 Window > Perference > Android > SDK 가 설치된 폴더 path를 설정
+ eclipse의 Window > Android SDK and ADV Manager > Available Package > 설치
1.3. Android Devleopment Tools 추가
+ Downloading the ADT Plugin
: Eclipse 3.5
a. Start Eclipse -> Help > Install New Software
b. In the Available Software dialog, click ADD
: https://dl-ssl.google.com/android/eclipse/
+ ADT 설치시 아래의 에러 발생 시에는 eclipse 설치가 잘못되었을듯? 다운로드로 설치 필요
: http://www.eclipse.org/downloads/
Cannot complete the install because one or more required items could not be found. Software being installed: Android Development Tools 0.9.6.v201002051504-24846 (com.android.ide.eclipse.adt.feature.group 0.9.6.v201002051504-24846) Missing requirement: Android Development Tools 0.9.6.v201002051504-24846 (com.android.ide.eclipse.adt.feature.group 0.9.6.v201002051504-24846) requires 'org.eclipse.wst.xml.core 0.0.0' but it could not be fou |
2. Android SRC download [http://source.android.com/source/git-repo.html]
2.1. Required package 설치 (http://source.android.com/download/using-repo)
- Git 1.5.4 or newer and the GNU Privacy Guard.
- flex, bison, gperf, libsdl-dev, libesd0-dev, libwxgtk2.6-dev (optional), build-essential, zip, curl.
$ sudo apt-get install git-core gnupg sun-java5-jdk flex bison gperf libsdl-dev libesd0-dev libwxgtk2.6-dev build-essential zip curl libncurses5-dev zlib1g-dev
*여기서 java관련 install은 시넵틱 패키지로 하는 것 강추!
$sudo apt-get install valgrind
자바 1.5 설치하기
안드로이드는 아직 자바 1.6을 지원하지 않는다. 그래서 1.5 를 설치해야 하는데 문제는 우분투 9.10 에서는 자바 1.5 를 apt-get 으로 설치할수 없다는 것이다.
그래서 아래와 같은 방법이 필요하다.
시스템>관리>소프트웨어 소스를 선택하면 [소프트웨어 소스] 창이 뜬다.
여기서 기타 소프트웨어 탭에서 아래 와 같이 추가해 주자.\ deb http://kr.archive.ubuntu.com/ubuntu/ jaunty multiverse deb http://kr.archive.ubuntu.com/ubuntu/ jaunty-updates multiverse Reference : http://blog.naver.com/minsoub?Redirect=Log&logNo=60104054113 Ubuntu 8.10 이하의 버전이라면 JDK5가 default로 설치되어 있겠지만, 그 이상의 경우 JDK6가 설치되어 버린다. apt-get으로 java1.5를 인스톨 하기 위해서는 먼저, source.list를 수정할 필요가 있다.
/etc/apt/source.list 를 열어 파일의 마지막에 다음의 행을 추가한다. deb http://ko.archive.ubuntu.com/ubuntu/ jaunty multiverse
apt-get으로 java1.5를 인스톨하고, 심볼릭 링크를 JDK5로 바꿔 놓는다. $ sudo apt-get install sun-java5-jdk $ sudo update-java-alternatives -s java-1.5.0-sun $ java -version * link : http://blog.daum.net/r_p_feynman/16133211 |
2.2. Repo설치 (* 중요! root 권한으로 진행하자 - sudo passwd root )
2.2.1. Make sure you have a ~/bin directory in your home directory, and check to be sure that this bin directory is in your path:
$ cd
$ mkdir bin
$ echo $PATH
$ sudo apt-get install curl
2.2.2. Download the repo script and make sure it is excutable:
$ curl https://android.git.kernel.org/repo >~/bin/repo
$ chmod a+x ~/bin/repo
$ mkdir "사용할_android_디렉토리"
$ cd "사용할_android_디렉토리"
$ repo init -u git://android.git.kernel.org/platform/manifest.git
> 보통 여기서 에러가 나온다면 2.1.의 required package가 정확히 설치 되지 않았을 가능성이 높다.
설치 후에는 해당 디렉토리에 저장소 정보가 포함된다.
2.2.3. 소스가져오기
$ repo sync
|
-
Eclipse로 Git 서버에서 소스 받기
-
- http://www.aesop.or.kr/?document_srl=173124
-
Android Git Server
-
-
http://android.git.kernel.org/
[출처] http://shineby.springnote.com/pages/5615649
'프로그래밍 > 안드로이드' 카테고리의 다른 글
Conversion to Dalvik format failed with error 2 (0) | 2011.04.20 |
---|---|
[펌]우분투에 안드로이드 개발환경 설정하기 (0) | 2011.03.28 |
[펌] Android UI (0) | 2011.02.09 |
[펌]java 의 스트링 인코딩이해( 자바 한글 깨짐해법을 위한연구) (0) | 2010.12.08 |
[펌][코딩] 안드로이드 유용한 Activity Flag들 (0) | 2010.07.24 |