Answers for "Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE: Package com.ccc.notification signatures do not match previously installed version; ignoring!]"

0

Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE: Package com.ccc.notification signatures do not match previously installed version; ignoring!]

try uninstalling the app. I met this problem on my project too.
This helped me, so hopefuly will help someone else:
adb uninstall "com.domain.yourapp"

############### OR #########################

try replacing the current version with the previous one
adb install -r -d "PATH_TO_APKAPP_NAME.apk"

-r: Reinstall an exisiting app, keeping its data.
-d: Allow version code downgrade.
Posted by: Guest on January-28-2022

Code answers related to "Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE: Package com.ccc.notification signatures do not match previously installed version; ignoring!]"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language