Add Samsung bug fix guide

This commit is contained in:
Vendicated 2021-02-11 01:23:08 +01:00
parent 5feb4090db
commit cbdab407a2
3 changed files with 42 additions and 1 deletions

BIN
Assets/SamsungIssue.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 129 KiB

View File

@ -29,7 +29,7 @@ You can technically create a logcat with only your phone and no root, but this w
### Creating a logcat using adb on your PC
- Run the following adb command. Unless you added adb to PATH, add a `.\` before the command. Having issues? Check [our adb setup Guide](./SettingUpAdb.md#getting-started-using-adb)
- Run the following adb command. Unless you added adb to PATH, add a `.\` before the command. Having issues? Check [our adb Guide](./SettingUpAdb.md#getting-started-using-adb)
```bash
adb shell logcat -c

View File

@ -0,0 +1,41 @@
# Samsung Android 11 Vanced Fix
![INSTALL_FAILED_UPDATE_INCOMPATIBLE](../Assets/SamsungIssue.jpg)
If you are running into this issue after updating your Samsung to Android 11 then you are at the right spot!
This error is not caused by Vanced. It is caused by Samsung. The update somehow makes it so that Vanced can no longer be found by the package manager but is still installed somewhere in your system.
Sadly you can only fix this issue if you have root or a PC. Otherwise the only way to fix it is to factory reset your phone. Sorry! Blame Samsung!
___
## Prerequisites
### You will need
- EITHER a PC with adb set up - A guide to do this can be found [here](./SettingUpAdb.md)
- OR a rooted phone
___
## Uninstalling the leftover Vanced
Luckily we can still remove it via the command line! Once you uninstalled it you can just install it back like usual
### Uninstalling the broken Vanced using root
- First you need a Terminal. I recommend [Termux](https://play.google.com/store/apps/details?id=com.termux)
- Open it up and run the following command
```bash
su -c "pm uninstall com.vanced.android.youtube"
```
### Uninstalling the broken Vanced using adb on your PC
- Run the following adb command. Unless you added adb to PATH, add a `.\` before the command. Having issues? Check [our adb Guide](./SettingUpAdb.md#getting-started-using-adb)
```bash
adb uninstall com.vanced.android.youtube
```