• Home
  • Raw
  • Download

Lines Matching refs:SDK

1 Subject: How to build use a Cupcake Android SDK & ADT Eclipse plugin.
40 This explains how to use the "new" SDK provided starting with cupcake.
41 The new SDK has as a different structure than the pre-cupcake ones.
44 - The new SDK does not work with older Eclipse plugins (ADT 0.8)
53 First you will need to grab the zip of the SDK for your platform or build it
57 Unzip the SDK somewhere. We'll call that directory "SDK" in command-line
100 the new SDK folder that you unzipped in paragraph 2.
113 The SDK comes with a 1.5 platform. Select it and close the properties panel.
135 capabilities of the new SDK.
169 $ SDK/tools/android update project --path /path/to/my-project
174 $ SDK/tools/android update project --path .
189 $ SDK/tools/android create project --path /path/to/my/project --name ProjectName
215 $ SDK/tools/emulator -help-virtual-device
237 There is a new tool called "android" in the SDK that lets you know which
240 A target is a specific version of Android that you can use. By default the SDK
247 To learn about available targets in your SDK, use this command:
249 $ SDK/tools/android list targets
264 $ SDK/tools/android list avds
282 $ SDK/tools/android create avd --name my_avd_name --target 1
293 $ SDK/tools/android create avd
304 $ SDK/tools/emulator @my_avd_name
309 $ SDK/tools/emulator -help-virtual-device
355 $ SDK/tools/android create avd --name client --target 1 --sdcard 16M --skin HVGA
356 $ SDK/tools/android create avd --name server --target 1 --sdcard 32M --skin HVGA-P
357 $ SDK/tools/emulator @server &
358 $ SDK/tools/emulator @client &
366 This completes the howto guide on how to use the new Cupcake SDK.