Huawei built-in photo gallery - Huawei P40 Pro Questions & Answers

I removed the huawei gallery (photo viewer) app before I knew of app extractor. The official camera refuses to open photos in another gallery app so can someone with a huawei P40/Pro please extract the apk of the gallery app and upload it for me?
App extractor: https://play.google.com/store/apps/details?id=com.ext.ui
Edit: FIXED!
I had uninstalled it using adb:
Code:
adb uninstall -k --user 0 com.huawei.photos
so I re-installed it using adb:
Code:
adb shell cmd package install-existing com.huawei.photos

Related

Reinstall Soundalive

A while ago I decided to remove SoundAlive from my S8 using the
Code:
Adb shell pm uninstall -k --user 0 <soundAlivePackage>
command. Time flew and I decided that I'd like to reinstall it, however, installing it through package installer results in the
Code:
app not installed
message and through ADB in
Code:
failed to install sa.apk: Failure [-3001]
where
Code:
sa.apk
is the filename for SoundAlive.
I'm unrooted, 8.0.0, Experience 9.0.
Probably don't need to know any more for the future here is a link to someone who put up a way to reinstall all packages uninstalled thru ADB
https://forum.xda-developers.com/android/general/how-to-install-uninstalled-packages-t3894235

Question Google phone app

Is there any tips to remove google phone app without root or change rom ??
You can just disable using adb commands: adb shell pm uninstall --user 0 com.google.android.dialer
But you need to install another Dialer and the one from MIUI can't be installed without root the device
bartito said:
You can just disable using adb commands: adb shell pm uninstall --user 0 com.google.android.dialer
But you need to install another Dialer and the one from MIUI can't be installed without root the device
Click to expand...
Click to collapse
Thx bro

Uninstalled sideloaded app, now unable to reinstall

1. Sideloaded an app using LineageOS 17.1 recovery via "Apply update" > "Apply from ADB" > then "adb sideload" command on my PC.
2. Uninstalled the app using "adb shell pm uninstall -k --user 0 <package.name>". Also uninstalled from my work profile using the same command.
3. Now when I try to sideload the same app using the same process, it says success, however the app isn't on my phone.
Any help? Thanks.
Code:
adb shell pm uninstall -k -user 0 <package.name>
doesn't uninstall an app, it simply hides the app from Android's default user ( read: user 0 ).
To really uninstall an app you'ld have to run
Code:
adb uninstall <package.name>
jwoegerbauer said:
Code:
adb shell pm uninstall -k -user 0 <package.name>
doesn't uninstall an app, it simply hides the app from Android's default user ( read: user 0 ).
To really uninstall an app you'ld have to run
Code:
adb uninstall <package.name>
Click to expand...
Click to collapse
I tried that but I just got the error message "[DELETE FAILED_INTERNAL_ERROR]". Any idea on how to fix this mess?
Can anyone please help me with this? I need to properly uninstall the app and reinstall it.
google is your friend
How to install / get back uninstalled Apps (APKs) with ADB.
A lot of people searched for a way to uninstall bloat or APKs using ADB because a lot of OEMs don't allow uninstalling many of preinstalled apps. Tested on Pie and Oreo. BUT most of the articles if not all of them ( couldn't find any article...
forum.xda-developers.com

[NO ROOT] [ADB] (Soft/Minimal) Debloat Samsung Galaxy J Max (SM-T285YD)

To debloat this device you need to open adb shell and copy and paste the text file below. (or you can also make this into a shell script and run)
If you want to remove more apps, type this in the adb shell: adb shell pm uninstall --user 0 com.android.google.chrome (example)
To find the package name,
(1) Install f-droid and install 'package manager' app (for quicker identification as you can see the app icon)
OR
(2) On adb shell, type: adb shell pm list packages (This will list all installed packages)
NOTE: This will remove Galaxy store and all Google apps (apart from Google Play)

Question Contacts app missing

Hello everybody,
I accidentally deleted the contacts application from my ROG Phone 5 with the latest firmware installed...
when I try to open a contact it says it has no application installed.
Where can I get the application apk?
How did you go about deleting it? The system isn't read / write
If you used the adb uninstall trick, the command to restore is
Code:
adb shell cmd package install-existing <package_name>

Categories

Resources