srctree

Robin Linden parent ca08f78c 79101ef7
Don't treat lint warnings as errors

This doesn't seem to have any effect when building from Android Studio,so they're only caught in CI which is a bit annoying. It also doesn'tseem to affect all lint warnings, so I need to manually go over thembefore every release anyway.

inlinesplit
core/build.gradle.kts added: 2, removed: 8, total 0
@@ -51,10 +51,6 @@ android {
kotlinOptions {
jvmTarget = Java.version.toString()
}
lintOptions {
isAbortOnError = true
isWarningsAsErrors = true
}
sourceSets["main"].java.srcDir("src/main/kotlin")
sourceSets["test"].java.srcDir("src/test/kotlin")
sourceSets["androidTest"].assets.srcDir("$projectDir/schemas")
 
domain/build.gradle.kts added: 2, removed: 8, total 0
@@ -47,8 +47,6 @@ android {
)
}
lintOptions {
isAbortOnError = true
isWarningsAsErrors = true
disable("InvalidPackage") // tox4j is still not really allowed on Android. :/
}
sourceSets["main"].java.srcDir("src/main/kotlin")