Hey folks what command or sequence of commands can I run on the Terminal Emulator app on Android x86 to see the package name of the LAST installed app (can I see it by time maybe?).
Instead of running:
$adb shell pm list packages
I want to only see the last package installed
so I can then run
$ adb shell am start -n com.package.name/com.package.name.ActivityName
to run my apps that I'm testing :)maybe I could find the package name by the apps name instead? Say I want the package name of my installed app :) THANK YOU