Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I send an intent using Android's ADB tools?

share|improve this question

3 Answers

up vote 107 down vote accepted
adb shell
am start -n com.package.name/com.package.name.ActivityName

Or you can use this directly:

adb shell am start -n com.package.name/com.package.name.ActivityName

You can also specify actions to be filter by your intent-filters:

am start -a com.example.ACTION_NAME -n com.package.name/com.package.name.ActivityName 
share|improve this answer
Great!Thank you! – Sean Dec 31 '10 at 5:29
Thank you very much , i've made it shell function in ~/.bash_profile to be much faster function androidrun(){ ant clean debug adb shell am start -n $1/$1.MainActivity } and its usage androidrun com.example.test – AbdullahDiaa Feb 16 at 12:43
adb shell am will give you a list of other options to pass to the am command. You can find out more at developer.android.com/tools/help/adb.html#am – Shurane May 14 at 23:17
@shurane How can I find -a option? – ericyoung May 28 at 14:33
@ericyoung I don't have access to a device offhand, but you can try just running adb shell am, which will list some more detailed help compared to the documentation. – Shurane May 28 at 15:10
show 1 more comment

Or, you could use this:

adb shell am start -n com.package.name/.ActivityName
share|improve this answer
is it possible to do it without specifying the activity name, so that the default main activity will start? – android developer May 16 at 11:13

open ~/.bash_profile and add these bash functions to the end of the file

function androidinstall(){
   adb install -r ./bin/$1.apk
}
function androidrun(){
   ant clean debug
   adb shell am start -n $1/$1.$2
}

then open the Android project folder

androidinstall app-debug && androidrun com.example.app MainActivity
share|improve this answer
Can you explain what app-debug does? – Trevor Senior Mar 5 at 2:11
1  
@TrevorSenior app-debug is the title of the apk file , usually in debug mode the generated apk file is titled "APPLICATION NAME-debug.apk" – AbdullahDiaa Mar 10 at 15:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.