Home
last modified time | relevance | path

Searched refs:checkOnLaunch (Results 1 – 25 of 30) sorted by relevance

12

/expo/packages/expo-updates/ios/EXUpdates/
H A DUpdatesConfig.swift81 public let checkOnLaunch: CheckAutomaticallyConfig variable
100 checkOnLaunch: CheckAutomaticallyConfig,
114 self.checkOnLaunch = checkOnLaunch
176 …let checkOnLaunch = config.optionalValue(forKey: EXUpdatesConfigCheckOnLaunchKey).let { (it: Strin… in config() variable
220 checkOnLaunch: checkOnLaunch, in config()
H A DUpdatesModule.swift34 …let checkAutomatically = updatesService?.config?.checkOnLaunch.asString ?? CheckAutomaticallyConfi… in definition()
H A DErrorRecovery.swift208 …} else if let delegate = delegate, delegate.config.checkOnLaunch != .Never || delegate.remoteLoadS… in launchedUpdate()
H A DUpdatesUtils.swift331 switch config.checkOnLaunch { in shouldCheckForUpdate()
/expo/ios/versioned/sdk49/EXUpdates/EXUpdates/
H A DUpdatesConfig.swift81 public let checkOnLaunch: CheckAutomaticallyConfig variable
100 checkOnLaunch: CheckAutomaticallyConfig,
114 self.checkOnLaunch = checkOnLaunch
176 …let checkOnLaunch = config.optionalValue(forKey: ABI49_0_0EXUpdatesConfigCheckOnLaunchKey).let { (… in config() variable
220 checkOnLaunch: checkOnLaunch, in config()
H A DUpdatesModule.swift34 …let checkAutomatically = updatesService?.config?.checkOnLaunch.asString ?? CheckAutomaticallyConfi… in definition()
H A DErrorRecovery.swift208 …} else if let delegate = delegate, delegate.config.checkOnLaunch != .Never || delegate.remoteLoadS… in launchedUpdate()
H A DUpdatesUtils.swift229 switch config.checkOnLaunch { in shouldCheckForUpdate()
/expo/ios/versioned/sdk48/EXUpdates/EXUpdates/
H A DABI48_0_0EXUpdatesConfig.m23 @property (nonatomic, readwrite, assign) ABI48_0_0EXUpdatesCheckAutomaticallyConfig checkOnLaunch; property
164 id checkOnLaunch = config[ABI48_0_0EXUpdatesConfigCheckOnLaunchKey];
165 if (checkOnLaunch && [checkOnLaunch isKindOfClass:[NSString class]]) {
166 … if ([ABI48_0_0EXUpdatesConfigCheckOnLaunchValueNever isEqualToString:(NSString *)checkOnLaunch]) {
168 …0_0EXUpdatesConfigCheckOnLaunchValueErrorRecoveryOnly isEqualToString:(NSString *)checkOnLaunch]) {
170 … ([ABI48_0_0EXUpdatesConfigCheckOnLaunchValueWifiOnly isEqualToString:(NSString *)checkOnLaunch]) {
172 …if ([ABI48_0_0EXUpdatesConfigCheckOnLaunchValueAlways isEqualToString:(NSString *)checkOnLaunch]) {
H A DABI48_0_0EXUpdatesConfig.h50 @property (nonatomic, readonly) ABI48_0_0EXUpdatesCheckAutomaticallyConfig checkOnLaunch;
H A DABI48_0_0EXUpdatesUtils.m100 switch (config.checkOnLaunch) {
/expo/ios/versioned/sdk47/EXUpdates/EXUpdates/
H A DABI47_0_0EXUpdatesConfig.m23 @property (nonatomic, readwrite, assign) ABI47_0_0EXUpdatesCheckAutomaticallyConfig checkOnLaunch; property
164 id checkOnLaunch = config[ABI47_0_0EXUpdatesConfigCheckOnLaunchKey];
165 if (checkOnLaunch && [checkOnLaunch isKindOfClass:[NSString class]]) {
166 … if ([ABI47_0_0EXUpdatesConfigCheckOnLaunchValueNever isEqualToString:(NSString *)checkOnLaunch]) {
168 …0_0EXUpdatesConfigCheckOnLaunchValueErrorRecoveryOnly isEqualToString:(NSString *)checkOnLaunch]) {
170 … ([ABI47_0_0EXUpdatesConfigCheckOnLaunchValueWifiOnly isEqualToString:(NSString *)checkOnLaunch]) {
172 …if ([ABI47_0_0EXUpdatesConfigCheckOnLaunchValueAlways isEqualToString:(NSString *)checkOnLaunch]) {
H A DABI47_0_0EXUpdatesConfig.h50 @property (nonatomic, readonly) ABI47_0_0EXUpdatesCheckAutomaticallyConfig checkOnLaunch;
H A DABI47_0_0EXUpdatesUtils.m100 switch (config.checkOnLaunch) {
/expo/packages/@expo/config-plugins/src/android/__tests__/
H A DUpdates-test.ts91 const checkOnLaunch = mainApplication['meta-data'].filter( constant
94 expect(checkOnLaunch).toHaveLength(1);
95 expect(checkOnLaunch[0].$['android:value']).toMatch('ERROR_RECOVERY_ONLY');
/expo/packages/expo-updates/ios/Tests/
H A DUpdatesConfigSpec.swift25 expect(config.checkOnLaunch) == .ErrorRecoveryOnly in spec()
54 expect(config.checkOnLaunch) == .ErrorRecoveryOnly in spec()
/expo/packages/expo-updates/android/src/androidTest/java/expo/modules/updates/
H A DUpdatesConfigurationInstrumentationTest.kt74 …ert.assertEquals(UpdatesConfiguration.CheckAutomaticallyConfiguration.ALWAYS, config.checkOnLaunch) in test_defaultValues()
156 …sert.assertEquals(UpdatesConfiguration.CheckAutomaticallyConfiguration.NEVER, config.checkOnLaunch) in test_initialization_mapTakesPrecedenceOverContext()
/expo/packages/expo-updates/android/src/main/java/expo/modules/updates/
H A DUpdatesConfiguration.kt30 val checkOnLaunch: CheckAutomaticallyConfiguration, constant in expo.modules.updates.UpdatesConfiguration
69checkOnLaunch = overrideMap?.readValueCheckingType<String>(UPDATES_CONFIGURATION_CHECK_ON_LAUNCH_K… in <lambda>()
H A DUpdatesUtils.kt217 return when (updatesConfiguration.checkOnLaunch) { in <lambda>()
H A DUpdatesModule.kt74 … constants["checkAutomatically"] = updatesServiceLocal.configuration.checkOnLaunch.toJSString() in <lambda>()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/updates/
H A DUpdatesModule.kt71 … constants["checkAutomatically"] = updatesServiceLocal.configuration.checkOnLaunch.toJSString() in <lambda>()
/expo/docs/pages/archive/classic-updates/
H A Dupdating-your-app.mdx140 | `EXUpdatesCheckOnLaunch` | `checkOnLaunch` | `expo.modules.updates.EXPO_UPDATES_CHECK_ON_LAUNCH` …
160 …ccur only when your users are on a Wi-Fi connection, you can set the `checkOnLaunch` setting to `W…
166 Setting `checkOnLaunch` to `NEVER` will prevent `expo-updates` from automatically fetching the late…
/expo/docs/pages/versions/v47.0.0/sdk/
H A Dupdates.mdx89 | `EXUpdatesCheckOnLaunch` | `checkOnLaunch` …
/expo/docs/pages/versions/unversioned/sdk/
H A Dupdates.mdx119 | `EXUpdatesCheckOnLaunch` | `checkOnLaunch` …
/expo/docs/pages/versions/v48.0.0/sdk/
H A Dupdates.mdx119 | `EXUpdatesCheckOnLaunch` | `checkOnLaunch` …

12