gistfile1.txt private void installApkOnAppStore() { try { // try to update in google store Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + context.getPackageName())); intent.setPackage("com.android.vending"
private void installApkOnAppStore() {
try {
// try to update in google store
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + context.getPackageName()));
intent.setPackage("com.android.vending");
context.startActivity(intent);
} catch (Exception e) {
}
}
