I can delete apps (that I code myself and install through the SDK) using this command:
adb uninstall com.company.apppackage
How do I uninstall this through the command line using adb
if I do not know the package name?
For example, if an app shows up in the Android main menu as "My Application", how can I delete it if I do not know it's package name?
Or alternatively, is there a way to somehow know an apps internal package name?
Here is a nice tutorial about getting information (Name, Package name, icon, etc) about Installed Applications on your Android Device, emulator.
This helper util/class retrieves all installed apps with the application name, package name, version-number and code as well as the icons. The method getPackages() returns an ArrayList with all the apps.
After determining the Application's Package name, just delete/uninstall the application using adb.
try:
Then enter adb shell
Find out your apps package name:
Then use:
OR