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.

12 lines
378 B

package dev.garrettmills.starship.hyperlink;
import android.content.SharedPreferences;
public class Hyperlink {
public static final String SHARED_PREFERENCES_NAME = "hyperlink.main";
public static final String SERVER_ADDR = "hyperlink.server";
public static final String SERVER_TOKEN = "hyperlink.token.server";
public static SharedPreferences preferences;
}