Fix the latest lint issue (will modify the pipeline to let the test compilation pass

This commit is contained in:
Benoit Marty 2020-10-08 13:04:55 +02:00
parent acbd4c3aba
commit 6872a488de
2 changed files with 5 additions and 2 deletions

View File

@ -64,7 +64,8 @@ allprojects {
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
// Warnings are potential errors, so stop ignoring them
kotlinOptions.allWarningsAsErrors = true
// You can override by passing `-PallWarningsAsErrors=false` in the command line
kotlinOptions.allWarningsAsErrors = project.properties['allWarningsAsErrors']?.toBoolean() ?: true
}
}

View File

@ -232,9 +232,11 @@
</intent-filter>
</service>
<!-- Add tools:ignore="Instantiatable" for the error reported only by Buildkite and for lintGplayRelease check :/ -->
<service
android:name=".core.services.VectorSyncService"
android:exported="false" />
android:exported="false"
tools:ignore="Instantiatable" />
<service
android:name=".features.call.telecom.VectorConnectionService"