Home | History | Annotate | Download | only in source

Lines Matching full:path

18 <pre>cd /path/to/android/root <br>make     # and wait a while, if you haven't done this <br></pre>
22 <p>Eclipse needs a list of directories to search for Java files. This is called the "Java Build Path" and can be set with the .classpath file. We have a sample version to start you off.
24 <pre>cd /path/to/android/root <br>cp development/ide/eclipse/.classpath .<br>chmod u+w .classpath # Make the copy writable <br></pre>
54 <li>Select "Create project from existing source", enter the path to your Android root directory, and click Finish.
78 Adding apps to the build path
84 <li>Select "Java Build Path" from the left-hand menu.
95 <p>When you're done, the "source folder" path in the list should look like android/packages/apps/<i>YourAppName</i>
101 <p>To work on Java developer tools, the principle is the same, except you specify /path/to/tool when using the option "Create project from existing source."
103 <p>Once the project is created, you need to set up the Java Build Path:
109 <li>Select "Java Build Path" from the left-hand menu.
143 <li>Right click on a project, "Build Path" "Configure Build Path..."
162 <pre>cd /path/to/android/root <br>. build/envsetup.sh <br>lunch 1 # to build the emulator <br>make # if you didn't already do this <br>emulator # you should see a GUI picture of a phone <br></pre>
165 <pre>cd /path/to/android/root <br>ddms # you should get a splufty debugging console <br></pre>