tunnel: disable BuildConfig generation

We don't (and shouldn't) use BuildConfig values, but the class was
polluting our public API regardless which is undesirable.

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2020-04-08 17:04:08 +05:30
parent 9d76b354f0
commit 3fa8e09545
No known key found for this signature in database
GPG Key ID: 366D7BBAD1031E80

View File

@ -21,6 +21,9 @@ android {
path 'tools/CMakeLists.txt' path 'tools/CMakeLists.txt'
} }
} }
libraryVariants.all {
it.generateBuildConfigProvider.configure { enabled = false }
}
testOptions.unitTests.all { testOptions.unitTests.all {
testLogging { testLogging {
events 'passed', 'skipped', 'failed', 'standardOut', 'standardError' events 'passed', 'skipped', 'failed', 'standardOut', 'standardError'