Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.content.Context;
import android.content.SharedPreferences;

public class Main {
    private static final String LAUNCH_DETAILS = "Launch_Info";
    private static final String USER_INFO = "User_Info";

    public static boolean isFirstTimeLaunch(Context context) {
        SharedPreferences prefs = context.getSharedPreferences(LAUNCH_DETAILS, context.MODE_PRIVATE);
        return prefs.getBoolean(USER_INFO, false);
    }
}