gradle, Could not expand ZIP appcompat-v7:19.0.1

后端 未结 16 2197
离开以前
离开以前 2020-12-01 16:10

I have a problem with Android Studio and Gradle to import appcompat-v7.

So here is my src/build.gradle:

apply plugin: \'andro         


        
16条回答
  •  生来不讨喜
    2020-12-01 16:44

    I'm an Ubuntu user and I had the same problem. I followed pyus13's answer and I gave the write permissions to the project folder instead of giving it to android-studio and android-sdk-linux. Also, the command
    sudo chmod 7777 /your/project/path
    didn't work. But,
    sudo chmod 757 -R /your/project/path
    worked perfectly.

提交回复
热议问题