Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Gradle for Android

You're reading from   Gradle for Android Automate the build process for your Android projects with Gradle

Arrow left icon
Product type Paperback
Published in Jul 2015
Publisher Packt
ISBN-13 9781783986828
Length 172 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Kevin Pelgrims Kevin Pelgrims
Author Profile Icon Kevin Pelgrims
Kevin Pelgrims
Arrow right icon
View More author details
Toc

Ignoring Lint


When you execute a release build with Gradle, a Lint check will be performed on your code. Lint is a static code analysis tool that flags potential bugs in your layouts and Java code. In some cases, it might even block the build process. If you have not used Lint on your project before, and you want to migrate to Gradle, Lint might come up with a lot of errors. To at least make the build work, you can configure Gradle to ignore Lint errors and prevent them from aborting the build, by disabling abortOnError. This should only be a temporary solution, because ignoring Lint errors can result in issues like missing translations, which can cause the app to crash. To prevent Lint from blocking the build process, disable abortOnError like this:

android {
    lintOptions {
        abortOnError false
    }
}

Temporarily disabling the Lint abort can make it easier to migrate an existing Ant build process to Gradle. Another way to make the transition smoother is to execute Ant tasks directly...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image