You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
simplesshd/src/org/galexander/sshd/Prefs.java

36 lines
843 B

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();
}
};