Fix gradle build: dont abort on lint errors
This commit is contained in:
parent
85b7e77324
commit
bfc35691b6
@ -160,6 +160,12 @@ subprojects {
|
|||||||
} catch (GradleException e) {
|
} catch (GradleException e) {
|
||||||
logger.info("Tried to set the buildToolsVersion, however we were not allowed to: $e.message")
|
logger.info("Tried to set the buildToolsVersion, however we were not allowed to: $e.message")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// don't abort build on lint errors
|
||||||
|
// http://stackoverflow.com/a/25149514
|
||||||
|
configure(android.lintOptions) {
|
||||||
|
abortOnError false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user