• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

artifacts/22-Nov-2023-302258

buildConfig/22-Nov-2023-563359

features/22-Nov-2023-2,1521,746

plugins/22-Nov-2023-269,225178,681

scripts/22-Nov-2023-1,527956

sites/22-Nov-2023-704692

.gitignoreD22-Nov-202340 43

README_WINDOWS.txtD22-Nov-20231.2 KiB3323

TYCHO_BUILDD22-Nov-2023159 74

build.gradleD22-Nov-20239 KiB197169

changes.txtD22-Nov-202338.8 KiB869782

dictionary.txtD22-Nov-20232.8 KiB363362

pom.xmlD22-Nov-20237.7 KiB197154

settings.xmlD22-Nov-2023469 97

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