-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removing toolchain #1526
base: main
Are you sure you want to change the base?
Removing toolchain #1526
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,10 +77,6 @@ android { | |
} | ||
} | ||
|
||
kotlin { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add kotlinOptions {
jvmTarget = "17"
} or it will default to 1.8 |
||
jvmToolchain(17) | ||
} | ||
|
||
dependencies { | ||
val composeBom = platform(libs.androidx.compose.bom) | ||
implementation(composeBom) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,9 +29,7 @@ android { | |
targetCompatibility = JavaVersion.VERSION_17 | ||
} | ||
} | ||
kotlin { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. missing jvmTarget (see other comments) |
||
jvmToolchain(17) | ||
} | ||
|
||
dependencies { | ||
implementation(projects.core.domain) | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,9 +31,7 @@ android { | |
targetCompatibility = JavaVersion.VERSION_17 | ||
} | ||
} | ||
kotlin { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. missing jvmTarget (see other comments) |
||
jvmToolchain(17) | ||
} | ||
|
||
dependencies { | ||
coreLibraryDesugaring(libs.core.jdk.desugaring) | ||
implementation(projects.core.data) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,9 +36,6 @@ android { | |
} | ||
} | ||
} | ||
kotlin { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. missing jvmTarget (see other comments) |
||
jvmToolchain(17) | ||
} | ||
|
||
dependencies { | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,9 +81,7 @@ android { | |
} | ||
} | ||
} | ||
kotlin { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. missing jvmTarget (see other comments) |
||
jvmToolchain(17) | ||
} | ||
|
||
|
||
dependencies { | ||
implementation(libs.androidx.core.ktx) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,9 +69,7 @@ android { | |
} | ||
} | ||
} | ||
kotlin { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (ok - jvmTarget is specified above) |
||
jvmToolchain(17) | ||
} | ||
|
||
dependencies { | ||
|
||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,9 +79,6 @@ android { | |
} | ||
} | ||
|
||
kotlin { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. missing jvmTarget (see other comments) |
||
jvmToolchain(17) | ||
} | ||
dependencies { | ||
val composeBom = platform(libs.androidx.compose.bom) | ||
implementation(composeBom) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,8 +78,6 @@ android { | |
targetCompatibility = JavaVersion.VERSION_17 | ||
} | ||
|
||
kotlinOptions { jvmTarget = "17" } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. keep this |
||
|
||
buildFeatures { | ||
compose = true | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -93,9 +93,6 @@ android { | |
compose = true | ||
} | ||
} | ||
kotlin { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (ok - jvmTarget specified above) |
||
jvmToolchain(17) | ||
} | ||
|
||
dependencies { | ||
val composeBom = platform(libs.androidx.compose.bom) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Keep this or kotlin will default to 1.8