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 e6358d0 commit 7435a91Copy full SHA for 7435a91
core/Makefile
@@ -800,8 +800,12 @@ recovery_resources_common := $(call project-path-for,recovery)/res
800
# Set recovery_density to the density bucket of the device.
801
recovery_density := unknown
802
ifneq (,$(PRODUCT_AAPT_PREF_CONFIG))
803
+ifeq ($(PRODUCT_AAPT_PREF_CONFIG),560dpi)
804
+recovery_density := xxxhdpi
805
+else
806
# If PRODUCT_AAPT_PREF_CONFIG includes a dpi bucket, then use that value.
807
recovery_density := $(filter %dpi,$(PRODUCT_AAPT_PREF_CONFIG))
808
+endif
809
else
810
# Otherwise, use the default medium density.
811
recovery_densities := mdpi
0 commit comments