Home
last modified time | relevance | path

Searched refs:installAppAsync (Results 1 – 8 of 8) sorted by relevance

/expo/packages/@expo/cli/src/run/android/
H A DrunAndroidAsync.ts49 await installAppAsync(androidProjectRoot, props);
64 async function installAppAsync(androidProjectRoot: string, props: ResolvedOptions) { function
72 await props.device.installAppAsync(binaryPath);
/expo/packages/@expo/cli/src/start/platforms/
H A DDeviceManager.ts21 abstract installAppAsync(binaryPath: string): Promise<void>;
H A DExpoGoInstaller.ts109 await deviceManager.installAppAsync(binaryPath);
/expo/packages/@expo/cli/src/start/platforms/__tests__/
H A DExpoGoInstaller-test.ts203 installAppAsync: jest.fn(async () => {}),
218 expect(deviceManager.installAppAsync).toBeCalled();
236 expect(deviceManager.installAppAsync).toBeCalled();
252 expect(deviceManager.installAppAsync).not.toBeCalled();
/expo/packages/@expo/cli/src/run/ios/
H A DlaunchApp.ts35 await device.installAppAsync(binaryPath);
/expo/packages/@expo/cli/src/run/ios/__tests__/
H A DlaunchApp-test.ts20 installAppAsync: jest.fn(),
/expo/packages/@expo/cli/src/start/platforms/android/
H A DAndroidDeviceManager.ts84 async installAppAsync(binaryPath: string) { method in AndroidDeviceManager
/expo/packages/@expo/cli/src/start/platforms/ios/
H A DAppleDeviceManager.ts140 async installAppAsync(filePath: string) { method in AppleDeviceManager