...
i've faced the same issue and found out the reason that i've
accidentally deleted the app_name entry from strings.xml. problem is
solved after re-adding it
indeed eclipse tells about missing entries in xml files
(AndroidManifest.xml in this case)
...
I had the same problem while trying to go over "known boundaries" in XML editing.
It has make lots so much time and more frustating it was working with other projects of my workspace.
This problem was overcome by commenting areas of my xml project files (from recent to non-recent) and aapt came back to work normally.
Using xml Syntax Highlighting
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Drawables -->
<drawable name="transparent_background">#00000000</drawable>
<drawable name="translucent_background">#e0000000</drawable>
<drawable name="screen_background_black">#ff000000</drawable>
<!-- Animation -->
<!--
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate android:fromXDelta="100%p" android:toXDelta="0" android:duration="300"/>
<alpha android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="300" />
</set>
-->
Parsed in 0.002 seconds, using
GeSHi 1.0.8.4
Hope this post will save you time.