Skip to content

Commit 2ea554c

Browse files
authored
Re-add removed sourceSets from ui-toolkit/build.gradle (#73)
`sourceSets` are necessary because otherwise non-compile files won't be recognized in artifacts.
1 parent 4e99ee6 commit 2ea554c

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [0.69.1-beta02]
5+
6+
### Fixed
7+
- Added accidentally removed sourceSets from ui-toolkit/build.gradle
8+
49
## [0.69.1-beta01]
510

611
### Added

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ allprojects {
3737
}
3838

3939
project.ext {
40-
sdkVersion = '0.69.1-beta01'
40+
sdkVersion = '0.69.1-beta02'
4141
versionCode = 1
4242

4343
compileSdkVersion = 31

ui-toolkit/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@ android {
3333
}
3434
}
3535

36+
sourceSets {
37+
getByName("main").java.srcDirs("src/main/kotlin")
38+
getByName("test").java.srcDirs("src/test/kotlin")
39+
getByName("androidTest").java.srcDirs("src/androidTest/kotlin")
40+
}
41+
3642
compileOptions {
3743
coreLibraryDesugaringEnabled true
3844
sourceCompatibility JavaVersion.VERSION_1_8

0 commit comments

Comments
 (0)