diff options
| author | David Göransson <david.goransson90@gmail.com> | 2024-03-01 15:30:06 +0100 |
|---|---|---|
| committer | Albin <albin@mullvad.net> | 2024-03-04 12:14:05 +0100 |
| commit | 832faec0b804db18b08c993541cf00316067eadd (patch) | |
| tree | aa62f1cd8c305c71ba041102e2ba1261daf14d74 /android/lib | |
| parent | f9267d998e086d4b324d4c7d9998e5d9ff60ca8a (diff) | |
| download | mullvadvpn-832faec0b804db18b08c993541cf00316067eadd.tar.xz mullvadvpn-832faec0b804db18b08c993541cf00316067eadd.zip | |
Remove buildconfig from properties
Diffstat (limited to 'android/lib')
| -rw-r--r-- | android/lib/endpoint/build.gradle.kts | 3 | ||||
| -rw-r--r-- | android/lib/map/build.gradle.kts | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/android/lib/endpoint/build.gradle.kts b/android/lib/endpoint/build.gradle.kts index f46c70c7d7..0bf140b743 100644 --- a/android/lib/endpoint/build.gradle.kts +++ b/android/lib/endpoint/build.gradle.kts @@ -22,6 +22,9 @@ android { abortOnError = true warningsAsErrors = true } + buildFeatures { + buildConfig = true + } } dependencies { implementation(Dependencies.Kotlin.stdlib) } diff --git a/android/lib/map/build.gradle.kts b/android/lib/map/build.gradle.kts index 75d11ae189..7ca04c16da 100644 --- a/android/lib/map/build.gradle.kts +++ b/android/lib/map/build.gradle.kts @@ -20,7 +20,10 @@ android { jvmTarget = Versions.jvmTarget } - buildFeatures { compose = true } + buildFeatures { + compose = true + buildConfig = true + } composeOptions { kotlinCompilerExtensionVersion = Versions.kotlinCompilerExtensionVersion } |
