File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id(" org.jetbrains.kotlin.jvm" ) version " 1.8.22"
3
+ `kotlin- dsl`
3
4
}
4
5
5
6
repositories {
Original file line number Diff line number Diff line change 1
1
plugins {
2
2
alias(libs.plugins.android.library)
3
+ alias(libs.plugins.android.kotlin)
3
4
}
4
5
5
6
android {
@@ -26,12 +27,16 @@ android {
26
27
sourceCompatibility = JavaVersion .VERSION_1_8
27
28
targetCompatibility = JavaVersion .VERSION_1_8
28
29
}
30
+ kotlinOptions {
31
+ jvmTarget = " 1.8"
32
+ }
29
33
}
30
34
31
35
dependencies {
32
36
33
37
implementation(libs.androidx.appcompat)
34
38
implementation(libs.material)
39
+ implementation(libs.androidx.core.ktx)
35
40
testImplementation(libs.junit)
36
41
androidTestImplementation(libs.androidx.junit)
37
42
androidTestImplementation(libs.androidx.espresso.core)
You can’t perform that action at this time.
0 commit comments