Android studio cannot find aapt

后端 未结 5 1608
执笔经年
执笔经年 2020-12-13 06:22

Hi I am having trouble compiling, I get this error:

Gradle: Execution failed for task \':ElectronicComponentInventorySearch:mergeDebugResources\'.

5条回答
  •  长情又很酷
    2020-12-13 07:09

    The package (32-bit) you are looking for is libbz2-1.0:i386, its 64-bit version is libbz2-1.0:amd64.

    At first enable multi-arch support (if not done already):

    sudo dpkg --add-architecture i386
    

    Now run:

    sudo apt-get update
    

    You can now install the package by:

    sudo apt-get install lib32stdc++6
    sudo apt-get install lib32z1
    

提交回复
热议问题