Create and delete an android virtual device
Host OS: Windows
How to create and run an android virtual device <AVD> though terminal
$android list [List existing target and virtual device]
C:\android dev\android-sdk-windows-1.5_r2\tools>android.bat ...
Listen Audio or Watch video on Android
Download any media player
like Meridian Video Player (Worked fine)
1- Use adb push command to throw some media files (audio/video) to a folder in sdcard /sdcard/Video
./adb push /navigate_to_media_file/*.mp3 ...
Launch app through adb shell
This is about how to launch android application from the adb shell.
Command: am
Look for invoking path in AndroidManifest.xml
Browser app::
# am start -a android.intent.action.MAIN ...
How to install .apk files on Android Emulator
Its handy to test android applications on emulator included in SDK for testing purpose or if you don’t have an actual device.
Remember you don’t have to be a developer to ...
Develop Android Application [ Required Basic knowledge ]
Explore Android API Demos:
Just import the API demos in Eclipse, contained in Android SDK. You need to know how they build the applications. It will clean your most of confusions.
Android ...
