I haven't been making Android builds using the monthly IDEs and runtimes; was trying today and found that some of my Android injection values were dropped.
It turned out that I had an XML-style comment in between my injection tags, and it seemed to cause all the later tags to be dropped.
...
Extension injection values dropped silently
It turned out that I had an XML-style comment in between my injection tags, and it seemed to cause all the later tags to be dropped.
XML:
<!-- Something like this -->
<YYAndroidManifestApplicationAttributes>
android:everything_is_dropped_after_that_comment_so_I_can_write_whatever_here
</YYAndroidManifestApplicationAttributes>
Extension injection values dropped silently