Home
last modified time | relevance | path

Searched refs:bundleUrl (Results 1 – 25 of 62) sorted by relevance

123

/expo/packages/@expo/cli/src/start/server/middleware/
H A DManifestMiddleware.ts147 bundleUrl: string;
202 const bundleUrl = this._getBundleUrl({ constant
209 await this.mutateManifestWithAssetsAsync(projectConfig.exp, bundleUrl);
214 bundleUrl,
342 private async mutateManifestWithAssetsAsync(manifest: ExpoConfig, bundleUrl: string) {
349 return resolve(bundleUrl!.match(/^https?:\/\/.*?\//)![0], path);
351 return bundleUrl!.match(/^https?:\/\/.*?\//)![0] + 'assets/' + path;
376 const bundleUrl = this.getWebBundleUrl(); constant
383 scripts: [bundleUrl],
/expo/android/expoview/src/main/java/host/exp/exponent/storage/
H A DExponentDB.kt26 bundleUrl = exponentDBObject.bundleUrl, in <lambda>()
52 experienceDBObject.bundleUrl!! in <lambda>()
72 experienceDBObject.bundleUrl!! in <lambda>()
H A DExponentDBObject.kt5 class ExponentDBObject(var manifestUrl: String, var manifest: Manifest, var bundleUrl: String) variable in host.exp.exponent.storage.ExponentDBObject
H A DExperienceDBObject.kt12 @Column var bundleUrl: String? = null, variable in host.exp.exponent.storage.ExperienceDBObject
/expo/home/redux/
H A DHistoryReducer.ts7 bundleUrl: null | string;
17 bundleUrl: null,
/expo/ios/versioned/sdk48/EXUpdates/EXUpdates/Update/
H A DABI48_0_0EXUpdatesLegacyUpdate.m55 NSString *bundleUrlString = manifest.bundleUrl;
65 NSURL *bundleUrl = [NSURL URLWithString:bundleUrlString];
66 NSAssert(bundleUrl, @"Manifest JSON must have a valid URL as the bundleUrl property");
72 jsBundleAsset.url = bundleUrl;
110 update.bundleUrl = bundleUrl;
H A DABI48_0_0EXUpdatesNewUpdate.m44 NSURL *bundleUrl = [NSURL URLWithString:bundleUrlString];
45 NSAssert(bundleUrl, @"launchAsset.url should be a valid URL");
52 jsBundleAsset.url = bundleUrl;
100 update.bundleUrl = bundleUrl;
/expo/ios/versioned/sdk47/EXUpdates/EXUpdates/Update/
H A DABI47_0_0EXUpdatesLegacyUpdate.m55 NSString *bundleUrlString = manifest.bundleUrl;
65 NSURL *bundleUrl = [NSURL URLWithString:bundleUrlString];
66 NSAssert(bundleUrl, @"Manifest JSON must have a valid URL as the bundleUrl property");
72 jsBundleAsset.url = bundleUrl;
110 update.bundleUrl = bundleUrl;
H A DABI47_0_0EXUpdatesNewUpdate.m44 NSURL *bundleUrl = [NSURL URLWithString:bundleUrlString];
45 NSAssert(bundleUrl, @"launchAsset.url should be a valid URL");
52 jsBundleAsset.url = bundleUrl;
100 update.bundleUrl = bundleUrl;
/expo/ios/versioned/sdk48/EXManifests/EXManifests/
H A DABI48_0_0EXManifestsBaseLegacyManifest.m38 - (NSString *)bundleUrl { method
39 return [self.rawManifestJSON stringForKey:@"bundleUrl"];
H A DABI48_0_0EXManifestsBaseLegacyManifest.h16 - (NSString *)bundleUrl;
/expo/ios/versioned/sdk47/EXManifests/EXManifests/
H A DABI47_0_0EXManifestsBaseLegacyManifest.m38 - (NSString *)bundleUrl { method
39 return [self.rawManifestJSON stringForKey:@"bundleUrl"];
H A DABI47_0_0EXManifestsBaseLegacyManifest.h16 - (NSString *)bundleUrl;
/expo/packages/@expo/cli/src/start/server/metro/
H A DMetroBundlerDevServer.ts139 bundleUrl: isDev ? devBundleUrl : undefined,
192 const bundleUrl = new URL(devBundleUrlPathname, this.getDevServerUrl()!); constant
195 const results = await fetch(bundleUrl.toString());
567 bundleUrl,
573 bundleUrl?: string;
593 const scripts = bundleUrl
594 ? `<script src="${bundleUrl}" defer></script>`
/expo/ios/Exponent/Kernel/Environment/
H A DEXEnvironment.m147 // load bundleUrl from embedded manifest
218 id bundleUrl = manifest[@"bundleUrl"];
219 if (bundleUrl && [bundleUrl isKindOfClass:[NSString class]]) {
220 _embeddedBundleUrl = (NSString *)bundleUrl;
/expo/ios/versioned/sdk49/EXUpdates/EXUpdates/Update/
H A DLegacyUpdate.swift44 let bundleUrlString = manifest.bundleUrl()
55 …let bundleUrl = URL(string: bundleUrlString).require("Manifest JSON must have a valid URL as the b… variable
61 jsBundleAsset.url = bundleUrl
H A DNewUpdate.swift30 let bundleUrl = URL(string: bundleUrlString).require("launchAsset.url should be a valid URL") variable
37 jsBundleAsset.url = bundleUrl
/expo/packages/expo-updates/ios/EXUpdates/Update/
H A DLegacyUpdate.swift44 let bundleUrlString = manifest.bundleUrl()
55 …let bundleUrl = URL(string: bundleUrlString).require("Manifest JSON must have a valid URL as the b… variable
61 jsBundleAsset.url = bundleUrl
H A DNewUpdate.swift30 let bundleUrl = URL(string: bundleUrlString).require("launchAsset.url should be a valid URL") variable
37 jsBundleAsset.url = bundleUrl
/expo/android/expoview/src/main/java/host/exp/exponent/kernel/
H A DKernel.kt86 var bundleUrl: String? = null in <lambda>() variable in host.exp.exponent.kernel.Kernel.ExperienceActivityTask
292 private val bundleUrl: String? in <lambda>() constant in host.exp.exponent.kernel.Kernel
736 val bundleUrl = toHttp(manifest.getBundleURL()) in <lambda>() constant
738 task.bundleUrl = bundleUrl in <lambda>()
741 sendManifestToExperienceActivity(manifestUrl, manifest, bundleUrl) in <lambda>()
805 bundleUrl: String, in <lambda>()
815 optimisticActivity!!.setManifest(manifestUrl, manifest, bundleUrl) in <lambda>()
990 return instance.bundleUrl in <lambda>()
1009 return instance.bundleUrl in <lambda>()
1026 return instance.bundleUrl in <lambda>()
[all …]
/expo/packages/expo-manifests/ios/EXManifests/
H A DBaseLegacyManifest.swift28 public override func bundleUrl() -> String { in bundleUrl() function
/expo/ios/versioned/sdk49/EXManifests/EXManifests/
H A DBaseLegacyManifest.swift28 public override func bundleUrl() -> String { in bundleUrl() function
/expo/packages/expo-updates/e2e/fixtures/project_files/e2e/tests/utils/
H A Dupdate.ts30 const bundleUrl = testUpdateBundlesJson[notifyString][platform]; constant
31 return path.join(testUpdateBundlesPath, bundleUrl);
/expo/android/expoview/src/main/java/host/exp/exponent/headless/
H A DInternalHeadlessAppLoader.kt81 val bundleUrl = ExponentUrls.toHttp(manifest.getBundleURL()) in loadApp() constant
82 activityIdToBundleUrl.put(activityId, bundleUrl) in loadApp()
83 setManifest(manifestUrl!!, manifest, bundleUrl) in loadApp()
106 private fun setManifest(manifestUrl: String, manifest: Manifest, bundleUrl: String?) { in setManifest()
112 ExponentDB.saveExperience(ExponentDBObject(this.manifestUrl!!, manifest, bundleUrl!!)) in setManifest()
/expo/ios/Exponent/Kernel/AppLoader/
H A DEXApiUtil.m18 return [[self class] encodedUrlFromString:manifest.bundleUrl];

123