Home
last modified time | relevance | path

Searched refs:checkAutomatically (Results 1 – 25 of 26) sorted by relevance

12

/expo/packages/@expo/config-plugins/src/utils/__tests__/
H A DUpdates-test.ts56 expect(getUpdatesCheckOnLaunch({ updates: { checkAutomatically: 'ON_ERROR_RECOVERY' } })).toBe(
60 getUpdatesCheckOnLaunch({ updates: { checkAutomatically: 'ON_ERROR_RECOVERY' } }, '0.11.0')
63 getUpdatesCheckOnLaunch({ updates: { checkAutomatically: 'ON_ERROR_RECOVERY' } }, '0.10.15')
65 expect(getUpdatesCheckOnLaunch({ updates: { checkAutomatically: 'ON_LOAD' } })).toBe('ALWAYS');
66 expect(getUpdatesCheckOnLaunch({ updates: { checkAutomatically: 'WIFI_ONLY' } })).toBe(
69 expect(getUpdatesCheckOnLaunch({ updates: { checkAutomatically: 'NEVER' } })).toBe('NEVER');
/expo/packages/@expo/config-plugins/src/utils/
H A DUpdates.ts131 if (config.updates?.checkAutomatically === 'ON_ERROR_RECOVERY') {
137 } else if (config.updates?.checkAutomatically === 'ON_LOAD') {
139 } else if (config.updates?.checkAutomatically === 'WIFI_ONLY') {
141 } else if (config.updates?.checkAutomatically === 'NEVER') {
/expo/ios/versioned/sdk49/EXUpdates/EXUpdates/
H A DUpdatesModule.swift34 …let checkAutomatically = updatesService?.config?.checkOnLaunch.asString ?? CheckAutomaticallyConfi… in definition() variable
46 "checkAutomatically": checkAutomatically, in definition()
63 "checkAutomatically": checkAutomatically, in definition()
/expo/packages/expo-updates/ios/EXUpdates/
H A DUpdatesModule.swift34 …let checkAutomatically = updatesService?.config?.checkOnLaunch.asString ?? CheckAutomaticallyConfi… in definition() variable
46 "checkAutomatically": checkAutomatically, in definition()
63 "checkAutomatically": checkAutomatically, in definition()
/expo/packages/@expo/config-plugins/build/utils/
H A DUpdates.js165 …== null || _config$updates4 === void 0 ? void 0 : _config$updates4.checkAutomatically) === 'ON_ERR…
171 …== null || _config$updates5 === void 0 ? void 0 : _config$updates5.checkAutomatically) === 'ON_LOA…
173 …== null || _config$updates6 === void 0 ? void 0 : _config$updates6.checkAutomatically) === 'WIFI_O…
175 …== null || _config$updates7 === void 0 ? void 0 : _config$updates7.checkAutomatically) === 'NEVER'…
H A DUpdates.js.map1checkAutomatically","semver","gte","getUpdatesCodeSigningCertificate","_config$updates8","codeSign…
/expo/packages/expo-updates/build/
H A DUpdates.d.ts26 export declare const checkAutomatically: UpdatesCheckAutomaticallyValue | null; constant
H A DUpdates.js35 export const checkAutomatically = _checkAutomaticallyMapNativeToJS[ExpoUpdates.checkAutomatically] … constant
H A DUpdates.js.map1 …export const checkAutomatically: UpdatesCheckAutomaticallyValue | null =\n _checkAutomaticallyMap…
/expo/ios/Tests/AppLoader/
H A DEXAppLoaderConfigurationTestsProdService.m21 @"checkAutomatically": @"ON_ERROR_RECOVERY"
H A DEXAppLoaderConfigurationTests.m57 @"checkAutomatically": @"ON_ERROR_RECOVERY"
/expo/packages/expo-updates/src/
H A DUpdates.ts52 export const checkAutomatically: UpdatesCheckAutomaticallyValue | null = constant
53 _checkAutomaticallyMapNativeToJS[ExpoUpdates.checkAutomatically] ?? null;
/expo/packages/@expo/config-plugins/src/ios/__tests__/
H A DUpdates-test.ts38 checkAutomatically: 'ON_ERROR_RECOVERY',
/expo/packages/@expo/config-types/src/
H A DExpoConfig.ts185 checkAutomatically?: 'ON_ERROR_RECOVERY' | 'ON_LOAD' | 'WIFI_ONLY' | 'NEVER';
/expo/packages/@expo/config-types/build/
H A DExpoConfig.d.ts183 checkAutomatically?: 'ON_ERROR_RECOVERY' | 'ON_LOAD' | 'WIFI_ONLY' | 'NEVER';
/expo/packages/expo-updates/e2e/fixtures/
H A DApp.tsx175 <TestValue testID="checkAutomatically" value={`${Updates.checkAutomatically}`} />
H A DApp-apitest.tsx41 const checkAutomaticallyMessage = `Automatic check setting = ${Updates.checkAutomatically}`;
H A DUpdates.e2e.ts489 const checkAutomatically = await testElementValueAsync('checkAutomatically'); constant
490 jestExpect(checkAutomatically).toEqual('ON_LOAD');
/expo/packages/@expo/config-plugins/src/android/__tests__/
H A DUpdates-test.ts50 checkAutomatically: 'ON_ERROR_RECOVERY',
/expo/docs/pages/archive/classic-updates/
H A Dconfiguring-updates.mdx25 Setting `updates.checkAutomatically` to `"ON_ERROR_RECOVERY"` in app.json will prevent Expo from au…
46 Note that `checkAutomatically: "ON_ERROR_RECOVERY"` will be ignored in Expo Go, although the impera…
/expo/packages/@expo/config-plugins/
H A DCHANGELOG.md95 - Add missing updates.checkAutomatically values. ([#22119](https://github.com/expo/expo/pull/22119)…
/expo/guides/releasing/
H A DUpdates QA.md30 - Set `checkAutomatically: ON_ERROR_RECOVERY` and add buttons to your UI to test the `Updates` modu…
37 - Publish a new update with `enabled: true`, `fallbackToCacheTimeout: 0`, and `checkAutomatically: …
/expo/packages/@expo/prebuild-config/src/plugins/__tests__/
H A DwithDefaultPlugins-test.ts91 checkAutomatically: 'ON_ERROR_RECOVERY',
/expo/packages/@expo/prebuild-config/src/plugins/__tests__/__snapshots__/
H A DwithDefaultPlugins-test.ts.snap521 "checkAutomatically": "ON_ERROR_RECOVERY",
1818 "checkAutomatically": "ON_ERROR_RECOVERY",
2798 "checkAutomatically": "ON_ERROR_RECOVERY",
/expo/packages/jest-expo/src/preset/
H A DexpoModules.js798 checkAutomatically: { type: 'string' }, property

12