Home
last modified time | relevance | path

Searched refs:appConfig (Results 1 – 25 of 27) sorted by relevance

12

/expo/packages/create-expo-module/src/
H A DcreateExampleApp.ts106 const appConfig = await fs.readJson(appConfigPath); constant
110 if (!appConfig.expo.android) {
111 appConfig.expo.android = {};
113 appConfig.expo.android.package = appId;
116 if (!appConfig.expo.ios) {
117 appConfig.expo.ios = {};
119 appConfig.expo.ios.bundleIdentifier = appId;
121 await fs.writeJson(appConfigPath, appConfig, {
/expo/packages/create-expo-module/build/
H A DcreateExampleApp.js85 const appConfig = await fs_extra_1.default.readJson(appConfigPath);
88 if (!appConfig.expo.android) {
89 appConfig.expo.android = {};
91 appConfig.expo.android.package = appId;
93 if (!appConfig.expo.ios) {
94 appConfig.expo.ios = {};
96 appConfig.expo.ios.bundleIdentifier = appId;
97 await fs_extra_1.default.writeJson(appConfigPath, appConfig, {
H A DcreateExampleApp.js.map1appConfig = await fs.readJson(appConfigPath);\n const appId = `${data.project.package}.example`;\…
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/taskManager/repository/
H A DTasksPersistence.java37 Map<String, Object> appConfig = new HashMap<>(); in persistTasksForAppScopeKey() local
47 appConfig.put("appUrl", appUrl); in persistTasksForAppScopeKey()
48 appConfig.put("tasks", tasks); in persistTasksForAppScopeKey()
52 .putString(appScopeKey, new JSONObject(appConfig).toString()) in persistTasksForAppScopeKey()
62 Map<String, Object> appConfig = jsonToMap(appScopeKeyToConfig.getValue().toString()); in readPersistedTasks() local
63 String appUrl = (String) appConfig.get("appUrl"); in readPersistedTasks()
64 Map<String, Object> tasksConfig = (HashMap<String, Object>) appConfig.get("tasks"); in readPersistedTasks()
/expo/packages/expo-task-manager/android/src/main/java/expo/modules/taskManager/repository/
H A DTasksPersistence.java37 Map<String, Object> appConfig = new HashMap<>(); in persistTasksForAppScopeKey() local
47 appConfig.put("appUrl", appUrl); in persistTasksForAppScopeKey()
48 appConfig.put("tasks", tasks); in persistTasksForAppScopeKey()
52 .putString(appScopeKey, new JSONObject(appConfig).toString()) in persistTasksForAppScopeKey()
62 Map<String, Object> appConfig = jsonToMap(appScopeKeyToConfig.getValue().toString()); in readPersistedTasks() local
63 String appUrl = (String) appConfig.get("appUrl"); in readPersistedTasks()
64 Map<String, Object> tasksConfig = (HashMap<String, Object>) appConfig.get("tasks"); in readPersistedTasks()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/taskManager/repository/
H A DTasksPersistence.java37 Map<String, Object> appConfig = new HashMap<>(); in persistTasksForAppScopeKey() local
47 appConfig.put("appUrl", appUrl); in persistTasksForAppScopeKey()
48 appConfig.put("tasks", tasks); in persistTasksForAppScopeKey()
52 .putString(appScopeKey, new JSONObject(appConfig).toString()) in persistTasksForAppScopeKey()
62 Map<String, Object> appConfig = jsonToMap(appScopeKeyToConfig.getValue().toString()); in readPersistedTasks() local
63 String appUrl = (String) appConfig.get("appUrl"); in readPersistedTasks()
64 Map<String, Object> tasksConfig = (HashMap<String, Object>) appConfig.get("tasks"); in readPersistedTasks()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/taskManager/repository/
H A DTasksPersistence.java37 Map<String, Object> appConfig = new HashMap<>(); in persistTasksForAppScopeKey() local
47 appConfig.put("appUrl", appUrl); in persistTasksForAppScopeKey()
48 appConfig.put("tasks", tasks); in persistTasksForAppScopeKey()
52 .putString(appScopeKey, new JSONObject(appConfig).toString()) in persistTasksForAppScopeKey()
62 Map<String, Object> appConfig = jsonToMap(appScopeKeyToConfig.getValue().toString()); in readPersistedTasks() local
63 String appUrl = (String) appConfig.get("appUrl"); in readPersistedTasks()
64 Map<String, Object> tasksConfig = (HashMap<String, Object>) appConfig.get("tasks"); in readPersistedTasks()
/expo/packages/expo-constants/build/
H A DConstants.js37 const appConfig = ExponentConstants.manifest; constant
39 if (typeof appConfig === 'string') {
40 rawAppConfig = JSON.parse(appConfig);
43 rawAppConfig = appConfig;
H A DConstants.js.map1appConfig: object | string = ExponentConstants.manifest;\n\n // On Android we pass the manifest i…
/expo/packages/expo-constants/src/
H A DConstants.ts77 const appConfig: object | string = ExponentConstants.manifest; constant
80 if (typeof appConfig === 'string') {
81 rawAppConfig = JSON.parse(appConfig);
83 rawAppConfig = appConfig as any;
/expo/packages/expo-constants/android/src/main/java/expo/modules/constants/
H A DConstantsService.kt51 "manifest" to appConfig, in <lambda>()
97 private val appConfig: String? in <lambda>() constant in expo.modules.constants.ConstantsService
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/constants/
H A DConstantsService.kt51 "manifest" to appConfig, in <lambda>()
97 private val appConfig: String? in <lambda>() constant in abi49_0_0.expo.modules.constants.ConstantsService
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/constants/
H A DConstantsService.kt54 "manifest" to appConfig, in <lambda>()
102 private val appConfig: String? in <lambda>() constant in abi47_0_0.expo.modules.constants.ConstantsService
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/constants/
H A DConstantsService.kt54 "manifest" to appConfig, in <lambda>()
102 private val appConfig: String? in <lambda>() constant in abi48_0_0.expo.modules.constants.ConstantsService
/expo/packages/expo-task-manager/android/src/main/java/expo/modules/taskManager/
H A DTaskService.java524 …Map<String, Object> appConfig = preferences != null ? jsonToMap(preferences.getString(appScopeKey,… in maybeUpdateAppUrlForAppScopeKey() local
526 if (appConfig != null && appConfig.size() > 0) { in maybeUpdateAppUrlForAppScopeKey()
527 String oldAppUrl = (String) appConfig.get("appUrl"); in maybeUpdateAppUrlForAppScopeKey()
530 appConfig.put("appUrl", appUrl); in maybeUpdateAppUrlForAppScopeKey()
534 .putString(appScopeKey, new JSONObject(appConfig).toString()) in maybeUpdateAppUrlForAppScopeKey()
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/taskManager/
H A DTaskService.java524 …Map<String, Object> appConfig = preferences != null ? jsonToMap(preferences.getString(appScopeKey,… in maybeUpdateAppUrlForAppScopeKey() local
526 if (appConfig != null && appConfig.size() > 0) { in maybeUpdateAppUrlForAppScopeKey()
527 String oldAppUrl = (String) appConfig.get("appUrl"); in maybeUpdateAppUrlForAppScopeKey()
530 appConfig.put("appUrl", appUrl); in maybeUpdateAppUrlForAppScopeKey()
534 .putString(appScopeKey, new JSONObject(appConfig).toString()) in maybeUpdateAppUrlForAppScopeKey()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/taskManager/
H A DTaskService.java524 …Map<String, Object> appConfig = preferences != null ? jsonToMap(preferences.getString(appScopeKey,… in maybeUpdateAppUrlForAppScopeKey() local
526 if (appConfig != null && appConfig.size() > 0) { in maybeUpdateAppUrlForAppScopeKey()
527 String oldAppUrl = (String) appConfig.get("appUrl"); in maybeUpdateAppUrlForAppScopeKey()
530 appConfig.put("appUrl", appUrl); in maybeUpdateAppUrlForAppScopeKey()
534 .putString(appScopeKey, new JSONObject(appConfig).toString()) in maybeUpdateAppUrlForAppScopeKey()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/taskManager/
H A DTaskService.java524 …Map<String, Object> appConfig = preferences != null ? jsonToMap(preferences.getString(appScopeKey,… in maybeUpdateAppUrlForAppScopeKey() local
526 if (appConfig != null && appConfig.size() > 0) { in maybeUpdateAppUrlForAppScopeKey()
527 String oldAppUrl = (String) appConfig.get("appUrl"); in maybeUpdateAppUrlForAppScopeKey()
530 appConfig.put("appUrl", appUrl); in maybeUpdateAppUrlForAppScopeKey()
534 .putString(appScopeKey, new JSONObject(appConfig).toString()) in maybeUpdateAppUrlForAppScopeKey()
/expo/ios/versioned/sdk49/EXConstants/
H A DABI49_0_0EXConstantsService.m67 @"manifest": ABI49_0_0EXNullIfNil([[self class] appConfig]),
167 + (NSDictionary *)appConfig
/expo/packages/expo-constants/ios/
H A DEXConstantsService.m67 @"manifest": EXNullIfNil([[self class] appConfig]),
172 + (NSDictionary *)appConfig
/expo/packages/expo-task-manager/ios/EXTaskManager/
H A DEXTaskService.m594 NSDictionary *appConfig = config[appId];
595 NSDictionary *tasksConfig = appConfig[@"tasks"];
596 NSString *appUrl = appConfig[@"appUrl"];
/expo/ios/versioned/sdk47/EXTaskManager/EXTaskManager/
H A DABI47_0_0EXTaskService.m594 NSDictionary *appConfig = config[appId];
595 NSDictionary *tasksConfig = appConfig[@"tasks"];
596 NSString *appUrl = appConfig[@"appUrl"];
/expo/ios/versioned/sdk49/EXTaskManager/EXTaskManager/
H A DABI49_0_0EXTaskService.m594 NSDictionary *appConfig = config[appId];
595 NSDictionary *tasksConfig = appConfig[@"tasks"];
596 NSString *appUrl = appConfig[@"appUrl"];
/expo/ios/versioned/sdk48/EXTaskManager/EXTaskManager/
H A DABI48_0_0EXTaskService.m594 NSDictionary *appConfig = config[appId];
595 NSDictionary *tasksConfig = appConfig[@"tasks"];
596 NSString *appUrl = appConfig[@"appUrl"];
/expo/ios/versioned/sdk47/EXConstants/EXConstants/
H A DABI47_0_0EXConstantsService.m68 @"manifest": ABI47_0_0EXNullIfNil([[self class] appConfig]),
479 + (NSDictionary *)appConfig

12