I want to launch the App Info screen for my app through adb. I tried to fire an intent using "adb shell am start" but nothing seems to work. I need something that works at least for API levels 18 and 19. Can anyone help?
Asked
Active
Viewed 2,041 times
1
-
Have a look on [this](http://stackoverflow.com/questions/4567904/how-to-start-an-application-using-android-adb-tools) – Rahul Matte Jun 17 '14 at 16:32
-
I want to start the info screen for the app, not the app itself – yonih Jun 18 '14 at 08:38
-
Similar question: http://stackoverflow.com/questions/18589910/android-launch-app-info-dialog-via-adb-shell-am – Meir Gerenstadt Oct 29 '15 at 10:58
2 Answers
6
Open App Info
adb shell am start -a android.settings.APPLICATION_DETAILS_SETTINGS package:com.your.packagename
For Example: if you want to open Chrome App Info
adb shell am start -a android.settings.APPLICATION_DETAILS_SETTINGS package:com.android.chrome

abidkhan303
- 1,761
- 3
- 18
- 31
-1
adb shell am start -n yourpackagename/.activityname

Nickolai Astashonok
- 2,878
- 3
- 20
- 23
-
This starts the app itself. What I want to do is start the App Info screen of the app, the one where you can uninstall the app, force stop, clear data, etc. – yonih Jun 18 '14 at 08:36
-
Not sure, that is possible through the adb. You can try to check Settings application manifest (you should decompile app) and find Activities and intent-filters, that are used by details screen. But I am not sure, that you will archive your target – Nickolai Astashonok Jun 18 '14 at 09:17
-