| /expo/packages/expo-store-review/src/ |
| H A D | StoreReview.ts | 56 const expoConfig = Constants.expoConfig; constant 57 if (Platform.OS === 'ios' && expoConfig?.ios) { 58 return expoConfig.ios.appStoreUrl ?? null; 59 } else if (Platform.OS === 'android' && expoConfig?.android) { 60 return expoConfig.android.playStoreUrl ?? null;
|
| /expo/packages/expo-store-review/build/ |
| H A D | StoreReview.js | 52 const expoConfig = Constants.expoConfig; 53 if (Platform.OS === 'ios' && expoConfig?.ios) { 54 return expoConfig.ios.appStoreUrl ?? null; 56 else if (Platform.OS === 'android' && expoConfig?.android) { 57 return expoConfig.android.playStoreUrl ?? null;
|
| H A D | StoreReview.js.map | 1 …expoConfig.ios.appStoreUrl` on iOS, or the\n * `Constants.expoConfig.android.playStoreUrl` on Andr…
|
| /expo/packages/expo-linking/src/ |
| H A D | Schemes.ts | 68 ios: Constants.expoConfig?.ios, 69 android: Constants.expoConfig?.android, 72 return getSchemes(Constants.expoConfig).concat(getSchemes(platformManifest)); 80 ios: Constants.expoConfig?.ios?.bundleIdentifier, 82 android: Constants.expoConfig?.android?.package, 92 return !!Object.keys(Constants.expoConfig ?? {}).length;
|
| H A D | createURL.ts | 10 if (Constants.expoConfig?.hostUri) { 11 return Constants.expoConfig.hostUri;
|
| /expo/packages/expo-linking/build/ |
| H A D | Schemes.js | 60 ios: Constants.expoConfig?.ios, 61 android: Constants.expoConfig?.android, 63 return getSchemes(Constants.expoConfig).concat(getSchemes(platformManifest)); 69 ios: Constants.expoConfig?.ios?.bundleIdentifier, 71 android: Constants.expoConfig?.android?.package, 79 return !!Object.keys(Constants.expoConfig ?? {}).length;
|
| H A D | createURL.js | 7 if (Constants.expoConfig?.hostUri) { 8 return Constants.expoConfig.hostUri;
|
| /expo/packages/expo-build-properties/src/__tests__/ |
| H A D | android-test.ts | 89 const expoConfig: ExpoConfig = { constant 94 withAndroidFlipper(expoConfig, {}); 95 expect((expoConfig as ExpoConfigWithMods)?.mods?.android).toBeUndefined(); 97 withAndroidFlipper(expoConfig, { 102 expect((expoConfig as ExpoConfigWithMods)?.mods?.android).toBeUndefined();
|
| /expo/packages/@expo/config/src/__tests__/fixtures/dynamic-cwd/ |
| H A D | app.config.ts | 4 const expoConfig = { constant 9 return expoConfig;
|
| /expo/packages/@expo/config/src/__tests__/fixtures/plugins/ |
| H A D | app.config.ts | 9 const expoConfig = { constant 12 return expoConfig as any;
|
| /expo/packages/expo-notifications/build/ |
| H A D | getDevicePushTokenAsync.web.js | 21 const vapidPublicKey = Constants.expoConfig?.notification?.vapidPublicKey; 26 const serviceWorkerPath = Constants.expoConfig?.notification?.serviceWorkerPath; 68 const notificationIcon = (Constants.expoConfig?.notification ?? {}).icon;
|
| /expo/packages/expo-router/src/fork/__tests__/ |
| H A D | getStateFromPath.test.node.ts | 13 expoConfig: {}, 18 Constants.expoConfig!.experiments = undefined; 47 Constants.expoConfig = { 66 Constants.expoConfig = {
|
| /expo/packages/expo-notifications/src/ |
| H A D | getDevicePushTokenAsync.web.ts | 35 const vapidPublicKey: string | null = Constants.expoConfig?.notification?.vapidPublicKey; 44 const serviceWorkerPath = Constants.expoConfig?.notification?.serviceWorkerPath; 101 const notificationIcon = (Constants.expoConfig?.notification ?? {}).icon;
|
| /expo/packages/@expo/fingerprint/src/sourcer/__tests__/ |
| H A D | Expo-test.ts | 169 const expoConfig = JSON.parse(expoConfigSource?.contents?.toString() ?? 'null'); constant 170 expect(expoConfig).not.toBeNull(); 171 expect(expoConfig.name).toEqual(appJson.expo.name); 189 const expoConfig = JSON.parse(expoConfigSource?.contents?.toString() ?? 'null'); constant 190 expect(expoConfig).not.toBeNull(); 191 expect(expoConfig.runtimeVersion).toBeUndefined();
|
| /expo/packages/@expo/cli/src/export/ |
| H A D | fork-bundleAsync.ts | 61 expoConfig: ExpoConfig, 68 bundles.map(({ platform }) => assertEngineMismatchAsync(projectRoot, expoConfig, platform)) 75 exp: expoConfig, 85 const isHermes = isEnableHermesManaged(expoConfig, bundle.platform); 143 const isHermesManaged = isEnableHermesManaged(expoConfig, platform);
|
| H A D | exportHermes.ts | 52 export function isEnableHermesManaged(expoConfig: ExpoConfig, platform: Platform): boolean { 55 return (expoConfig.android?.jsEngine ?? expoConfig.jsEngine) !== 'jsc'; 58 return (expoConfig.ios?.jsEngine ?? expoConfig.jsEngine) !== 'jsc';
|
| /expo/packages/expo-auth-session/src/__tests__/ |
| H A D | ManifestTestUtils.ts | 43 const expoConfig = mockManifest.manifest constant 60 expoConfig,
|
| /expo/packages/@expo/prebuild-config/src/plugins/unversioned/expo-notifications/__tests__/ |
| H A D | withAndroidNotifications-test.ts | 50 const expoConfig: ExpoConfig = { constant 60 await setNotificationIconAsync(expoConfig, projectRoot); 63 expoConfig,
|
| /expo/packages/expo-dev-menu/ios/ |
| H A D | EXDevMenuAppInfo.m | 74 NSDictionary *expoConfig = [NSDictionary dictionaryWithContentsOfFile:path]; 76 if (expoConfig != nil) { 77 value = [expoConfig objectForKey:key] ?: @"";
|
| /expo/packages/expo-auth-session/src/ |
| H A D | SessionUrlProvider.ts | 52 options.projectNameForProxy || Constants.expoConfig?.originalFullName; 86 let hostUri: string | undefined = Constants.expoConfig?.hostUri;
|
| /expo/packages/expo-auth-session/build/ |
| H A D | SessionUrlProvider.js | 42 …const legacyExpoProjectFullName = options.projectNameForProxy || Constants.expoConfig?.originalFul… 70 let hostUri = Constants.expoConfig?.hostUri;
|
| /expo/packages/@expo/cli/src/utils/analytics/__tests__/ |
| H A D | metroDebuggerMiddleware-test.ts | 87 const expoConfig = { ...fakeExpoConfig, jsEngine: 'jsc' as const }; constant 88 const middleware = createDebuggerTelemetryMiddleware('/fake-project', expoConfig);
|
| /expo/packages/@expo/cli/src/config/ |
| H A D | index.ts | 7 export const expoConfig: Command = async (argv) => { constant
|
| /expo/packages/expo-updates/e2e/fixtures/ |
| H A D | App.tsx | 204 <Text>Updates expoConfig</Text> 211 <Text>Constants expoConfig</Text> 213 <Text testID="constants.expoConfig" style={styles.logEntriesText}> 214 {JSON.stringify(Constants.expoConfig)}
|
| /expo/packages/@expo/metro-runtime/src/location/ |
| H A D | install.native.ts | 12 const manifest = Constants.expoConfig as Record<string, any> | null;
|