This question already has an answer here:
- Does 'Samsung Apps' support a URI scheme to redirect to specific apps? 3 answers
In my app i have to redirect user to samsung app store like.I know how to do it for google play store the link is
Intent browserIntent = new Intent("android.intent.action.VIEW",
Uri.parse("https://market.android.com/details?id=com.myPackageName"));
startActivity(browserIntent);
So my question is how i can achieve this for samsung app store?