diff --git a/src/Helpers/Build.php b/src/Helpers/Build.php index 851d7e4f0b355b45e293dcebd0e9b90e88c1aa26..2421d0053614fddae352e9e0a89a0268aa3bb16d 100644 --- a/src/Helpers/Build.php +++ b/src/Helpers/Build.php @@ -86,6 +86,7 @@ $this->apiLevel = $this->getBuildPropValue( 'ro.build.version.sdk' ) ?? ''; $this->model = $this->getBuildPropValue( 'ro.lineage.device' ) ?? $this->getBuildPropValue( 'ro.cm.device' ) ?? ( $tokens[1] == 'cm' ? $tokens[6] : $tokens[5] ); $this->version = $tokens[2]; + $this->displayVersion = $this->getBuildPropValue( 'ro.cm.display.version' ) ?? ''; $this->uid = hash( 'sha256', $this->timestamp.$this->model.$this->apiLevel, false ); $this->size = filesize($this->filePath);