mirror of
https://github.com/liberatedsystems/openCom-Companion.git
synced 2024-11-24 22:30:37 +01:00
22 lines
703 B
Groovy
22 lines
703 B
Groovy
// This is necessary to ensure that Sideband can be built on the
|
|
// correct API version. Else, the build will fail, with the build tools
|
|
// nagging us to upgrade the targetSdkVersion (doing so breaks the
|
|
// program currently). Yet another case of G**gle foolishness. This
|
|
// just bypasses the error and continues compiling regardless.
|
|
|
|
apply plugin: DisableAbortOnError
|
|
|
|
class DisableAbortOnError implements Plugin<Gradle> {
|
|
void apply (Gradle gradle) {
|
|
gradle.allprojects { project ->
|
|
afterEvaluate {
|
|
android {
|
|
lintOptions {
|
|
abortOnError = false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|