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 {
    public static void markLastNanoTime(Context arg4) {
        SharedPreferences.Editor v0 = getPref(arg4).edit();
        v0.putLong("x_last_nano_time", System.nanoTime());
        v0.commit();
    }

    public static SharedPreferences getPref(Context context) {
        return context.getSharedPreferences("marsroot", 0);
    }
}