Skip to content

Commit 832faec

Browse files
Rawaalbin-mullvad
authored andcommitted
Remove buildconfig from properties
1 parent f9267d9 commit 832faec

File tree

6 files changed

+17
-3
lines changed

6 files changed

+17
-3
lines changed

android/app/build.gradle.kts

+4-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,10 @@ android {
122122
}
123123
}
124124

125-
buildFeatures { compose = true }
125+
buildFeatures {
126+
compose = true
127+
buildConfig = true
128+
}
126129

127130
composeOptions { kotlinCompilerExtensionVersion = Versions.kotlinCompilerExtensionVersion }
128131

android/gradle.properties

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
android.enableR8.fullMode=true
2-
android.defaults.buildfeatures.buildconfig=true
32
android.nonTransitiveRClass=false
43
android.useAndroidX=true
54
kotlin.code.style=official

android/lib/endpoint/build.gradle.kts

+3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ android {
2222
abortOnError = true
2323
warningsAsErrors = true
2424
}
25+
buildFeatures {
26+
buildConfig = true
27+
}
2528
}
2629

2730
dependencies { implementation(Dependencies.Kotlin.stdlib) }

android/lib/map/build.gradle.kts

+4-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ android {
2020
jvmTarget = Versions.jvmTarget
2121
}
2222

23-
buildFeatures { compose = true }
23+
buildFeatures {
24+
compose = true
25+
buildConfig = true
26+
}
2427

2528
composeOptions { kotlinCompilerExtensionVersion = Versions.kotlinCompilerExtensionVersion }
2629

android/service/build.gradle.kts

+3
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ android {
4444
buildConfigField("String", "API_ENDPOINT", "\"api.stagemole.eu\"")
4545
}
4646
}
47+
buildFeatures {
48+
buildConfig = true
49+
}
4750
}
4851

4952
dependencies {

android/test/e2e/build.gradle.kts

+3
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@ android {
9797
)
9898
}
9999
}
100+
buildFeatures {
101+
buildConfig = true
102+
}
100103
}
101104

102105
androidComponents {

0 commit comments

Comments
 (0)