Hello Team,
I am experiencing issue with getting the device ID on a Clover Flex Pocket device running Android 13. The below code, which has been working fine on devices with Android OS versions below 10.
val merchantConnector = MerchantConnector(mContextApp, account, null)
merchantConnector.connect()
if (merchantConnector.merchant != null) {
val deviceId = merchantConnector.merchant?.deviceId
}
However, when I try to run this code on an Android 13 device, I am not able to retrieve the device ID. I have tried various troubleshooting steps, but I am still unable to resolve the issue.
Are there any changes in Android 13 that could be causing this issue? Are there any alternative methods for getting the device ID on Android 13 Clover devices?