0

Android library doesn't have gradlew file, so how can I run tests from a command line? I need it to integrate my android library with CI. Thanks.

pvllnspk
  • 5,667
  • 12
  • 59
  • 97

1 Answers1

0

The more important question is: Is it a gradle project (is there a build.gradle)?

gradlew is just a script file that downloads and executes gradle. You can simple download gradle yourself and execute it if it is a gradle project.

Alternatively you can simply copy a working gradlew from a similar project into this project. The file is usually identical in all projects.

Robert
  • 39,162
  • 17
  • 99
  • 152