Default Android dialer and other apps

**I am trying to see if I can reinstall the default dialer that comes with /e/OS, but I am having a hard time finding it (I removed it, along with a few other apps when I first got the phone). I found the list of apps that come installed by default and the gitlabs page, but I do not see any releases to download.

**

Did you use adb commands from a PC?

If so, the methods on Android are reversible. You need to study the varoius commands here

The link should open in the Package manager section. You can work out how to list packages installed or disabled or uninstalled.

Then it is possible to reverse the original commands.

Note the two possibilities

  • disable | enable
  • uninstall | install.
2 Likes

Thanks! I forgot that I used adb to uninstall them.

Quick notes for anyone else.

#Should show list of all uninstalled apps with the path to the apk.
diff <(adb shell pm list packages -f) <(adb shell pm list packages -f -u)

#Reinstalls the apk.
adb shell pm install -r --user 0 /Path/to/apk/FromAbove.apk

1 Like