Eclipse and Android SDK issue "aapt.exe has stopped" Eclipse and Android SDK issue "aapt.exe has stopped" android android

Eclipse and Android SDK issue "aapt.exe has stopped"


Remove id from style like here @+id then build again you get success...

<item name="android:id">@+id/calender</item>


it seems you were missing some entries in strings.xml

in my case I was deleting <string name="action_settings">Settings</string>

thinking it was not used by the project and placing it back solved the issue. You can search for same or similar type of tag in you project.


This can also happen if you have an incorrect option in an item. Example:

<item    android:id="@+id/menu_dashboard_add_group"    android:icon="@android:drawable/btn_plus"    android:title="Add group"    android:showAsAction="true">

Note the true that is invalid for android:showAsAction