I have two APKs added to the Play Store with the same version code. one for the devices which have SIM slot, and the other one for devices don't having SIM slot. I am using below code to check the latest verision on Play Store :
Jsoup.connect("https://play.google.com/store/apps/details?id=" + context.getPackageName()/* + "&hl=en"*/)
But getting error due to two different APKs on Play Store. Also tried AppUpdater without any success.
Your help would be appreciated.