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.

25 lines
1.0 KiB

package dev.garrettmills.starship.hyperlink;
import android.content.SharedPreferences;
import com.android.volley.RequestQueue;
public class Hyperlink {
public static final int MESSAGE_TICK_POLL_INTERVAL_MS = 5000;
public static final String SHARED_PREFERENCES_NAME = "dev.garrettmills.starship.hyperlink.main";
public static final String SERVER_ADDR = "dev.garrettmills.starship.hyperlink.server";
public static final String ACCESS_TOKEN = "dev.garrettmills.starship.hyperlink.token.server";
public static final String EXTRA_LOGIN_TOKEN = "dev.garrettmills.starship.hyperlink.extra.login_token";
public static final int REQUEST_LOGIN_TOKEN = 180;
public static final int REQUEST_PERMISSION_CAMERA = 181;
public static final int REQUEST_PERMISSION_READ_SMS = 182;
public static final String NOTIFICATION_CHANNEL = "dev.garrettmills.starship.hyperlink.notifications";
public static final int SERVICE_NOTIFICATION_ID = 183;
public static SharedPreferences preferences;
public static RequestQueue httpRequestQueue;
}