Android Hello-World compile error: Intellij cannot find aapt

后端 未结 13 1905
感情败类
感情败类 2020-12-02 09:45

I\'m trying to get set up with an Android development environment using IntelliJ in Ubuntu 12.04. I create an Android Application Module, but when I try to build, I get the

相关标签:
13条回答
  • 2020-12-02 10:24

    I ran into this issue but with android-maven-plugin and as a variant of your item #2 rather than copying the file(s) I simply created a symbolic/soft link for aapt

    cd platform-tools
    ln -s ../build-tools/17.0.0/aapt ./
    

    This approach seemed to get all my builds functioning again.

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