Home
last modified time | relevance | path

Searched refs:deviceIds (Results 1 – 6 of 6) sorted by relevance

/expo/packages/@expo/cli/src/api/
H A DupdateDevelopmentSession.ts38 deviceIds,
43 deviceIds: string[];
49 deviceIds.forEach((id) => {
71 deviceIds,
74 deviceIds: string[];
78 deviceIds.forEach((id) => {
/expo/packages/@expo/cli/src/start/server/
H A DDevelopmentSession.ts57 const deviceIds = await this.getDeviceInstallationIdsAsync(); constant
59 if (!(await isAuthenticatedAsync()) && !deviceIds?.length) {
74 deviceIds,
105 const deviceIds = await this.getDeviceInstallationIdsAsync(); constant
107 if (!(await isAuthenticatedAsync()) && !deviceIds?.length) {
114 deviceIds,
/expo/packages/@expo/cli/src/api/__tests__/
H A DupdateDevelopmentSession-test.ts15 deviceIds: ['123'],
34 deviceIds: ['123'],
68 deviceIds: ['123'],
80 deviceIds: ['123'],
/expo/packages/@expo/cli/src/start/project/
H A Ddevices.ts66 deviceIds: string | string[]
69 const newDeviceIds = typeof deviceIds === 'string' ? [deviceIds] : deviceIds; constant
/expo/packages/@expo/cli/src/start/project/__tests__/
H A Ddevices-test.ts43 const deviceIds = []; constant
45 deviceIds.push(`device-id-${i}`);
47 await ProjectDevices.saveDevicesAsync(projectRoot, deviceIds);
/expo/packages/@expo/cli/src/start/server/middleware/
H A DManifestMiddleware.ts243 const deviceIds = req.headers?.['expo-dev-client-id']; constant
244 if (deviceIds) {
245 await ProjectDevices.saveDevicesAsync(this.projectRoot, deviceIds).catch((e) =>