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
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.