Aneel Pandey
Aneel Pandey

Reputation: 31

How do I modify the "build script" in Android Studio?

My release build will not compile. Exactly where in the Android Studio project do I make the suggested change? Error: Execution failed for task ':app:lintVitalRelease'. Modify your build script as follows:

android { lintOptions {checkReleaseBuilds false}}

Upvotes: 3

Views: 4270

Answers (1)

IAbstract
IAbstract

Reputation: 19881

Look in the app/build.gradle file.

For more information please take a look at the Configure Your Build page of the Android documentation.

Upvotes: 1

Related Questions