Home
last modified time | relevance | path

Searched refs:updateUrl (Results 1 – 25 of 60) sorted by relevance

123

/expo/packages/expo-updates/ios/EXUpdates/
H A DUpdatesConfig.swift77 public let updateUrl: URL? variable
96 updateUrl: URL?,
110 self.updateUrl = updateUrl
150 let updateUrl: URL? = config.optionalValue(forKey: EXUpdatesConfigUpdateUrlKey).let { it in in config() variable
156 let updateUrl = updateUrl { in config() variable
157 scopeKey = UpdatesConfig.normalizedURLOrigin(url: updateUrl) in config()
216 updateUrl: updateUrl, in config()
H A DDevLauncherController.swift85 fromURL: updatesConfiguration.updateUrl!
163 guard updatesConfiguration.updateUrl != nil && updatesConfiguration.scopeKey != nil else { in setup()
/expo/ios/versioned/sdk49/EXUpdates/EXUpdates/
H A DUpdatesConfig.swift77 public let updateUrl: URL? variable
96 updateUrl: URL?,
110 self.updateUrl = updateUrl
150 …let updateUrl: URL? = config.optionalValue(forKey: ABI49_0_0EXUpdatesConfigUpdateUrlKey).let { it … in config() variable
156 let updateUrl = updateUrl { in config() variable
157 scopeKey = UpdatesConfig.normalizedURLOrigin(url: updateUrl) in config()
216 updateUrl: updateUrl, in config()
H A DDevLauncherController.swift85 fromURL: updatesConfiguration.updateUrl!
163 guard updatesConfiguration.updateUrl != nil && updatesConfiguration.scopeKey != nil else { in setup()
H A DUpdatesUtils.swift76 fromURL: constants.config.updateUrl!,
142 fromURL: constants.config.updateUrl!
/expo/packages/expo-dev-launcher/bundle/functions/
H A DformatUpdateUrl.ts4 …const updateUrl = `expo-dev-client://expo-development-client?${updatePermalinkQuery}&${updateMessa… constant
5 return updateUrl;
/expo/packages/expo-updates/android/src/main/java/expo/modules/updates/
H A DUpdatesConfiguration.kt25 val updateUrl: Uri?, constant in expo.modules.updates.UpdatesConfiguration
62updateUrl = overrideMap?.readValueCheckingType<Uri>(UPDATES_CONFIGURATION_UPDATE_URL_KEY) ?: conte… in <lambda>()
64updateUrl = overrideMap?.readValueCheckingType<Uri>(UPDATES_CONFIGURATION_UPDATE_URL_KEY) ?: conte… in <lambda>()
184 private fun maybeGetDefaultScopeKey(scopeKey: String?, updateUrl: Uri?): String? { in maybeGetDefaultScopeKey()
187 if (updateUrl != null) { in maybeGetDefaultScopeKey()
188 return getNormalizedUrlOrigin(updateUrl) in maybeGetDefaultScopeKey()
H A DUpdatesDevLauncherController.kt47 if (updatesConfiguration.updateUrl == null || updatesConfiguration.scopeKey == null) { in fetchUpdateWithConfiguration()
173 if (updatesConfiguration.updateUrl == null || updatesConfiguration.scopeKey == null) { in storedUpdateIdsWithConfiguration()
/expo/packages/@expo/config-plugins/src/ios/
H A DUpdates.ts67 const updateUrl = getUpdateUrl(config); constant
68 if (updateUrl) {
69 newExpoPlist[Config.UPDATE_URL] = updateUrl;
/expo/packages/expo-dev-launcher/bundle/native-modules/
H A DDevLauncherInternal.ts28 export async function loadUpdate(updateUrl: string, projectUrl: string) {
29 return await DevLauncher.loadUpdate(updateUrl, projectUrl);
/expo/packages/@expo/config-plugins/src/android/
H A DUpdates.ts112 const updateUrl = getUpdateUrl(config); constant
113 if (updateUrl) {
114 addMetaDataItemToMainApplication(mainApplication, Config.UPDATE_URL, updateUrl);
/expo/packages/expo-dev-launcher/bundle/hooks/
H A DuseOnUpdatePress.tsx40 const updateUrl = formatUpdateUrl(update.manifestPermalink, update.message);
49 return loadUpdate(updateUrl, projectUrl)
/expo/packages/@expo/config-plugins/build/ios/
H A DUpdates.js79 const updateUrl = (0, _Updates().getUpdateUrl)(config);
80 if (updateUrl) {
81 newExpoPlist[Config.UPDATE_URL] = updateUrl;
/expo/packages/expo-updates/ios/Tests/
H A DUpdatesConfigSpec.swift21 expect(config.updateUrl?.absoluteString) == "http://example.com" in spec()
50 expect(config.updateUrl?.absoluteString) == "http://google.com" in spec()
/expo/packages/@expo/config-plugins/build/android/
H A DUpdates.js119 const updateUrl = (0, _Updates().getUpdateUrl)(config);
120 if (updateUrl) {
121 … (0, _Manifest().addMetaDataItemToMainApplication)(mainApplication, Config.UPDATE_URL, updateUrl);
/expo/ios/versioned/sdk48/EXUpdates/EXUpdates/
H A DABI48_0_0EXUpdatesConfig.m19 @property (nonatomic, readwrite, strong) NSURL *updateUrl; property
114 id updateUrl = config[ABI48_0_0EXUpdatesConfigUpdateUrlKey];
115 if (updateUrl && [updateUrl isKindOfClass:[NSString class]]) {
116 NSURL *url = [NSURL URLWithString:(NSString *)updateUrl];
125 // set updateUrl as the default value if none is provided
H A DABI48_0_0EXUpdatesConfig.h46 @property (nonatomic, readonly) NSURL *updateUrl;
/expo/ios/versioned/sdk47/EXUpdates/EXUpdates/
H A DABI47_0_0EXUpdatesConfig.m19 @property (nonatomic, readwrite, strong) NSURL *updateUrl; property
114 id updateUrl = config[ABI47_0_0EXUpdatesConfigUpdateUrlKey];
115 if (updateUrl && [updateUrl isKindOfClass:[NSString class]]) {
116 NSURL *url = [NSURL URLWithString:(NSString *)updateUrl];
125 // set updateUrl as the default value if none is provided
H A DABI47_0_0EXUpdatesConfig.h46 @property (nonatomic, readonly) NSURL *updateUrl;
/expo/ios/versioned/sdk49/EXUpdates/EXUpdates/Database/
H A DUpdatesBuildData.swift67 …"ABI49_0_0EXUpdatesURL": config.updateUrl.require("Must supply updateUrl in config").absoluteStrin… in getBuildDataFromConfig()
/expo/packages/expo-updates/ios/EXUpdates/Database/
H A DUpdatesBuildData.swift67 "EXUpdatesURL": config.updateUrl.require("Must supply updateUrl in config").absoluteString, in getBuildDataFromConfig()
/expo/packages/@expo/config-plugins/src/android/__tests__/
H A DUpdates-test.ts74 const updateUrl = mainApplication['meta-data'].filter( constant
77 expect(updateUrl).toHaveLength(0);
/expo/packages/expo-updates/android/src/main/java/expo/modules/updates/db/
H A DBuildData.kt99 put(UpdatesConfiguration.UPDATES_CONFIGURATION_UPDATE_URL_KEY, updatesConfiguration.updateUrl) in getBuildDataFromConfig()
/expo/ios/versioned/sdk49/EXUpdates/EXUpdates/Update/
H A DLegacyUpdate.swift123 let manifestUrl = config.updateUrl in bundledAssetBaseUrl()
/expo/packages/expo-updates/ios/EXUpdates/Update/
H A DLegacyUpdate.swift123 let manifestUrl = config.updateUrl in bundledAssetBaseUrl()

123