| /expo/packages/expo-updates/android/src/main/java/expo/modules/updates/db/ |
| H A D | BuildData.kt | 35 updatesConfiguration: UpdatesConfiguration, in ensureBuildDataIsConsistent() 38 val scopeKey = updatesConfiguration.scopeKey in ensureBuildDataIsConsistent() 42 setBuildDataInDatabase(database, updatesConfiguration) in ensureBuildDataIsConsistent() 43 } else if (!isBuildDataConsistent(updatesConfiguration, buildJSON)) { in ensureBuildDataIsConsistent() 45 setBuildDataInDatabase(database, updatesConfiguration) in ensureBuildDataIsConsistent() 55 updatesConfiguration: UpdatesConfiguration, in isBuildDataConsistent() 58 val configBuildData = getBuildDataFromConfig(updatesConfiguration) in isBuildDataConsistent() 82 updatesConfiguration: UpdatesConfiguration, in setBuildDataInDatabase() 84 val buildDataJSON = getBuildDataFromConfig(updatesConfiguration) in setBuildDataInDatabase() 93 private fun getBuildDataFromConfig(updatesConfiguration: UpdatesConfiguration): JSONObject { in getBuildDataFromConfig() [all …]
|
| /expo/packages/expo-updates/android/src/main/java/expo/modules/updates/ |
| H A D | UpdatesDevLauncherController.kt | 46 val updatesConfiguration = UpdatesConfiguration(context, configuration) in fetchUpdateWithConfiguration() constant 47 if (updatesConfiguration.updateUrl == null || updatesConfiguration.scopeKey == null) { in fetchUpdateWithConfiguration() 57 mTempConfiguration = controller.updatesConfiguration in fetchUpdateWithConfiguration() 59 controller.updatesConfiguration = updatesConfiguration in fetchUpdateWithConfiguration() 63 updatesConfiguration, in fetchUpdateWithConfiguration() 73 controller.updatesConfiguration = mTempConfiguration!! in fetchUpdateWithConfiguration() 84 launchUpdate(loaderResult.updateEntity, updatesConfiguration, context, callback) in fetchUpdateWithConfiguration() 148 controller.updatesConfiguration = mTempConfiguration!! in launchUpdate() 172 val updatesConfiguration = UpdatesConfiguration(context, configuration) in storedUpdateIdsWithConfiguration() constant 173 if (updatesConfiguration.updateUrl == null || updatesConfiguration.scopeKey == null) { in storedUpdateIdsWithConfiguration() [all …]
|
| H A D | UpdatesController.kt | 67 var updatesConfiguration: UpdatesConfiguration variable 107 UpdatesUtils.getRuntimeVersion(updatesConfiguration) 123 if (isEmergencyLaunch || !updatesConfiguration.isEnabled) { in onDidCreateReactInstanceManager() 193 get() = updatesConfiguration.updateUrl 242 if (!updatesConfiguration.isEnabled) { in start() 243 launcher = NoDatabaseLauncher(context, updatesConfiguration) in start() 247 if (updatesConfiguration.updateUrl == null || updatesConfiguration.scopeKey == null) { in start() 267 updatesConfiguration, in start() 487 updatesConfiguration, in runReaper() 514 updatesConfiguration, in relaunchReactApplication() [all …]
|
| H A D | UpdatesUtils.kt | 211 updatesConfiguration: UpdatesConfiguration, in <lambda>() 214 if (updatesConfiguration.updateUrl == null) { in <lambda>() 217 return when (updatesConfiguration.checkOnLaunch) { in <lambda>() 236 fun getRuntimeVersion(updatesConfiguration: UpdatesConfiguration): String { in <lambda>() 237 val runtimeVersion = updatesConfiguration.runtimeVersion in <lambda>() 238 val sdkVersion = updatesConfiguration.sdkVersion in <lambda>()
|
| H A D | UpdatesService.kt | 36 get() = UpdatesController.instance.updatesConfiguration
|
| /expo/ios/versioned/sdk49/EXUpdates/EXUpdates/ |
| H A D | DevLauncherController.swift | 65 guard let updatesConfiguration = setup(configuration: configuration, error: errorBlock) else { variable 75 controller.setConfigurationInternal(config: updatesConfiguration) 78 config: updatesConfiguration, 85 fromURL: updatesConfiguration.updateUrl! 112 …self.launch(update: update, withConfiguration: updatesConfiguration, success: successBlock, error:… 148 var updatesConfiguration: UpdatesConfig in setup() variable 150 …updatesConfiguration = try UpdatesConfig.configWithExpoPlist(mergingOtherDictionary: configuration… in setup() 163 guard updatesConfiguration.updateUrl != nil && updatesConfiguration.scopeKey != nil else { in setup() 182 return updatesConfiguration in setup()
|
| /expo/packages/expo-updates/ios/EXUpdates/ |
| H A D | DevLauncherController.swift | 65 guard let updatesConfiguration = setup(configuration: configuration, error: errorBlock) else { variable 75 controller.setConfigurationInternal(config: updatesConfiguration) 78 config: updatesConfiguration, 85 fromURL: updatesConfiguration.updateUrl! 112 …self.launch(update: update, withConfiguration: updatesConfiguration, success: successBlock, error:… 148 var updatesConfiguration: UpdatesConfig in setup() variable 150 …updatesConfiguration = try UpdatesConfig.configWithExpoPlist(mergingOtherDictionary: configuration… in setup() 163 guard updatesConfiguration.updateUrl != nil && updatesConfiguration.scopeKey != nil else { in setup() 182 return updatesConfiguration in setup()
|
| /expo/ios/versioned/sdk47/EXUpdates/EXUpdates/ |
| H A D | ABI47_0_0EXUpdatesDevLauncherController.m | 83 ABI47_0_0EXUpdatesConfig *updatesConfiguration = [self _setup:configuration 85 if (updatesConfiguration == nil) { 95 [controller setConfigurationInternal:updatesConfiguration]; 108 …[self _launchUpdate:update withConfiguration:updatesConfiguration success:successBlock error:error… 120 ABI47_0_0EXUpdatesConfig *updatesConfiguration = [self _setup:configuration 122 if (updatesConfiguration == nil) { 137 // Returns the updatesConfiguration 142 ABI47_0_0EXUpdatesConfig *updatesConfiguration = [ABI47_0_0EXUpdatesConfig configWithExpoPlist]; 143 [updatesConfiguration loadConfigFromDictionary:configuration]; 144 if (!updatesConfiguration.updateUrl || !updatesConfiguration.scopeKey) { [all …]
|
| /expo/ios/versioned/sdk48/EXUpdates/EXUpdates/ |
| H A D | ABI48_0_0EXUpdatesDevLauncherController.m | 83 ABI48_0_0EXUpdatesConfig *updatesConfiguration = [self _setup:configuration 85 if (updatesConfiguration == nil) { 95 [controller setConfigurationInternal:updatesConfiguration]; 108 …[self _launchUpdate:update withConfiguration:updatesConfiguration success:successBlock error:error… 120 ABI48_0_0EXUpdatesConfig *updatesConfiguration = [self _setup:configuration 122 if (updatesConfiguration == nil) { 137 // Returns the updatesConfiguration 142 ABI48_0_0EXUpdatesConfig *updatesConfiguration = [ABI48_0_0EXUpdatesConfig configWithExpoPlist]; 143 [updatesConfiguration loadConfigFromDictionary:configuration]; 144 if (!updatesConfiguration.updateUrl || !updatesConfiguration.scopeKey) { [all …]
|
| /expo/android/expoview/src/main/java/host/exp/exponent/ |
| H A D | ExpoUpdatesAppLoader.kt | 99 lateinit var updatesConfiguration: UpdatesConfiguration in onOptimisticManifest() variable in host.exp.exponent.ExpoUpdatesAppLoader 196 updatesConfiguration = configuration in startLoaderTask() 326 this.launcher = NoDatabaseLauncher(context, updatesConfiguration, e) in launchWithNoDatabase() 327 var manifestJson = EmbeddedManifest.get(context, updatesConfiguration)!!.manifest.getRawJson() in launchWithNoDatabase()
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/updates/ |
| H A D | UpdatesService.kt | 34 get() = UpdatesController.instance.updatesConfiguration
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/updates/ |
| H A D | UpdatesService.kt | 36 get() = UpdatesController.instance.updatesConfiguration
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/updates/ |
| H A D | UpdatesService.kt | 34 get() = UpdatesController.instance.updatesConfiguration
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/host/exp/exponent/modules/universal/ |
| H A D | UpdatesBinding.kt | 39 get() = appLoader!!.updatesConfiguration
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/host/exp/exponent/modules/universal/ |
| H A D | UpdatesBinding.kt | 39 get() = appLoader!!.updatesConfiguration
|
| /expo/android/expoview/src/main/java/versioned/host/exp/exponent/modules/universal/ |
| H A D | UpdatesBinding.kt | 40 get() = appLoader!!.updatesConfiguration
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/host/exp/exponent/modules/universal/ |
| H A D | UpdatesBinding.kt | 40 get() = appLoader!!.updatesConfiguration
|
| /expo/packages/expo-dev-launcher/ios/ |
| H A D | EXDevLauncherController.m | 443 …NSDictionary *updatesConfiguration = [EXDevLauncherUpdatesHelper createUpdatesConfigurationWithURL… 495 …[self->_updatesInterface fetchUpdateWithConfiguration:updatesConfiguration onManifest:^BOOL(NSDict…
|