How to uninstall an android app properly with it's signature?
Asked Answered
C

1

1

I have manually uninstalled my on going development app on my Android phone via Visual Studio, but later when I'm trying to reinstall the app, I'm getting this error "Conflicting app signature."

But the app is already uninstalled and I couldn't find any file by searching it's name on my file explorer, I also tried to follow this one Could not determine the installation package com.company.appName, It worked with my emulator [face this problem in my emulator too] but not working with my physical phone (Xiaomi Redmi Note 7 Pro). I can't see any trace of my app.

My app is made with Xamarin.Forms

Conflicting app signature.

Commines answered 3/10, 2020 at 12:5 Comment(2)
I checked and there is only one google account is connected to my phone. :(Commines
Read this article may help. It probably caused by the previous is not completely uninstalled.Shocker
H
2

Sometimes manually remove the app in the phone will have that issue. To fix use the adb command line in your terminal to uninstall the app, this will completely remove it.

adb uninstall yourAppPackageNameHere

You'll need to have adb installed if you don't have it already.

Hamiltonian answered 3/10, 2020 at 12:32 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.