Search code examples
androidcommand-lineemulationapk

How to view installed apks on emulator through windows command line?


Somewhat straight forward question that I cannot seem to find the answer to. I want to view the installed apks on my android emulator, what is the command to find a list of apks installed on the emulator via the command line in windows?


Solution

  • adb shell pm list packages 
    

    See android adb documentation. This command directly queries the package manager.