File tree 2 files changed +2
-21
lines changed
2 files changed +2
-21
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ android {
51
51
}
52
52
53
53
composeOptions {
54
+ kotlinCompilerVersion kotlin_version
54
55
kotlinCompilerExtensionVersion compose_version
55
56
}
56
57
}
@@ -91,14 +92,3 @@ tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
91
92
jvmTarget = " 1.8"
92
93
}
93
94
}
94
-
95
- // TODO: Figure out which dependencies need this and force them individually
96
- configurations. configureEach() {
97
- resolutionStrategy {
98
- eachDependency { DependencyResolveDetails details ->
99
- if (details. requested. group == ' org.jetbrains.kotlin' ) {
100
- details. useVersion kotlin_version
101
- }
102
- }
103
- }
104
- }
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ android {
56
56
}
57
57
58
58
composeOptions {
59
+ kotlinCompilerVersion Libs.Kotlin . version
59
60
kotlinCompilerExtensionVersion Libs.AndroidX.Compose . version
60
61
}
61
62
@@ -85,13 +86,3 @@ dependencies {
85
86
androidTestImplementation Libs.AndroidX.Test.Ext . junit
86
87
androidTestImplementation Libs.AndroidX.Compose . uiTest
87
88
}
88
-
89
- configurations. configureEach() {
90
- resolutionStrategy {
91
- eachDependency { DependencyResolveDetails details ->
92
- if (details. requested. group == ' org.jetbrains.kotlin' ) {
93
- details. useVersion Libs.Kotlin . version
94
- }
95
- }
96
- }
97
- }
You can’t perform that action at this time.
0 commit comments