package com.sharefaith.thesharefaithapp.base;

/**
 * Created by Sharefaith1 on 2014-10-22.
 * Class for holding constants
 */
public class SFConstants
{
	public static final boolean IS_DEMO = false;

	public static final boolean TRACK_ANALYTICS		= true;
	public static final String ANALYTICS_KEY		= "96KDTQD4PNSDM8K98CHM";

	//these needs to be able to change when a new church is chosen
	public static String ANALYTICS_TAG		= SFApplication.getInstance().getSfCurrentChurch();
	public static String UAID_KEY				= SFApplication.getInstance().getSfCurrentChurch();// main test app "2301a316763f9ea8";

	public static final String GCM_SENDER_KEY 		= "968427484641";

	public static final String APPSERVE_BASE_URL	= "https://appserve.sharefaith.com";
	public static final String PUSHSERVE_KEY		= "YXBwbGljYWJsZSBzdGFuZGFyZCB0ZXJtcyBhBvZi";

	public static final int PUSH_CHANNEL_SIMPLE		= 0;
	public static final int PUSH_CHANNEL_SERMON		= 1;
	public static final int PUSH_CHANNEL_NEWSLETTER	= 2;
	public static final int PUSH_CHANNEL_POST		= 3;

	public static final String CHANNEL_NAME_SIMPLE			= "simple";
	public static final String CHANNEL_NAME_SERMON			= "sermon";
	public static final String CHANNEL_NAME_NEWSLETTER		= "newsletter";
	public static final String CHANNEL_NAME_POST			= "post";

	public static final String CONTENT_PROVIDER		= "com.sharefaith.thesharefaithapp.fileprovider";

	public static final int SYNC_VERSION = 2;

	public SFConstants()
	{
		//pass
	}
}
