Questions tagged [system-apps]

A System app is an app which is placed under /system/app folder in an Android device. As /system is read-only, such an app cannot be uninstalled by an "ordinary" user.

A System application is NOT an application which is signed by the OS’s platform signatures. This is a common mistake believed by many and we shall come to this later on. A System application is merely an application which is placed under /system/app folder in an Android device. An application can only be installed in that folder if we have access to the OS’s ROM (system.img), or if /system is mounted read-write (which requires root permissions on the device).

System apps have several benefits:

  • they are largely protected (e.g. cannot be uninstalled by the user), as /system is read-only
  • being thus protected, they survive a (only the apps, not their data)
  • they are considered "trusted" (as the sources are assumed to be safe, confirmed by the ROM creator)
  • being "trusted", they can get access to some restricted app permissions which are not available to "user-space apps" (e.g. ACCOUNT_MANAGER, MANAGE_APP_TOKENS); if a user-space app requests those, they are denied.

A non-System application is an ordinary application, which will be installed under /data/app folder, which is read-write. A user can uninstall such applications normally from the Settings application. One can check if an application is a System application or not using ApplicationInfo.FLAG_SYSTEM. If the constant returns true, then the application in question is a System application.

Read more at ricston.com

277 questions
3
votes
6 answers

Remove preinstalled apps without rooting

Is there any other way apart from rooting the device to remove preinstalled apps? If it's relevant, the Android version is 4.4 Kitkat.
NeoWelkin
  • 139
  • 1
  • 1
  • 3
2
votes
0 answers

Problem with installing a system app on rooted device

I rooted my device to install an app as a system app. However after the installation of the app, I see the following error in the log cat 2019-03-14 18:19:19.319 4197-4197/? E/zygote64: Dex checksum does not match for dex:…
Keselme
  • 163
  • 1
  • 8
1
vote
1 answer

Trigger re-read(or update) of (System)App database

System apps or apps in general are capable of storing information within a database. My problem is now: for example the Launcher app does store settings like the amount of apps and their position on the homescreen, widgets etc. into a database on…
divided-by-zero
  • 982
  • 6
  • 16
1
vote
0 answers

What is a system app "AgingFunction"?

Was just messing around with the list of apps in my phone and found an app named "AgingFunction". No, it is not one of those apps that have that aging filter that make you look old or something. It's a system app that does not have a wrapping GUI.…
Someone
  • 11
  • 1
  • 3
1
vote
0 answers

What Is "Font Server"? And is it a virus?

I've been doing malware scans for my phone pretty often recently, along with browsing and searching up apps/ files on my internal storage. I found one called "Font Server" which has a blue guy with a smile face as the image. I searched it up and…
BlankWall
  • 51
  • 3
1
vote
0 answers

Getting devices with custom system app

So, I am looking into getting devices with a custom app pre-installed from factory on the system image in a "device as a service" scenario. I am specifically interested in the app having system privileges without rooting the device. From some…
Maxwell175
  • 111
  • 3
1
vote
1 answer

Move apps manually to system

Hi just wanna ask if there's a way to properly install or move apps to /system manually in which the app that being said installed will be considered as system app? It seems that my phone is denying my request to install or move app from internal…
1
vote
1 answer

Unable to run pushed binary

I've pushed executable adb file to /system for using it to connect to other devices, but shell can't execute this file. Why? chiron / # file `which adb` /system/xbin/adb: ELF executable, 64-bit LSB arm64, dynamic (/lib/ld-linux-aarch64.so.1),…
J. Doe
  • 13
  • 3
1
vote
0 answers

why do some apps not work in /system?

I'm setting up some devices with a custom rom and my own custom app zip. Generally it works fine but I've found that some apps misbehave when installed into the system partition. What usually happens is that the app starts successfully but later…
starfry
  • 455
  • 3
  • 11
1
vote
1 answer

Is there a way to reinstall a built in application in my Android phone?

I accidentally (unknowingly ) disabled built in apps, I recently realized that I really need a few of them back. How do I reinstall them or bring them back?
Tracy
  • 11
  • 1
  • 2
0
votes
1 answer

How to delete ROOT APPS from Andoid jelly beans?

I am using Galaxy s3 dous, Whenever I turn on my wifi my phone itself start downloading google apps, and I am unable to uninstall them, In application manager there is no option to remove but to update only. And same in playstore>>My Apps. Any…
faiqa
  • 11
0
votes
0 answers

Who signs the system apps?

Who signs the system apps? Google, or is it the OEM when they build the ROM? Also, has this changed over the years?
0
votes
0 answers

How to access iotHiddenMenu

How do I access the iotHiddenMenu on Samsung galaxy? The dial code (* #21*#) doesn't work. For that matter no dial code seems to work on my device...
user395725
0
votes
0 answers

What is the "MTK Non-Framework LBS" app?

I have a Blackview BV8800 running stock Doke OS 3.0 (their version of Android 11). The "MTK Non-Framework LBS" app is non-removable so I assume it's part of the ROM from the manufacturer. I can't find any information about it. Is it dangerous?…
Brian Minton
  • 101
  • 1
  • 4
0
votes
0 answers

Which Apps can be deleted from an Android?

Are there any pre-loaded apps that can be deleted without affecting the operation of the phone, or of other apps? The purpose is for ease of use, and to save space. Hi, thank you. I have a Wiko 2 phone, an Android version 9, U307AS with 16 GB for…
Megeara
  • 21
  • 4
1
2