gradlew: Permission Denied

后端 未结 14 2162
闹比i
闹比i 2020-12-02 03:45

I am attempting to run gradlew from my command line, but am constantly facing the following error.

Brendas-MacBook-Pro:appx_android brendalogy$ ./gradlew com         


        
相关标签:
14条回答
  • 2020-12-02 04:45

    Jenkins > Project Dashboard > (select gradle project) Configure > Build

    x Use Gradle Wrapper

    Make gradlew executable x

    0 讨论(0)
  • 2020-12-02 04:46

    Just type this command in Android Studio Terminal (Or your Linux/Mac Terminal)

    chmod +x gradlew
    

    and try to :

     ./gradlew assembleDebug
    

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