package org.galexander.sshd; import android.content.SharedPreferences; import android.content.Context; import android.preference.PreferenceManager; public class Prefs { private static SharedPreferences pref = null; public static void init(Context c) { if (pref == null) { pref = PreferenceManager.getDefaultSharedPreferences(c); } } public static boolean get_onboot() { return pref.getBoolean("onboot", false); } public static int get_port() { return pref.getInt("port", 2222); } public static String get_path() { return pref.getString("path", "/sdcard/ssh"); } public static String get_shell() { return pref.getString("shell", "/system/bin/sh"); } public static String get_home() { return pref.getString("home", "/sdcard/ssh"); } public static SharedPreferences.Editor edit() { return pref.edit(); } };