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 VERSION_S = "version_s";
    private static final String VERSION_S_K = "version_s_k";

    public static boolean getVersionCode(Context context) {
        SharedPreferences sharedPreferences = context.getSharedPreferences(VERSION_S, Context.MODE_PRIVATE);
        return sharedPreferences.getBoolean(VERSION_S_K, false);
    }
}