• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

How to uninstall a service?

It lists it as "BeautyMakeup, 1 process and 1 service."
Under that is Services: "AdPolicy (started by app)"
Under that is Processes: "BeautyMakeup (com.gangyun.makeup) - main process in use"

A google search finds the APK to download, but with a different icon.

It's not listed in apps, just in the developer options for running services.
 
Upvote 0
Try the search box in (manage) Apps after going to the - 3 dot overflow menu - Show system apps.

Camera apps have beauty modes for selfies generally - I wouldn't worry about it

You don't say what device you have.
I couldn't find similar on my current Poco F2 but I'm sure I saw something like that listed in a Motorola or Nokia.
 
  • Like
Reactions: Dannydet
Upvote 0
I don't have a search box, but show system apps made it appear there. I can only force stop though, and not uninstall. Why is uninstall not available for so many things? Does that mean it's a forced upon us useless Google thingy?

Are you telling me I can do a selfie and make my ugly face become sexy?

It's a VKWorld Mix Plus.
 
  • Like
Reactions: Deleted User
Upvote 0
I don't have a search box, but show system apps made it appear there. I can only force stop though, and not uninstall. Why is uninstall not available for so many things? Does that mean it's a forced upon us useless Google thingy?
No, this one is almost certainly a piece of junk that the manufacturer added.
Are you telling me I can do a selfie and make my ugly face become sexy?
So-called "beauty filters" are more likely to transport you to the uncanny valley than actually improve anyone's looks ;).
 
Upvote 0
No, this one is almost certainly a piece of junk that the manufacturer added.
Why doesn't android allow you to uninstall ANY app?

It was released in 2017.
Running Android 7.
Time for a new phone
Don't be stupid, I've only had it 2 years. I've had my car 20 years, I've had most of my 7 computers about 8 years. Are you really gullible enough to throw away something designed only 5 years ago? Fashion victim in the extreme.
 
Upvote 0
Android doesn't let you uninstall all apps because manufacturers don't trust people not to break it by uninstalling something vital and then expecting them to fix it. And to be honest they are right not to: there are many fewer people rooting their phones than there were a few years ago, but back when that was more popular one of the commonest problems people turned up here with was "I rooted my phone and deleted a bunch of things I don't use. Now it won't boot up...".

Now I do regard it as an abuse for manufacturers or service providers to protect junk apps that are not part of the system from removal (and even more so when they stop you even disabling the crap), but that's bad practice by the companies involved rather than a problem with the platform.

As for "if android was written properly you could..." I'm afraid there is no mobile device platform that does that: not android, not iOS, not the defunct Microsoft mobile operating systems, not the smaller platforms. The operating systems are built for the devices, and it's the manufacturer who supports them. If they stop providing updates that's it, unless you have the skills, knowledge and time to do it yourself - or someone else with the same device does, what's known as a custom ROM (but at some point they will move on too, or else the manufacturer of one component of the device doesn't provide a binary driver compatible with a newer Android version and then it's game over anyway).
 
Upvote 0
The problem is that the manufacturer added the bloat as a system app. That is the manufacturer's doing, not the platform's. It's a choice they make either because they are lazy and that's simple for them or because they don't want you to remove the crap (which often means that they have been paid to put it there).

If you want rid of it you can root the phone (if it's possible with that model). Otherwise all you can do is not buy from that manufacturer again - but be aware that cheap Chinese devices frequently have junk app issues, as well as extremely poor software support (i.e. they are unlikely to receive updates, and if they do it isn't usually for long).
 
  • Like
Reactions: Dannydet
Upvote 0
Why does android let anyone but themselves add a system app and not let you remove it? If I add a virus checker to windows, it will be a system app, running at a very low level, but I can easily remove it.

I have two cheap Chinese phones. One is almost unusable due to an incredible number of ads, I simply got all my money back from the seller and have kept it to run science research on. The ads don't appear when the screen is off, so they don't get in the way and use up RAM. The other one only had one problem that annoyed me, it loses contacts when powered off - very odd. I got a 25% refund for this, then found a simple workaround, use Google to store them. This beauty thing hasn't caused a problem, it's just odd it's there. Maybe it's taking secret photos of me to go into a magazine :)
 
Upvote 0
Why does android let anyone but themselves add a system app and not let you remove it? If I add a virus checker to windows, it will be a system app, running at a very low level, but I can easily remove it.

Because Google doesn't dictate and control what stuff device manufacturers might put into their Android builds that they install on their phones, and tablets, etc. Especially devices from China, where Google doesn't have much to do with Android. In fact Huawei isn't even putting Android on phones intended for China now, and have gone over to their own Harmony OS.

I have two cheap Chinese phones. One is almost unusable due to an incredible number of ads, I simply got all my money back from the seller and have kept it to run science research on. The ads don't appear when the screen is off, so they don't get in the way and use up RAM. The other one only had one problem that annoyed me, it loses contacts when powered off - very odd. I got a 25% refund for this, then found a simple workaround, use Google to store them. This beauty thing hasn't caused a problem, it's just odd it's there. Maybe it's taking secret photos of me to go into a magazine :)


I know a few smart-phone users in China, who like to beautify themselves :thumbsupdroid: when taking selfies for their WeChat, QQ, Weibo, Douyin(TikTok), etc.
 
Last edited:
Upvote 0
BeautyMakeup (com.gangyun.makeup)
If you are sure this is the app and that removing it will not bootloop your phone, then proceed. Otherwise, just deal with the app.

To remove this app enable USB Debugging in developer options then connect your phone to your PC.

The following are commands to run in your terminal/cmd...

Check if device is recognized by PC...
Bash:
adb devices

Get installation path/location of app(this command is only for linux)...
Bash:
adb shell pm dump com.gangyun.makeup | grep path

Uninstall the app in question...
Bash:
adb shell pm uninstall --user 0 com.gangyun.makeup

This is how I personally remove all unwanted apps from a non-rooted phone. Note, I do not use windows, so I can't assist you with any windows related questions.
 
Upvote 0
How do I know if it will bootloop? I'm pretty sure that app isn't part of Android, so is there a reason it would **** up the phone?

And I use a normal OS, any Windows users in here?
There's no way of knowing if it would bootloop beforehand, but I think it's safe to remove. If it bootloops, then you'll have to factory reset. Unless you can still access adb in the bootloop which is possible in many cases. If you can then this command will get you back up and running.

You need to know the apk path from the previous command I gave you...
Bash:
adb shell pm install -r --user 0 /PATH/TO/BeautyMakeup.APK

As much as I dislike Windows, it's still the most used OS.
 
Upvote 0
Well I can't see a piece of crap that was installed making it not start. But you seem to think it's a possibility. Also I do not use Linux! So I can't try it.
If you're using Mac, doesn't it have the "grep" command which is in that linux only command I listed. Mac is a unix system and Linux is a unix-like system so they share a lot of the same commands and utilities.
 
Upvote 0

BEST TECH IN 2023

We've been tracking upcoming products and ranking the best tech since 2007. Thanks for trusting our opinion: we get rewarded through affiliate links that earn us a commission and we invite you to learn more about us.

Smartphones