I'm having a few difficulties with the VIEW_RELEASE intent. For the following Java code:
Intent i = new Intent("uk.co.sevendigital.android.intent.action.VIEW_RELEASE");
i.setAction("uk.co.sevendigital.android.intent.action.VIEW_RELEASE");
i.putExtra("uk.co.sevendigital.android.intent.extra.PARTNER", partnerID);
i.putExtra("RELEASEID", releaseID);
i.putExtra("TRACKID", trackID);
if(ctx.getPackageManager().resolveActivity(i, 0) != null) {
ctx.startActivity(i);
}
For all (valid) tests, e.g. partnerID=1343, releaseID=807571, trackID=8929805, the 7digital app is opened but it just goes to the store section and gives the following error:
'Connection problem. Please reconnect and try again'
but the device is connected to the network. I am using the latest version of the app available on the Play Store. Any ideas what the issue could be?
Many thanks,
Chris.