linux:/Android/android-sdk-linux_x86-1.0_r1/tools # adb shell am start
-a android.intent.action.call tel:123456
Starting: Intent { action=android.intent.action.call data=tel:123456 }
Error: Activity not started, unable to resolve Intent
{ action=android.intent.action.call data=tel:123456 flags=0x10000000 }
linux:/Android/android-sdk-linux_x86-1.0_r1/tools # ./adb shell am
start -a android.intent.action.CALL tel:123456
Starting: Intent { action=android.intent.action.CALL data=tel:123456 }On Apr 28, 9:19 am, "[email protected]" <[email protected]> wrote: > Hi:Thx Dianne Hackborn > > i used "adb shell am start my application" to launch activities. > but it's error > > The error INFO: > > Starting: Intent { action=android.intent.action.VIEW data=hello.apk } > Error: Activity not started, unable to resolve Intent > { action=android.intent.action.VIEW data=hello.apk flags=0x10000000 } > > or > > Starting: Intent { action=android.intent.action.VIEW data=/data/app/ > com.goodle.android.hello.apk } > Error: Activity not started, unable to resolve Intent > { action=android.intent.action.VIEW data=/data/app/ > com.goodle.android.hello.apk flags=0x10000000 } > > i can't how to solution it. > > Thx > > SmallBox > > On Apr 28, 1:01 am, Dianne Hackborn <[email protected]> wrote: > > > Use "adb install <local path>" to install, "adb uninstall <package name>" to > > uninstall. > > > And use "adb shell am start ..." to launch activities. > > > On Mon, Apr 27, 2009 at 8:19 AM, [email protected] > > <[email protected]>wrote: > > > > Oh yes.DineshG's words reminds me of the APP's original location.I > > > forgot it. > > > thk u very much. > > > > On Apr 27, 10:52 pm, DineshG <[email protected]> wrote: > > > > I think for removing applicxation you have to removce it fro mits > > > > original location > > > > adb install puts the .APK in /data/app > > > > > so while removing you should use command > > > > > adb shell rm /data/app/com.google.anroid.hello.apk > > > > > On Apr 27, 5:21 am, "[email protected]" <[email protected]> wrote: > > > > > > u can use this command install ur application on android emulator > > > > > # adb install hello.apk > > > > > > removed ur application > > > > > #adb shell rm com.google.anroid.hello.apk > > > > > > On Apr 27, 1:31 pm, Jaewon <[email protected]> wrote: > > > > > > > Hi all. > > > > > > > I'm using Android Emulator and adb shell. > > > > > > And I'm very wondering how to launch a standard application such as > > > > > > browser in adb shell. > > > > > > > I think app_process should be used to do that. > > > > > > But I don't know the exact way. > > > > > > > Does anyone know about that? > > > > > > > Thx.- Hide quoted text - > > > > > - Show quoted text - > > > -- > > Dianne Hackborn > > Android framework engineer > > [email protected] > > > Note: please don't send private questions to me, as I don't have time to > > provide private support, and so won't reply to such e-mails. All such > > questions should be posted on public forums, where I and others can see and > > answer them. --~--~---------~--~----~------------~-------~--~----~ unsubscribe: [email protected] website: http://groups.google.com/group/android-porting -~----------~----~----~----~------~----~------~--~---
