Skip to content

Commit b9e7a4f

Browse files
committed
dependency updates
* fixes #526
1 parent 2790968 commit b9e7a4f

17 files changed

Lines changed: 78 additions & 38 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
/.idea/modules.xml
77
/.idea/workspace.xml
88
/.idea/navEditor.xml
9+
/.idea/vcs.xml
910
/.idea/assetWizardSettings.xml
1011
.DS_Store
1112
/build

.idea/compiler.xml

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/deploymentTargetDropDown.xml

Lines changed: 28 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 1 addition & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/kotlinc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/migrations.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313
}
1414

1515
dependencies {
16-
classpath(libs.pluginVersion)
16+
classpath(libs.agp)
1717
classpath(libs.kotlin)
1818
classpath(libs.kotlinSerialization)
1919
classpath(libs.mavenPublishPlugin)

compose-destinations-animations/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ android {
2626
}
2727

2828
compileOptions {
29-
sourceCompatibility = JavaVersion.VERSION_11
30-
targetCompatibility = JavaVersion.VERSION_11
29+
sourceCompatibility = JavaVersion.VERSION_1_8
30+
targetCompatibility = JavaVersion.VERSION_1_8
3131
}
3232

3333
kotlinOptions {
34-
jvmTarget = JavaVersion.VERSION_11.toString()
34+
jvmTarget = JavaVersion.VERSION_1_8.toString()
3535
}
3636

3737
buildFeatures {

compose-destinations-codegen/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ plugins {
66
apply(from = "${rootProject.projectDir}/publish.gradle")
77

88
java {
9-
sourceCompatibility = JavaVersion.VERSION_11
10-
targetCompatibility = JavaVersion.VERSION_11
9+
sourceCompatibility = JavaVersion.VERSION_1_8
10+
targetCompatibility = JavaVersion.VERSION_1_8
1111
}
1212

1313
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
1414
kotlinOptions {
15-
jvmTarget = JavaVersion.VERSION_11.toString()
15+
jvmTarget = JavaVersion.VERSION_1_8.toString()
1616
}
1717
}

0 commit comments

Comments
 (0)