We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43fda3b commit d50b5d4Copy full SHA for d50b5d4
lib/common/mobile/android/android-device.ts
@@ -71,11 +71,16 @@ export class AndroidDevice implements Mobile.IAndroidDevice {
71
const adbStatusInfo = AndroidDevice.ADB_DEVICE_STATUS_INFO[this.status];
72
const type = await this.getType();
73
74
+ let version = details.release;
75
+ if (version && version.toLowerCase() === 'q') {
76
+ version = '10.0.0';
77
+ }
78
+
79
this.deviceInfo = {
80
identifier: this.identifier,
81
displayName: details.name,
82
model: details.model,
- version: details.release,
83
+ version,
84
vendor: details.brand,
85
platform: this.$devicePlatformsConstants.Android,
86
status: adbStatusInfo ? adbStatusInfo.deviceStatus : this.status,
0 commit comments