Searched refs:manifestPath (Results 1 – 7 of 7) sorted by relevance
| /expo/packages/@expo/config-plugins/src/android/ |
| H A D | Manifest.ts | 155 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 D | Manifest.js | 53 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 D | Manifest.d.ts | 115 export declare function writeAndroidManifestAsync(manifestPath: string, androidManifest: AndroidMan… 116 export declare function readAndroidManifestAsync(manifestPath: string): Promise<AndroidManifest>;
|
| H A D | Manifest.js.map | 1 …manifestPath","androidManifest","manifestXml","format","fs","promises","mkdir","path","dirname","r…
|
| /expo/ios/Exponent/Kernel/AppLoader/ |
| H A D | EXEmbeddedHomeLoader.m | 90 …NSString *manifestPath = [[NSBundle mainBundle] pathForResource:kEXHomeManifestResourceName ofType… 91 if (!manifestPath) { 100 …NSString *manifestJson = [NSString stringWithContentsOfFile:manifestPath encoding:NSUTF8StringEnco…
|
| /expo/tools/src/commands/ |
| H A D | PublishProdExpoHomeCommand.ts | 154 const manifestPath = platform === 'ios' ? iosManifestPath : androidManifestPath; constant 155 await fs.writeFile(path.resolve(manifestPath), JSON.stringify(manifest));
|
| /expo/tools/src/versioning/android/ |
| H A D | index.ts | 97 async function removeFromManifestAsync(sdkMajorVersion: string, manifestPath: string) { 102 path.relative(EXPO_DIR, manifestPath) 106 manifestPath,
|