Difference between revisions of "Android tips"
From Opentaps Wiki
Jump to navigationJump to searchm (Protected "Android tips": Sysop page [edit=sysop:move=sysop]) |
|||
(One intermediate revision by the same user not shown) | |||
Line 2: | Line 2: | ||
Eclipse must be running at the same time you're installing Android packages, even if you're using the android GUI tools and not Eclipse. | Eclipse must be running at the same time you're installing Android packages, even if you're using the android GUI tools and not Eclipse. | ||
+ | |||
+ | To run an android device go to tools/ | ||
+ | |||
+ | ./android | ||
+ | |||
+ | Download packages and manages an Android Virtual Devices (AVD) When you create an AVD, specify an SD card. | ||
+ | |||
+ | ./emulator -avd my-avd | ||
+ | |||
+ | Runs your AVD | ||
+ | |||
+ | To install an application go to platform-tools/ | ||
+ | ./adb -install NoteApp.apk |
Latest revision as of 19:04, 3 April 2012
Exception in thread "Installing Archives" org.eclipse.swt.SWTException: Widget is disposed
Eclipse must be running at the same time you're installing Android packages, even if you're using the android GUI tools and not Eclipse.
To run an android device go to tools/
./android
Download packages and manages an Android Virtual Devices (AVD) When you create an AVD, specify an SD card.
./emulator -avd my-avd
Runs your AVD
To install an application go to platform-tools/
./adb -install NoteApp.apk