package com.enflick.android.TextNow;

/**
 * A collection of build switches that we need to set to make our build flexible. We need this
 * to make sure that we don't need to maintain multiple branches. There is an associated
 * template file that has the same name that will be replaced via a script at compile time
 * @author adrian.chung
 */
public final class BuildSwitches {
	public static final String BUILD_TARGET_TYPE = "BUILD.TARGET.TYPE";
    public static final boolean IS_ADS_ENABLED = BUILD.ADS_ENABLED;
    public static final String BUILD_INFO = "BUILD.INFO";
    public static final String BUILD_TYPE = "BUILD.TYPE";
}
