1 package host.exp.exponent.generated; 2 3 import com.facebook.common.internal.DoNotStrip; 4 5 import java.util.ArrayList; 6 import java.util.List; 7 8 import host.exp.exponent.Constants; 9 10 @DoNotStrip 11 public class AppConstants { 12 13 public static final String VERSION_NAME = null; 14 public static String INITIAL_URL = null; 15 public static final boolean IS_DETACHED = false; 16 public static final String SHELL_APP_SCHEME = null; 17 public static final String RELEASE_CHANNEL = "default"; 18 public static boolean SHOW_LOADING_VIEW_IN_SHELL_APP = false; 19 public static final List<Constants.EmbeddedResponse> EMBEDDED_RESPONSES; 20 21 static { 22 List<Constants.EmbeddedResponse> embeddedResponses = new ArrayList<>(); 23 24 // ADD EMBEDDED RESPONSES HERE 25 // START EMBEDDED RESPONSES 26 // END EMBEDDED RESPONSES 27 EMBEDDED_RESPONSES = embeddedResponses; 28 } 29 30 // Called from expoview/Constants 31 public static Constants.ExpoViewAppConstants get() { 32 Constants.ExpoViewAppConstants constants = new Constants.ExpoViewAppConstants(); 33 constants.VERSION_NAME = VERSION_NAME; 34 constants.INITIAL_URL = INITIAL_URL; 35 constants.IS_DETACHED = IS_DETACHED; 36 constants.SHELL_APP_SCHEME = SHELL_APP_SCHEME; 37 constants.RELEASE_CHANNEL = RELEASE_CHANNEL; 38 constants.SHOW_LOADING_VIEW_IN_SHELL_APP = SHOW_LOADING_VIEW_IN_SHELL_APP; 39 constants.EMBEDDED_RESPONSES = EMBEDDED_RESPONSES; 40 return constants; 41 } 42 } 43