Question

we're currently porting our android apps to nokia x, and so we would like to link to the apps that we have in the store. I could not find any resources on linking to these apps like it is on google play

market://?details

or

amzn://apps/android

on amazon.

How can I do that on Nokia X? The default solution with market:// does not work. It says Activity not found exception in the emulator (I don't have a real Nokia X here unfortunately)

Was it helpful?

Solution

According to this tutorial, market:// URI should work.

http://developer.nokia.com/community/wiki/Deep_Linking_to_Store_on_Nokia_X

You should open it like below:

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=com.nokia.app.mixradio.client"));
startActivity(intent);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top