summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-12-13 00:27:31 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-12-13 00:27:31 +0000
commit9ad7edc14bb820a5b8ea0b18157dcc2e9184dc5c (patch)
tree2d4011325745e39ae0a154558e859adec61d7b3a
parentc0df7045e4cb42085769b95a82b48774db89f4a8 (diff)
parentc7df9f42dccf5304ef000cca649c82c5fe84ce66 (diff)
downloadconnectivity-android14-qpr2-s5-release.tar.gz
Change-Id: I714efba2cefbaefeab14812d237560dfc66cf000
-rwxr-xr-xacts/framework/acts/controllers/android_device.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/acts/framework/acts/controllers/android_device.py b/acts/framework/acts/controllers/android_device.py
index 33741af26..e7f594d80 100755
--- a/acts/framework/acts/controllers/android_device.py
+++ b/acts/framework/acts/controllers/android_device.py
@@ -539,7 +539,9 @@ class AndroidDevice:
info = {
"build_id": build_id,
"incremental_build_id": incremental_build_id,
- "build_type": self.adb.getprop("ro.build.type")
+ "build_type": self.adb.getprop("ro.build.type"),
+ "build_date": self.adb.getprop("ro.build.date.utc"),
+ "baseband": self.adb.getprop("gsm.version.baseband")
}
return info
@@ -555,7 +557,8 @@ class AndroidDevice:
'model': self.model,
'build_info': self.build_info,
'user_added_info': self._user_added_device_info,
- 'flavor': self.flavor
+ 'flavor': self.flavor,
+ 'revision': self.adb.getprop('ro.revision')
}
return info