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