user1796624
user1796624

Reputation: 4007

Where is the lint output file located in an android project?

Hi I'm setting up an android project to run with jenkins on an worker(remote server), I'm trying to run build manually with:

./gradlew assemble --stacktrace 

I get an error

Caused by: org.gradle.api.GradleException: Unable to create lint output directory.

Suspect that it is because there aren't permissions on to write in the system from the user I'm using. Can someone tell me where is this file located so I can set permissions? Thanks

Upvotes: 2

Views: 2839

Answers (1)

Gabriele Mariotti
Gabriele Mariotti

Reputation: 363657

The default folder used by Android Studio is

rootProject\module\build\outputs

Upvotes: 4

Related Questions