Home
last modified time | relevance | path

Searched refs:manifestPath (Results 1 – 7 of 7) sorted by relevance

/expo/packages/@expo/config-plugins/src/android/
H A DManifest.ts155 manifestPath: string,
159 await fs.promises.mkdir(path.dirname(manifestPath), { recursive: true });
160 await fs.promises.writeFile(manifestPath, manifestXml);
163 export async function readAndroidManifestAsync(manifestPath: string): Promise<AndroidManifest> {
164 const xml = await XML.readXMLAsync({ path: manifestPath });
166 throw new Error('Invalid manifest found at: ' + manifestPath);
/expo/packages/@expo/config-plugins/build/android/
H A DManifest.js53 async function writeAndroidManifestAsync(manifestPath, androidManifest) { argument
55 await _fs().default.promises.mkdir(_path().default.dirname(manifestPath), {
58 await _fs().default.promises.writeFile(manifestPath, manifestXml);
60 async function readAndroidManifestAsync(manifestPath) { argument
62 path: manifestPath
65 throw new Error('Invalid manifest found at: ' + manifestPath);
H A DManifest.d.ts115 export declare function writeAndroidManifestAsync(manifestPath: string, androidManifest: AndroidMan…
116 export declare function readAndroidManifestAsync(manifestPath: string): Promise<AndroidManifest>;
H A DManifest.js.map1manifestPath","androidManifest","manifestXml","format","fs","promises","mkdir","path","dirname","r…
/expo/ios/Exponent/Kernel/AppLoader/
H A DEXEmbeddedHomeLoader.m90 …NSString *manifestPath = [[NSBundle mainBundle] pathForResource:kEXHomeManifestResourceName ofType…
91 if (!manifestPath) {
100 …NSString *manifestJson = [NSString stringWithContentsOfFile:manifestPath encoding:NSUTF8StringEnco…
/expo/tools/src/commands/
H A DPublishProdExpoHomeCommand.ts154 const manifestPath = platform === 'ios' ? iosManifestPath : androidManifestPath; constant
155 await fs.writeFile(path.resolve(manifestPath), JSON.stringify(manifest));
/expo/tools/src/versioning/android/
H A Dindex.ts97 async function removeFromManifestAsync(sdkMajorVersion: string, manifestPath: string) {
102 path.relative(EXPO_DIR, manifestPath)
106 manifestPath,