Skip to content

Commit b80a83e

Browse files
authored
Refactor obsolete buildConfig setting from gradle.properties (#171)
1 parent 97f8c8b commit b80a83e

File tree

6 files changed

+14
-1
lines changed

6 files changed

+14
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ All notable changes to this project will be documented in this file.
99

1010
## [0.72.2]
1111
### Changed
12+
* core: Explicitly enable buildConfig (#171)
13+
* kotlin-sample: Explicitly enable buildConfig (#171)
1214
* ui: Re-enable Giropay integration (#169)
15+
* ui-toolkit: Explicitly enable buildConfig (#171)
16+
* utils: Explicitly enable buildConfig (#171)
1317

1418
## [0.72.1]
1519
### Added

core/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ android {
5454
jvmTarget = "17"
5555
}
5656

57+
buildFeatures {
58+
buildConfig = true
59+
}
60+
5761
testOptions {
5862
unitTests {
5963
isIncludeAndroidResources = true

gradle.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,5 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
1717
android.useAndroidX=true
1818
# Kotlin code style for this project: "official" or "obsolete":
1919
kotlin.code.style=official
20-
android.defaults.buildfeatures.buildconfig=true
2120
android.nonTransitiveRClass=false
2221
android.nonFinalResIds=false

kotlin-sample/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ android {
4444

4545

4646
buildFeatures {
47+
buildConfig = true
4748
compose = true
4849
}
4950

ui-toolkit/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ android {
5858
}
5959

6060
buildFeatures {
61+
buildConfig = true
6162
compose = true
6263
}
6364

utils/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@ android {
5151
)
5252
jvmTarget = "17"
5353
}
54+
55+
buildFeatures {
56+
buildConfig = true
57+
}
5458
}
5559

5660
dependencies {

0 commit comments

Comments
 (0)