Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.content.Intent;
import android.net.Uri;

public class Main {
    /**
     * Returns an intent designated for the play store page for this application.
     * @param packageName - Package name of the application.
     * @return
     */
    public static Intent getPlayStoreIntent(String packageName) {
        Intent intent = new Intent(Intent.ACTION_VIEW);
        intent.setData(Uri.parse("market://details?id=" + packageName));
        return intent;
    }
}