Kegagalan [install_failed_update_incompatible: paket com.ccc.notification tanda tangan tidak cocok dengan versi yang diinstal sebelumnya; Mengabaikan!]

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_APK\APP_NAME.apk"

-r: Reinstall an exisiting app, keeping its data.
-d: Allow version code downgrade.
Coding Era