Disable `lint` in Android gradle -


from android tools project site's android gradle plugin user guide i'm aware it's possible prevent android's lint aborting build using:

lintoptions {     abortonerror false } 

i'm aware lint can disabled release builds:

lintoptions {     checkreleasebuilds false } 

however, possible disable lint when running e.g. gradle assembledebug?

i'm aware of risks , particular project wasting fair amount of time given build flavors have.


Comments

Popular posts from this blog

Fail to load namespace Spring Security http://www.springframework.org/security/tags -

javascript - How to process users in one specific order using map o each function? -

javascript - Linking from page A to a specific iframe on page B -