Gradle gets stuck at either 'build' or 'assembleDebug' when using the 64bit or 32bit version of Android Studio

前端 未结 7 1632
夕颜
夕颜 2021-01-04 06:33

The issue I\'ve had over the past few months is that Android Studio would often get stuck on Gradle: build, as seen here. Android Studio itself would stay respo

7条回答
  •  感情败类
    2021-01-04 07:08

    My problem was that the Android Sdk executables were missing the executable bit. You can check some of your binaries like /Sdk/build-tools//aapt to see if they have permission to execute. If not you can solve it by running this on the Sdk folder

    chmod -R +x ./
    

提交回复
热议问题