Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import android.content.Context;
import android.content.SharedPreferences;

public class Main {
    private static final String DEVICE_ID_FILE = "device_file";
    private static final String DEVICE_ID_KEY = "device_id";

    public static void storeDevieId(String deviceId, Context context) {
        SharedPreferences mPrefs = context.getSharedPreferences(DEVICE_ID_FILE, Context.MODE_PRIVATE);
        mPrefs.edit().putString(deviceId, DEVICE_ID_KEY).commit();
    }
}