Home
last modified time | relevance | path

Searched refs:getAppVersionAsync (Results 1 – 11 of 11) sorted by relevance

/expo/packages/@expo/cli/src/start/platforms/android/__tests__/
H A DAndroidDeviceManager-test.ts33 await expect(device.getAppVersionAsync('foobar')).resolves.toBe('2.23.2');
38 await expect(device.getAppVersionAsync('foobar')).resolves.toBe(null);
/expo/tools/src/client-build/
H A Dtypes.ts13 getAppVersionAsync: () => Promise<string>; property
H A DAndroidClientBuilder.ts30 async getAppVersionAsync(): Promise<string> { method in AndroidClientBuilder
H A DIosClientBuilder.ts28 async getAppVersionAsync(): Promise<string> { method in IosClientBuilder
/expo/packages/@expo/cli/src/start/platforms/ios/__tests__/
H A DAppleDeviceManager-test.ts22 await expect(device.getAppVersionAsync('host.exp.Exponent')).resolves.toBe('2.23.2');
31 await expect(device.getAppVersionAsync('host.exp.Exponent')).resolves.toBe(null);
/expo/packages/@expo/cli/src/start/platforms/
H A DDeviceManager.ts19 abstract getAppVersionAsync(applicationId: string): Promise<string | null>;
H A DExpoGoInstaller.ts29 const installedVersion = await device.getAppVersionAsync(this.appId);
/expo/packages/@expo/cli/src/start/platforms/__tests__/
H A DExpoGoInstaller-test.ts89 getAppVersionAsync: jest.fn(async () => null),
99 getAppVersionAsync: jest.fn(async () => '1.0.0'),
109 getAppVersionAsync: jest.fn(async () => '2.0.0'),
/expo/packages/@expo/cli/src/start/platforms/android/
H A DAndroidDeviceManager.ts55 async getAppVersionAsync(applicationId: string): Promise<string | null> { method in AndroidDeviceManager
/expo/tools/src/commands/
H A DClientBuild.ts67 const appVersion = await builder.getAppVersionAsync();
/expo/packages/@expo/cli/src/start/platforms/ios/
H A DAppleDeviceManager.ts99 async getAppVersionAsync(appId: string): Promise<string | null> { method in AppleDeviceManager