Home
last modified time | relevance | path

Searched refs:Config (Results 1 – 25 of 192) sorted by relevance

12345678

/expo/packages/@expo/config-plugins/build/ios/
H A DUpdates.js6 exports.Config = void 0;
50 exports.Config = Config;
51 (function (Config) { argument
52 Config["ENABLED"] = "EXUpdatesEnabled";
56 Config["SDK_VERSION"] = "EXUpdatesSDKVersion";
57 Config["UPDATE_URL"] = "EXUpdatesURL";
62 })(Config || (exports.Config = Config = {}));
81 newExpoPlist[Config.UPDATE_URL] = updateUrl;
83 delete newExpoPlist[Config.UPDATE_URL];
115 delete newExpoPlist[Config.SDK_VERSION];
[all …]
/expo/packages/@expo/config-plugins/build/android/
H A DUpdates.js6 exports.Config = void 0;
77 exports.Config = Config;
78 (function (Config) { argument
79 Config["ENABLED"] = "expo.modules.updates.ENABLED";
81 Config["LAUNCH_WAIT_MS"] = "expo.modules.updates.EXPO_UPDATES_LAUNCH_WAIT_MS";
82 Config["SDK_VERSION"] = "expo.modules.updates.EXPO_SDK_VERSION";
83 Config["RUNTIME_VERSION"] = "expo.modules.updates.EXPO_RUNTIME_VERSION";
84 Config["UPDATE_URL"] = "expo.modules.updates.EXPO_UPDATE_URL";
85 Config["RELEASE_CHANNEL"] = "expo.modules.updates.EXPO_RELEASE_CHANNEL";
88 Config["CODE_SIGNING_METADATA"] = "expo.modules.updates.CODE_SIGNING_METADATA";
[all …]
H A DUpdates.js.map1Config","exports","withUpdates","config","withPlugins","withUpdatesManifest","withRuntimeVersionRe…
/expo/packages/@expo/config-plugins/src/ios/
H A DUpdates.ts24 export enum Config { enum
62 [Config.ENABLED]: getUpdatesEnabled(config), constant
64 [Config.LAUNCH_WAIT_MS]: getUpdatesTimeout(config),
69 newExpoPlist[Config.UPDATE_URL] = updateUrl;
71 delete newExpoPlist[Config.UPDATE_URL];
85 delete newExpoPlist[Config.CODE_SIGNING_METADATA];
113 delete newExpoPlist[Config.SDK_VERSION];
120 delete newExpoPlist[Config.RUNTIME_VERSION];
121 newExpoPlist[Config.SDK_VERSION] = sdkVersion;
123 delete newExpoPlist[Config.SDK_VERSION];
[all …]
/expo/packages/@expo/config-plugins/src/android/
H A DUpdates.ts34 export enum Config { enum
98 Config.ENABLED,
103 Config.CHECK_ON_LAUNCH,
108 Config.LAUNCH_WAIT_MS,
116 removeMetaDataItemFromMainApplication(mainApplication, Config.UPDATE_URL);
123 Config.CODE_SIGNING_CERTIFICATE,
134 Config.CODE_SIGNING_METADATA,
145 Config.UPDATES_CONFIGURATION_REQUEST_HEADERS_KEY,
151 Config.UPDATES_CONFIGURATION_REQUEST_HEADERS_KEY
173 removeMetaDataItemFromMainApplication(mainApplication, Config.SDK_VERSION);
[all …]
/expo/packages/expo-test-runner/src/
H A DConfigReader.ts3 import { Config } from './Config';
8 readConfigFile(): Config {
9 return require(this.path) as Config;
/expo/home/utils/
H A DUrlUtils.ts3 import Config from '../api/Config';
5 const HTTPS_HOSTS = [Config.api.host, 'exp.host', 'exponentjs.com', 'getexponent.com'];
15 components = url.parse(`exp://${Config.api.host}/${rawUrl}`);
65 str.startsWith(`${Config.website.origin}/`) ||
66 str.startsWith(`${Config.api.origin}/`)
/expo/android/app/src/test/java/host/exp/exponent/
H A DBasicUnitTest.kt10 import org.robolectric.annotation.Config
13 @Config(manifest = Config.NONE)
/expo/packages/expo-test-runner/build/
H A DConfigReader.d.ts1 import { Config } from './Config';
5 readConfigFile(): Config;
H A DConfigReader.js.map1Config } from './Config';\n\nexport default class ConfigReader {\n constructor(private path: stri…
H A DregisterCommand.d.ts2 import { Config } from './Config';
10 …ltOptions>(commander: CommanderStatic, commandName: string, fn: (config: Config, options: OptionsT…
/expo/tools/src/
H A DVersions.ts1 import { Config, Versions } from '@expo/xdl';
69 const originalHost = Config.api.host;
70 Config.api.host = apiHost;
72 Config.api.host = originalHost;
/expo/tools/src/commands/
H A DPromoteVersionsToProduction.ts2 import { Config, Versions } from '@expo/xdl';
11 Config.api.host = STAGING_API_HOST;
18 Config.api.host = PRODUCTION_API_HOST;
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/scripts/cocoapods/__tests__/test_utils/
H A DPodMock.rb7 class Config class
8 @@instance = Config.new()
21 @@instance = Config.new()
/expo/packages/expo-test-runner/src/commands/
H A DRunTest.ts5 import { Application, Config } from '../Config';
13 function findTest(config: Config, test: string): [string, Application] {
27 async function runTestAsync(config: Config, options: RunTestOptions) {
H A DCreateProject.ts4 import { Config } from '../Config';
12 async function createProjectAsync(config: Config, options: CreateProjectOptions) {
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/scripts/cocoapods/__tests__/test_utils/
H A DPodMock.rb7 class Config class
8 @@instance = Config.new()
21 @@instance = Config.new()
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/scripts/cocoapods/__tests__/test_utils/
H A DPodMock.rb7 class Config class
8 @@instance = Config.new()
21 @@instance = Config.new()
/expo/home/components/
H A DShareProjectButton.tsx6 import Config from '../api/Config';
16 const url = `exp://${Config.api.host}/${props.fullName}`;
/expo/docs/pages/eas-update/
H A Denvironment-variables.mdx41 ```js Config.js
44 let Config = {
50 Config.apiUrl = 'https://api.production.com';
51 Config.enableHiddenFeatures = false;
53 Config.apiUrl = 'https://api.staging.com';
54 Config.enableHiddenFeatures = true;
57 export default Config;
64 …your local development environment to different servers. We can update **Config.js** to also look …
66 ```js Config.js
67 let Config = {
[all …]
/expo/docs/common/
H A Dsnack.ts4 type Config = { alias
17 export function getSnackFiles(config: Config) {
/expo/home/legacy/
H A DFriendlyUrls.ts3 import Config from '../api/Config';
12 if (components.hostname === Config.api.host) {
/expo/home/api/
H A DApolloClient.ts6 import Config from './Config';
11 uri: `${Config.api.origin}/--/graphql`,
/expo/docs/ui/components/Markdown/
H A Dindex.tsx10 type Config = ConfigStyles & {
24 const markdownStyles: Record<string, Config | null> = {
109 function componentName({ Component }: Config) {
114 function createMarkdownComponent(config: Config): ComponentType<ComponentProps> {
/expo/packages/expo-dev-launcher/android/src/test/java/expo/modules/devlauncher/helpers/
H A DDevLauncherInstallationIDHelperTest.kt9 import org.robolectric.annotation.Config
13 @Config(sdk = [21])

12345678