0

I have installed an app fusing its apk. After installation, I clicked on 'Done'. Then, I checked app on app drawer and Settings->Apps, it was not found there. I am running Nova launcher, in Lineage Os 14.1,Rooted, Xiaomi Redmi 1s. Earlier, in settings it showed 47 apps installed, now it shows 48 apps installed(including hidden app).

  1. I have checked for app in /data/app, app not found.
  2. Installed Quickshortcutmaker to create app shortcut, but app not found.
  3. Tried to hide in Nova settings, app not found.
  4. Tried to reinstall that apk, it overwrites app like an update.

I need to uninstall this app.

The app is PixBar (installed apk), In file name like this com_dunrite_pixbar-10011002.apk.apk. And while opening through es (for install), it showed package as net.upper.master.support.texas.stem.threw, which is found as malware(google). I try some apps like this(install from apk), but, this have no option to uninstall, which I have never experienced before.

Izzy
  • 91,536
  • 76
  • 351
  • 968
Rahul Gopi
  • 2,323
  • 6
  • 30
  • 51

1 Answers1

1

Seems like a spying apps which can install in stealth mode and never being detected.

Try with ADB commands to check if it appears in the list of installed apps and eventually delete it.

  1. Download Minimal ADB and fastboot . Unzip and run it. (Windows machines)
  2. On the phone, enable USB debugging in Settings > Developer Options > USB Debugging. If the Developer Options is not present: Go to Settings > About then hit 7 times on Build number then go back to Settings.
  3. Depending on your phone, you'll need drivers for your device to be detected (Windows).
  4. Connect the phone to the computer. On the terminal window, type adb devices [press enter] this checks if the phone is detected. Output : xxxxxxx devices
  5. Type adb shell [press enter]
  6. Type pm list packages -f [press enter]. A long list of apps with their packages name will output, just check if your app is listed.
  7. Then to delete the app, type cd /system/app [press enter] or cd /system/priv-app [press enter] depending on the app location and then type rm app_name.apk [press enter] (app names are case sensitive).

Note: An alternative for Minimal ADB and fastboot which is available for Linux, Mac and Windows as well, can be found in the answers on Is there a minimal installation of ADB?.

Since you are using Nova Launcher, I remember you can hide apps. Check if you didn't do so inadvertently.

  • Go to Nova's Settings menu, by either long-pressing on the home screen and selecting the “Settings” icon in the bottom right, or heading into the app drawer and tapping the “Nova Settings” icon.
  • Open the second entry App & widget drawers
  • In the Drawer groups section, select the **Hide apps* option.
  • Then check if the app appears there and eventually uncheck the check mark.
esQmo_
  • 3,257
  • 2
  • 14
  • 25