Once installed to your test merchant, your Clover development device will download and install your APK. If you attempt to sideload a development version of your APK on top of this, it will fail:
$ adb install -r test.apk 1 file pushed. 6.4 MB/s (887871 bytes in 0.132s) pkg: /data/local/tmp/test.apk Failure [INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES]
This will occur even if you are signing your APK with same certificate as what you used to sign the APK that is uploaded to your developer console.
The reason is that Clover adds additional signatures to your APK when it's uploaded to the developer console. While your certificate is used prove you authored the app, this second certificate is used to prove additionally that the app came from Clover. Because your app, as it is downloaded from the Clover App Market, is "double signed" in this manner, it's certificates do not match what you've signed locally in your development environment.
The Workaround
To get around this,- Make sure the app is installed and downloaded from the Clover App Market.
- Uninstall the Clover App Market double-signed APK from the device using the adb uninstall command.
- Install your developer single-signed APK.
- Manually sync the device with the sync button found at the top right of the Register App and various other Clover Apps
$ adb uninstall com.example.test Success $ adb install -r test.apk 1 file pushed. 6.4 MB/s (887871 bytes in 0.133s) pkg: /data/local/tmp/test.apk Success
You only need to do this once. The Clover device will not update your single-signed APK. In fact, it cannot, for the same reason you could not update the previously installed double-signed APK.
As far as the Clover is concerned, the app is still installed to the device, so all of your app's meta data still exists, including the app's auth token and permissions.
Here's a video instructions as well: https://youtu.be/Sk0aZzlocog
Store your development and release certificates in a secure location. Never commit them to a source repository, even if it's not publicly accessible.