| /expo/packages/expo-updates/ios/EXUpdates/ |
| H A D | UpdatesConfig.swift | 80 public let launchWaitMs: Int variable 99 launchWaitMs: Int, 113 self.launchWaitMs = launchWaitMs 162 … let launchWaitMs = config.optionalValue(forKey: EXUpdatesConfigLaunchWaitMsKey).let { (it: Any) in in config() variable 219 launchWaitMs: launchWaitMs, in config()
|
| /expo/ios/versioned/sdk49/EXUpdates/EXUpdates/ |
| H A D | UpdatesConfig.swift | 80 public let launchWaitMs: Int variable 99 launchWaitMs: Int, 113 self.launchWaitMs = launchWaitMs 162 …let launchWaitMs = config.optionalValue(forKey: ABI49_0_0EXUpdatesConfigLaunchWaitMsKey).let { (it… in config() variable 219 launchWaitMs: launchWaitMs, in config()
|
| /expo/ios/versioned/sdk48/EXUpdates/EXUpdates/ |
| H A D | ABI48_0_0EXUpdatesConfig.m | 22 @property (nonatomic, readwrite, strong) NSNumber *launchWaitMs; property 155 id launchWaitMs = config[ABI48_0_0EXUpdatesConfigLaunchWaitMsKey]; 156 if (launchWaitMs && [launchWaitMs isKindOfClass:[NSNumber class]]) { 157 _launchWaitMs = (NSNumber *)launchWaitMs; 158 } else if (launchWaitMs && [launchWaitMs isKindOfClass:[NSString class]]) { 161 _launchWaitMs = [formatter numberFromString:(NSString *)launchWaitMs];
|
| H A D | ABI48_0_0EXUpdatesConfig.h | 49 @property (nonatomic, readonly) NSNumber *launchWaitMs;
|
| /expo/ios/versioned/sdk47/EXUpdates/EXUpdates/ |
| H A D | ABI47_0_0EXUpdatesConfig.m | 22 @property (nonatomic, readwrite, strong) NSNumber *launchWaitMs; property 155 id launchWaitMs = config[ABI47_0_0EXUpdatesConfigLaunchWaitMsKey]; 156 if (launchWaitMs && [launchWaitMs isKindOfClass:[NSNumber class]]) { 157 _launchWaitMs = (NSNumber *)launchWaitMs; 158 } else if (launchWaitMs && [launchWaitMs isKindOfClass:[NSString class]]) { 161 _launchWaitMs = [formatter numberFromString:(NSString *)launchWaitMs];
|
| H A D | ABI47_0_0EXUpdatesConfig.h | 49 @property (nonatomic, readonly) NSNumber *launchWaitMs;
|
| /expo/packages/expo-updates/ios/Tests/ |
| H A D | UpdatesConfigSpec.swift | 24 expect(config.launchWaitMs) == 2 in spec() 53 expect(config.launchWaitMs) == 2 in spec()
|
| /expo/packages/expo-updates/android/src/androidTest/java/expo/modules/updates/ |
| H A D | UpdatesConfigurationInstrumentationTest.kt | 73 Assert.assertEquals(0, config.launchWaitMs) in test_defaultValues() 98 Assert.assertEquals(1000, config.launchWaitMs) in test_primitiveTypeFields_nonDefaultValues() 155 Assert.assertEquals(1000, config.launchWaitMs) in test_initialization_mapTakesPrecedenceOverContext()
|
| /expo/packages/expo-updates/ios/EXUpdates/AppLoader/ |
| H A D | AppLoaderTask.swift | 184 let launchWaitMs = config.launchWaitMs in start() variable 185 if launchWaitMs == 0 || !shouldCheckForUpdate { in start() 188 let fireDate = Date(timeIntervalSinceNow: Double(launchWaitMs) / 1000) in start()
|
| /expo/ios/versioned/sdk49/EXUpdates/EXUpdates/AppLoader/ |
| H A D | AppLoaderTask.swift | 147 let launchWaitMs = config.launchWaitMs in start() variable 148 if launchWaitMs == 0 || !shouldCheckForUpdate { in start() 151 let fireDate = Date(timeIntervalSinceNow: Double(launchWaitMs) / 1000) in start()
|
| /expo/packages/expo-updates/android/src/main/java/expo/modules/updates/ |
| H A D | UpdatesConfiguration.kt | 29 val launchWaitMs: Int, constant in expo.modules.updates.UpdatesConfiguration 68 …launchWaitMs = overrideMap?.readValueCheckingType<Int>(UPDATES_CONFIGURATION_LAUNCH_WAIT_MS_KEY) ?…
|
| /expo/ios/versioned/sdk47/EXUpdates/EXUpdates/AppLoader/ |
| H A D | ABI47_0_0EXUpdatesAppLoaderTask.m | 54 * the `launchWaitMs` value in ABI47_0_0EXUpdatesConfig. 127 NSNumber *launchWaitMs = _config.launchWaitMs; 128 if ([launchWaitMs isEqualToNumber:@(0)] || !shouldCheckForUpdate) { 131 NSDate *fireDate = [NSDate dateWithTimeIntervalSinceNow:[launchWaitMs doubleValue] / 1000];
|
| /expo/ios/versioned/sdk48/EXUpdates/EXUpdates/AppLoader/ |
| H A D | ABI48_0_0EXUpdatesAppLoaderTask.m | 54 * the `launchWaitMs` value in ABI48_0_0EXUpdatesConfig. 127 NSNumber *launchWaitMs = _config.launchWaitMs; 128 if ([launchWaitMs isEqualToNumber:@(0)] || !shouldCheckForUpdate) { 131 NSDate *fireDate = [NSDate dateWithTimeIntervalSinceNow:[launchWaitMs doubleValue] / 1000];
|
| /expo/ios/Exponent/Kernel/AppLoader/ |
| H A D | EXAppLoaderExpoUpdates.m | 332 NSNumber *launchWaitMs; 335 launchWaitMs = @(0); 339 launchWaitMs = [EXEnvironment sharedEnvironment].updatesFallbackToCacheTimeout; 342 launchWaitMs = @(60000); 362 EXUpdatesConfig.EXUpdatesConfigLaunchWaitMsKey: launchWaitMs,
|
| /expo/packages/expo-updates/android/src/main/java/expo/modules/updates/loader/ |
| H A D | LoaderTask.kt | 155 val delay = configuration.launchWaitMs in <lambda>()
|
| /expo/docs/pages/archive/classic-updates/ |
| H A D | updating-your-app.mdx | 148 | `EXUpdatesLaunchWaitMs` | `launchWaitMs` | `expo.modules.updates.EXPO_UPDATES_LAUNCH_WAIT_MS` |… 158 …launchWaitMs` setting. If a new update can be downloaded within this time, the new update will be …
|
| /expo/docs/pages/versions/v47.0.0/sdk/ |
| H A D | updates.mdx | 90 | `EXUpdatesLaunchWaitMs` | `launchWaitMs` …
|
| /expo/docs/pages/versions/unversioned/sdk/ |
| H A D | updates.mdx | 120 | `EXUpdatesLaunchWaitMs` | `launchWaitMs` …
|
| /expo/docs/pages/versions/v48.0.0/sdk/ |
| H A D | updates.mdx | 120 | `EXUpdatesLaunchWaitMs` | `launchWaitMs` …
|
| /expo/docs/pages/versions/v49.0.0/sdk/ |
| H A D | updates.mdx | 120 | `EXUpdatesLaunchWaitMs` | `launchWaitMs` …
|
| /expo/packages/expo-updates/guides/ |
| H A D | examples.md | 14 …uration` that it should check for a new update, it starts a timer with the value of `launchWaitMs`.
|