Skip to content
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

Merged
merged 2 commits into from
Feb 13, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions JetLagged/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,6 @@ android {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
riggaroo marked this conversation as resolved.
Show resolved Hide resolved
jvmTarget = "17"
}
buildFeatures {
compose = true
// Disable unused AGP features
Expand Down
4 changes: 0 additions & 4 deletions JetNews/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,6 @@ android {
}
}

kotlin {
riggaroo marked this conversation as resolved.
Show resolved Hide resolved
jvmToolchain(17)
}

dependencies {
val composeBom = platform(libs.androidx.compose.bom)
implementation(composeBom)
Expand Down
4 changes: 1 addition & 3 deletions Jetcaster/core/domain-testing/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ android {
targetCompatibility = JavaVersion.VERSION_17
}
}
kotlin {
riggaroo marked this conversation as resolved.
Show resolved Hide resolved
jvmToolchain(17)
}

dependencies {
implementation(projects.core.domain)

Expand Down
4 changes: 1 addition & 3 deletions Jetcaster/core/domain/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ android {
targetCompatibility = JavaVersion.VERSION_17
}
}
kotlin {
riggaroo marked this conversation as resolved.
Show resolved Hide resolved
jvmToolchain(17)
}

dependencies {
coreLibraryDesugaring(libs.core.jdk.desugaring)
implementation(projects.core.data)
Expand Down
3 changes: 0 additions & 3 deletions Jetcaster/glancewidget/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ android {
}
}
}
kotlin {
riggaroo marked this conversation as resolved.
Show resolved Hide resolved
jvmToolchain(17)
}

dependencies {

Expand Down
4 changes: 1 addition & 3 deletions Jetcaster/tv/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,7 @@ android {
}
}
}
kotlin {
riggaroo marked this conversation as resolved.
Show resolved Hide resolved
jvmToolchain(17)
}


dependencies {
implementation(libs.androidx.core.ktx)
Expand Down
4 changes: 1 addition & 3 deletions Jetcaster/wear/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,7 @@ android {
}
}
}
kotlin {
riggaroo marked this conversation as resolved.
Show resolved Hide resolved
jvmToolchain(17)
}

dependencies {


Expand Down
3 changes: 0 additions & 3 deletions Jetchat/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,6 @@ android {
}
}

kotlin {
riggaroo marked this conversation as resolved.
Show resolved Hide resolved
jvmToolchain(17)
}
dependencies {
val composeBom = platform(libs.androidx.compose.bom)
implementation(composeBom)
Expand Down
2 changes: 0 additions & 2 deletions Jetsnack/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,6 @@ android {
targetCompatibility = JavaVersion.VERSION_17
}

kotlinOptions { jvmTarget = "17" }
riggaroo marked this conversation as resolved.
Show resolved Hide resolved

buildFeatures {
compose = true
}
Expand Down
3 changes: 0 additions & 3 deletions Reply/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,6 @@ android {
compose = true
}
}
kotlin {
riggaroo marked this conversation as resolved.
Show resolved Hide resolved
jvmToolchain(17)
}

dependencies {
val composeBom = platform(libs.androidx.compose.bom)
Expand Down
Loading