NameDateSize

..05-Nov-20144 KiB

.gitignore05-Nov-201440

artifacts/05-Nov-20144 KiB

build.gradle05-Nov-20149 KiB

buildConfig/05-Nov-20144 KiB

changes.txt05-Nov-201438.8 KiB

dictionary.txt05-Nov-20142.8 KiB

features/05-Nov-20144 KiB

plugins/05-Nov-20144 KiB

pom.xml05-Nov-20147.7 KiB

README_WINDOWS.txt05-Nov-20141.2 KiB

scripts/05-Nov-20144 KiB

settings.xml05-Nov-2014469

sites/05-Nov-20144 KiB

TYCHO_BUILD05-Nov-2014159

README_WINDOWS.txt

1[RM 20080623]
2
31- To build the Eclipse plugin:
4Under Linux:
5$ cd your-device-directory
6$ tools/eclipse/scripts/build_server.sh destination-directory
7
8This will create an "android-eclipse.zip" in the selected destination directory.
9Then in Eclipse, you can use Help > Software Updates > Find and Install > Search for new Features > Next > New Archived Site > select the new android-eclipse.zip. Then with the new archive checked, click Finish/Next.
10
11
122- To build a Windows SDK, you need two steps:
13a- First you need to create a Linux SDK:
14
15Under Linux:
16$ cd your-device-directory
17$ make sdk
18Note: if you get an error when building the javadoc, make sure you use a Java SDK 1.5
19Note: if you get an error when building layoutlib, make sure you use a Java SDK 1.5.0-b13.
20
21b- Once you have a Linux SDK, you can create a Windows SDK:
22
23You need a Windows machine with XP or Vista and Cygwin.
24- Installer at http://sources.redhat.com/cygwin/
25- Set Default Text File Type to DOS/text, not Unix/binary.
26- Select packages autoconf, gcc, g++, bison, python, zip, unzip, mingw-zlib
27- Suggested extra packages: emacs, wget, openssh, rsync
28
29Then under Cygwin:
30$ cd your-device-directory
31$ tools/buildbot/_make_windows_sdk.sh path-to-the-linux-sdk.zip destination-directory
32
33