1

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?

iCantSeeSharp
  • 3,880
  • 4
  • 42
  • 65
yonih
  • 517
  • 4
  • 15

2 Answers2

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
  • This doesn't do what was asked – user3118604 Sep 22 '20 at 07:47