blob: adfd80b8ad92da9f23cff609d030802e606da2b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
PACKAGES MGMT
sudo android update sdk
EMULATOR
emulator -help-avd
emulator -help-virtual-device
emulator -help-disk-images
android -h
android list avd
android list targets
android create avd -n foo -t 1 --abi armeabi-v7a
emulator @foo
- http://developer.android.com/tools/debugging/debugging-log.html
adb logcat ActivityManager:I MyApp:D *:S
PROJECT
android update project -p . --target 1
|