Home
last modified time | relevance | path

Searched refs:deviceId (Results 1 – 25 of 37) sorted by relevance

12

/expo/packages/@expo/cli/src/start/server/metro/inspector-proxy/
H A Dproxy.ts84 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 DWebUserMediaManager.ts15 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 DWebCameraUtils.ts244 return settingsA.deviceId === settingsB.deviceId;
/expo/packages/expo-camera/build/
H A DWebUserMediaManager.js11 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 DWebUserMediaManager.js.map1deviceId } = constraint;\n\n if (typeof deviceId === 'string') {\n return deviceId;\n }…
H A DWebCameraUtils.js160 return settingsA.deviceId === settingsB.deviceId;
/expo/packages/@expo/cli/src/utils/analytics/
H A DrudderstackClient.ts19 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 DJsInspector.ts63 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 Dtelemetry.ts214 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 DgetExpoPushTokenAsync.ts54 const deviceId = options.deviceId || (await getDeviceIdAsync()); constant
85 deviceId: deviceId.toLowerCase(), constant
H A DTokens.types.ts80 deviceId?: string; property
/expo/packages/expo-notifications/src/utils/
H A DupdateDevicePushTokenAsync.ts12 const [development, deviceId] = await Promise.all([
17 deviceId: deviceId.toLowerCase(),
/expo/packages/expo-notifications/build/
H A DgetExpoPushTokenAsync.js47 const deviceId = options.deviceId || (await getDeviceIdAsync());
65 deviceId: deviceId.toLowerCase(),
H A DTokens.types.d.ts67 deviceId?: string; property
H A DgetExpoPushTokenAsync.js.map1deviceId = options.deviceId || (await getDeviceIdAsync());\n const projectId = options.projectId …
H A DTokens.types.js.map1 …* Request body override.\n */\n type?: string;\n // @missingDocs\n deviceId?: string;\n /**\…
/expo/packages/expo-notifications/build/utils/
H A DupdateDevicePushTokenAsync.js8 const [development, deviceId] = await Promise.all([
13 deviceId: deviceId.toLowerCase(), property
H A DupdateDevicePushTokenAsync.js.map1deviceId] = await Promise.all([\n shouldUseDevelopmentNotificationService(),\n getDevice…
/expo/home/screens/DeleteAccountScreen/
H A DSMSDevice.tsx10 sendSMSOTPAsync: (deviceId: string) => Promise<void>;
21 async function _sendSMSOTPAsync(deviceId: string) {
24 await sendSMSOTPAsync(deviceId);
H A DOTPStep.tsx75 async function sendSMSOTP(deviceId?: string) {
76 if (deviceId) {
79 userSecondFactorDeviceId: deviceId,
/expo/packages/@expo/cli/src/start/project/
H A Ddevices.ts75 .concat(newDeviceIds.map((deviceId) => ({ installationId: deviceId, lastUsed: currentTime })));
/expo/packages/@expo/cli/ts-declarations/metro-inspector-proxy/
H A Dindex.d.ts78 _buildPageDescription(deviceId: number, device: Device, page: Page): PageDescription;
/expo/android/expoview/src/main/java/host/exp/exponent/notifications/
H A DNotificationHelper.kt85 deviceId: String, in getPushNotificationToken()
116 put("deviceId", deviceId) in getPushNotificationToken()
/expo/packages/expo-constants/
H A DCHANGELOG.md170 - 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 DAVManager.java726 int deviceId = device.getId(); in getDeviceInfoFromUid() local
727 if (deviceId == id) { in getDeviceInfoFromUid()

12