android eclipse plugin can't find valid paths

前端 未结 1 1280
温柔的废话
温柔的废话 2021-01-02 16:04

I just installed the latest galileo eclipse release. I added the latest adt plugin and configured it to use my android sdk (r4). Unfortunately, the eclipse plugin is wiggin

1条回答
  •  长发绾君心
    2021-01-02 16:13

    Something is very wrong here. These two lines contradict themselves:

    $ ls -al ~/android-sdk-linux_86/platforms/android-1.6/tools/aapt
    -rwxrwxrwx 1 solid solid 3416259 2009-12-18 21:02 /home/solid/android-sdk-linux_86/platforms/android-1.6/tools/aapt 
    
    $ ~/android-sdk-linux_86/platforms/android-1.6/tools/aapt
    bash: /home/solid/android-sdk-linux_86/platforms/android-1.6/tools/aapt: No such file or directory
    

    The file just can't exist one instant, then cease to exist in the next.

    I don't think this is caused by running on amd64, since I'd suspect that would give you a different, more descriptive error. That being said, make sure you have the ia32-libs installed:

    # Assuming you're on Ubuntu
    $ apt-get install ia32-libs
    

    My only advice would be to try completely deleting your SDK installation and re-installing it from scratch.

    0 讨论(0)
提交回复
热议问题