Skip to content
Snippets Groups Projects
Commit 6b473325 authored by Luca Stefani's avatar Luca Stefani
Browse files

bootanimation: Error if screen width or height aren't set

Change-Id: Ic102e49d39a12116e9a0b25accf0ef81520c495f
parent 52602baa
No related branches found
No related tags found
No related merge requests found
......@@ -41,6 +41,13 @@ ifeq ($(TARGET_BOOTANIMATION),)
endif
endif
ifeq ($(TARGET_SCREEN_WIDTH),)
$(error TARGET_SCREEN_WIDTH must be set)
endif
ifeq ($(TARGET_SCREEN_HEIGHT),)
$(error TARGET_SCREEN_HEIGHT must be set)
endif
include $(CLEAR_VARS)
LOCAL_MODULE := bootanimation.zip
LOCAL_MODULE_CLASS := ETC
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment