From 27180809c594cf6beeaeb206cced6fa42c086517 Mon Sep 17 00:00:00 2001 From: Volodymyr Zhdanov Date: Sun, 15 Sep 2019 18:54:45 +0300 Subject: [PATCH] build: set build fingerprint for all devices * there's no per device way to add props to /system/build.prop * adding it here is the only way so far Change-Id: Iafc286d9e479677540a4ec617db76715c018ae8e --- build/core/main_version.mk | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build/core/main_version.mk b/build/core/main_version.mk index 96213b08..dddeee77 100644 --- a/build/core/main_version.mk +++ b/build/core/main_version.mk @@ -1,3 +1,9 @@ +# Build fingerprint +ifneq ($(BUILD_FINGERPRINT),) +ADDITIONAL_BUILD_PROPERTIES += \ + ro.build.fingerprint=$(BUILD_FINGERPRINT) +endif + # LineageOS System Version ADDITIONAL_BUILD_PROPERTIES += \ ro.lineage.version=$(LINEAGE_VERSION) \