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.

20 lines
772 B

package dev.garrettmills.starship.hyperlink;
import android.content.SharedPreferences;
import com.android.volley.RequestQueue;
public class Hyperlink {
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 SharedPreferences preferences;
public static RequestQueue httpRequestQueue;
}