Rocky Zhang
Rocky Zhang

Reputation: 1320

How to Use "gradlew" in teminal of android studio in Linux

There are "gradlew" and "gradle.bat" in the root dir of project!,I can use "gradlew" in Mac and WIndows ,but can not use it in Linux! What should I do to use it? Thank you for tell me!

Upvotes: 0

Views: 92

Answers (1)

Ritave
Ritave

Reputation: 1373

It probably doesn't have executable permissions. Try chmod +x gradlew and then ./gradlew should work normally

Upvotes: 2

Related Questions