Error executing aapt: Cannot run program, CreateProcess error=5, Access is denied: CreateProcess error=5, Access is denied

拜拜、爱过 提交于 2020-01-14 12:34:32

问题


Today I just updated the Android SDK on Windows 7 with the Android SDK Manager and started getting error during build in Eclipse which says

"Error executing aapt: Cannot run program ... CreateProcess error=5, Access is denied: CreateProcess error=5, Access is denied"

I'm using Eclipse Juno and Kepler. I've also tried the bundled Eclipse that comes with Android SDK but faced the same issue everywhere.

I'm using Android build tool version 18.0.1-


回答1:


Go to your eclipse folder, open eclipse.ini and add the lines

-vm
C:\Program Files\Java\jdk1.6.0_29\jre\bin\server\jvm.dll

Replace jdk1.6.0_29 with the version code of your jdk. These lines should be added above

-vmargs



回答2:


It's Windows security that's not allowing that process to run. Here's what I did:

  • Open up Windows explorer, and navigate to aapt.exe (or whatever program is supposed to run)
  • Right click on it and choose "Properties"
  • Go to the "Security" tab and click the "Edit" button
  • Select your username in the top box and in the bottom one give "Full Control" or at least "Read & Execute"
  • Click OK to get rid of these boxes

Now your user can execute that program. Yay!



来源:https://stackoverflow.com/questions/18473014/error-executing-aapt-cannot-run-program-createprocess-error-5-access-is-denie

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!