Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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

public class Main {
    public static void put(Context arg2, String arg3, String value) {
        arg2.getSharedPreferences("marsroot", 0).edit().putString(arg3, value).commit();
    }
}