To redirect to the application you can use:
Uri marketUri = Uri.parse("market://details?id=" + packageName); Intent marketIntent = new Intent(Intent.ACTION_VIEW, marketUri); startActivity(marketIntent);
In addition, to check whether it is already assigned or not, save the boolean value in SharedPreferences and check it.
source share