Android aapt.exe APPCRASH for build project with error code -1073741819

Similar problem with this AAPT error with error code -1073741819

Appt.exe stops with APPCRASH when building a project with a signature:

Problem Event Name: APPCRASH Application Name: aapt.exe Application Version: 0.0.0.0 Application Timestamp: 4e810830 Fault Module Name: msvcrt.dll Fault Module Version: 7.0.7600.16385 Fault Module Timestamp: 4a5bda6f Exception Code: c0000005 Exception Offset: 0000d193 OS Version: 6.1.7601.2.1.0.256.1 Locale ID: 2057 Additional Information 1: 0a9e Additional Information 2: 0a9e372d3b4ad19135b953a78882e789 Additional Information 3: 0a9e Additional Information 4: 0a9e372d3b4ad19135b953a78882e789 

The message window in the IDE shows android-apt-compiler: Command "C: \ Program Files (x86) \ Android \ android-sdk \ platform-tools \ aapt.exe package -m -auto-add-overlay - extra-packages% used libraries% "Done with exit code -1073741819

I tried to rebuild, clear the project, clear the IDE cache, add / remove dependencies, restart the IDE, restart the computer, reinstall the Android SDK platform tools - nothing helps. The solution provided in the related issue also did not help - I do not have @ + id in my .xml style.

IDE: Intellij IDEA 12.0.2

Libraries used in the project:

  • ActionBarSherlock-4.2.0
  • Slidingmenu
  • Android-ViewPagerIndicator
  • Android PullToRefresh

As I found in Eclipse, this problem can be solved by setting Window -> Preferences -> Android -> Build -> Build Output to "Normal" instead of "Verbose". But I can not find such an option in Intellij IDEA.

PS: it looks somehow somewhere in the project, because other projects (even with libraries) compile well.

+4
source share
1 answer

It seems you are missing some entries in the strings.xml file

in my case, I deleted <string name="action_settings">Settings</string>

Thinking that the project was not used and returned it, I solved the problem. You can search for a tag or similar tag in your project.

+1
source

All Articles