Searched refs:deviceIds (Results 1 – 6 of 6) sorted by relevance
| /expo/packages/@expo/cli/src/api/ |
| H A D | updateDevelopmentSession.ts | 38 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 D | DevelopmentSession.ts | 57 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 D | updateDevelopmentSession-test.ts | 15 deviceIds: ['123'], 34 deviceIds: ['123'], 68 deviceIds: ['123'], 80 deviceIds: ['123'],
|
| /expo/packages/@expo/cli/src/start/project/ |
| H A D | devices.ts | 66 deviceIds: string | string[] 69 const newDeviceIds = typeof deviceIds === 'string' ? [deviceIds] : deviceIds; constant
|
| /expo/packages/@expo/cli/src/start/project/__tests__/ |
| H A D | devices-test.ts | 43 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 D | ManifestMiddleware.ts | 243 const deviceIds = req.headers?.['expo-dev-client-id']; constant 244 if (deviceIds) { 245 await ProjectDevices.saveDevicesAsync(this.projectRoot, deviceIds).catch((e) =>
|