diff options
author | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2017-02-12 20:02:59 +0100 |
---|---|---|
committer | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2017-02-12 20:02:59 +0100 |
commit | b11255af1d8ec38f0f04adcc8a6297e40282169c (patch) | |
tree | bb658d6fc2dc4868ff62b643ddb43d4d2c66d80e | |
parent | 530288f5a725848bb899636665ea3f14f9398fad (diff) | |
download | build-b11255af1d8ec38f0f04adcc8a6297e40282169c.zip build-b11255af1d8ec38f0f04adcc8a6297e40282169c.tar.gz build-b11255af1d8ec38f0f04adcc8a6297e40282169c.tar.bz2 |
Fix libs list for manifest merger
Newer manifest merger expects colons instead of spaces.
Signed-off-by: Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de>
-rw-r--r-- | core/android_manifest.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/android_manifest.mk b/core/android_manifest.mk index 582bad4..9b2de03 100644 --- a/core/android_manifest.mk +++ b/core/android_manifest.mk @@ -21,6 +21,10 @@ my_full_libs_manifest_deps += $(foreach lib, $(LOCAL_STATIC_JAVA_AAR_LIBRARIES), $(call intermediates-dir-for,JAVA_LIBRARIES,$(lib),,COMMON)/aar/classes.jar) my_full_libs_manifest_files += $(foreach lib, $(LOCAL_STATIC_JAVA_AAR_LIBRARIES),\ $(call intermediates-dir-for,JAVA_LIBRARIES,$(lib),,COMMON)/aar/AndroidManifest.xml) +spaces := +spaces += +spaces += +my_full_libs_manifest_files := $(subst $(spaces),:,$(my_full_libs_manifest_files)) LOCAL_RESOURCE_DIR += $(foreach lib, $(LOCAL_STATIC_JAVA_AAR_LIBRARIES),\ $(call intermediates-dir-for,JAVA_LIBRARIES,$(lib),,COMMON)/aar/res) |