| /expo/packages/@expo/cli/src/start/server/metro/inspector-proxy/ |
| H A D | proxy.ts | 84 const deviceId = newDeviceId ?? fallbackDeviceId; constant 86 const oldDevice = this.devices.get(deviceId); 88 deviceId, 104 this.devices.set(deviceId, newDevice); 107 if (this.devices.get(deviceId) === newDevice) { 108 this.devices.delete(deviceId); 144 if (!deviceId || !pageId) { 149 const device = this.devices.get(deviceId); 152 throw new Error(`Device with ID "${deviceId}" not found.`); 196 deviceId: asString(query.device) || undefined, [all …]
|
| /expo/packages/expo-camera/src/ |
| H A D | WebUserMediaManager.ts | 15 const { deviceId } = constraint; 17 if (typeof deviceId === 'string') { 18 return deviceId; 21 if (Array.isArray(deviceId) && deviceId.length > 0) { 22 return deviceId[0]; 25 if (typeof deviceId === 'object' && deviceId.ideal) { 26 return deviceId.ideal; 171 return isCapable?.deviceId || hasCamera?.deviceId || null;
|
| H A D | WebCameraUtils.ts | 244 return settingsA.deviceId === settingsB.deviceId;
|
| /expo/packages/expo-camera/build/ |
| H A D | WebUserMediaManager.js | 11 const { deviceId } = constraint; 12 if (typeof deviceId === 'string') { 13 return deviceId; 15 if (Array.isArray(deviceId) && deviceId.length > 0) { 16 return deviceId[0]; 18 if (typeof deviceId === 'object' && deviceId.ideal) { 19 return deviceId.ideal; 118 return isCapable?.deviceId || hasCamera?.deviceId || null;
|
| H A D | WebUserMediaManager.js.map | 1 …deviceId } = constraint;\n\n if (typeof deviceId === 'string') {\n return deviceId;\n }…
|
| H A D | WebCameraUtils.js | 160 return settingsA.deviceId === settingsB.deviceId;
|
| /expo/packages/@expo/cli/src/utils/analytics/ |
| H A D | rudderstackClient.ts | 19 deviceId: string; variable 56 const deviceId = await UserSettings.getAnonymousIdentifierAsync(); constant 60 deviceId, 99 const { userId, deviceId } = identifyData; constant 102 const identity = { userId, anonymousId: deviceId }; 118 anonymousId: identifyData.deviceId,
|
| /expo/packages/@expo/cli/src/start/server/middleware/inspector/ |
| H A D | JsInspector.ts | 63 const deviceId = app.id.split('-')[0]; constant 65 deviceIdToAppId[deviceId] = appId; 71 const deviceId = app.id.split('-')[0]; constant 72 app.description = deviceIdToAppId[deviceId] ?? app.description;
|
| /expo/packages/create-expo/src/ |
| H A D | telemetry.ts | 214 const deviceId = savedDeviceId ?? uuidv4(); constant 216 if (!deviceId) { 221 await JsonFile.setAsync(getStateJsonPath(), 'analyticsDeviceId', deviceId); 224 return userId ? { anonymousId: deviceId, userId } : { anonymousId: deviceId };
|
| /expo/packages/expo-notifications/src/ |
| H A D | getExpoPushTokenAsync.ts | 54 const deviceId = options.deviceId || (await getDeviceIdAsync()); constant 85 deviceId: deviceId.toLowerCase(), constant
|
| H A D | Tokens.types.ts | 80 deviceId?: string; property
|
| /expo/packages/expo-notifications/src/utils/ |
| H A D | updateDevicePushTokenAsync.ts | 12 const [development, deviceId] = await Promise.all([ 17 deviceId: deviceId.toLowerCase(),
|
| /expo/packages/expo-notifications/build/ |
| H A D | getExpoPushTokenAsync.js | 47 const deviceId = options.deviceId || (await getDeviceIdAsync()); 65 deviceId: deviceId.toLowerCase(),
|
| H A D | Tokens.types.d.ts | 67 deviceId?: string; property
|
| H A D | getExpoPushTokenAsync.js.map | 1 …deviceId = options.deviceId || (await getDeviceIdAsync());\n const projectId = options.projectId …
|
| H A D | Tokens.types.js.map | 1 …* Request body override.\n */\n type?: string;\n // @missingDocs\n deviceId?: string;\n /**\…
|
| /expo/packages/expo-notifications/build/utils/ |
| H A D | updateDevicePushTokenAsync.js | 8 const [development, deviceId] = await Promise.all([ 13 deviceId: deviceId.toLowerCase(), property
|
| H A D | updateDevicePushTokenAsync.js.map | 1 …deviceId] = await Promise.all([\n shouldUseDevelopmentNotificationService(),\n getDevice…
|
| /expo/home/screens/DeleteAccountScreen/ |
| H A D | SMSDevice.tsx | 10 sendSMSOTPAsync: (deviceId: string) => Promise<void>; 21 async function _sendSMSOTPAsync(deviceId: string) { 24 await sendSMSOTPAsync(deviceId);
|
| H A D | OTPStep.tsx | 75 async function sendSMSOTP(deviceId?: string) { 76 if (deviceId) { 79 userSecondFactorDeviceId: deviceId,
|
| /expo/packages/@expo/cli/src/start/project/ |
| H A D | devices.ts | 75 .concat(newDeviceIds.map((deviceId) => ({ installationId: deviceId, lastUsed: currentTime })));
|
| /expo/packages/@expo/cli/ts-declarations/metro-inspector-proxy/ |
| H A D | index.d.ts | 78 _buildPageDescription(deviceId: number, device: Device, page: Page): PageDescription;
|
| /expo/android/expoview/src/main/java/host/exp/exponent/notifications/ |
| H A D | NotificationHelper.kt | 85 deviceId: String, in getPushNotificationToken() 116 put("deviceId", deviceId) in getPushNotificationToken()
|
| /expo/packages/expo-constants/ |
| H A D | CHANGELOG.md | 170 - Remove deprecated `Constants.deviceId`. ([#15280](https://github.com/expo/expo/pull/15280) by [@S… 192 - Fix `Constants.deviceId has been deprecated in favor of generating and storing your own ID.` warn… 355 - Deprecated `.installationId` and `.deviceId` as these properties can be implemented in user space…
|
| /expo/packages/expo-av/android/src/main/java/expo/modules/av/ |
| H A D | AVManager.java | 726 int deviceId = device.getId(); in getDeviceInfoFromUid() local 727 if (deviceId == id) { in getDeviceInfoFromUid()
|