ANDROID: Fix compilation.

The aapt throws an "invalid resource directory name" if the
resource directory name is not known to the tools. Unfortunately,
"values-television" is an OUYA specific addition and thus breaks
with the standard vanilla Android toolchain.
This commit is contained in:
D G Turner 2013-10-09 06:53:53 +01:00
parent d4d90b3f07
commit 2648062dcf

View File

@ -25,10 +25,13 @@ PATH_RESOURCES = $(PATH_DIST)/res
PORT_DISTFILES = $(PATH_DIST)/README.Android
# FIXME: OUYA specific.
# "values-television" not present in vanilla Android.
# $(PATH_RESOURCES)/values-television/margins.xml \
RESOURCES = \
$(PATH_RESOURCES)/values/strings.xml \
$(PATH_RESOURCES)/values/margins.xml \
$(PATH_RESOURCES)/values-television/margins.xml \
$(PATH_RESOURCES)/layout/main.xml \
$(PATH_RESOURCES)/layout/splash.xml \
$(PATH_RESOURCES)/drawable/gradient.xml \