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

Kotlin 1.9.23 update #771

Merged
merged 18 commits into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
4e7b535
Updated to kotlin 1.9.23, AGP 8.2 and gradle 8.6
ChristoferAlexander May 7, 2024
da077c5
Updated to kotlin 1.9.23, AGP 8.2 and gradle 8.6
ChristoferAlexander May 7, 2024
bcb2f8c
Updated composeCompiler to latest for Library.kt
ChristoferAlexander May 7, 2024
e403144
Update submodule to point to Splendo forked repository
ChristoferAlexander May 8, 2024
30d7590
Update submodule reference to commit 7f92d3b62447285c069203fd41f94e20…
ChristoferAlexander May 8, 2024
49785ef
Update submodule reference to commit c56a1034487cc386b6da5c72c3651dff…
ChristoferAlexander May 8, 2024
58090bb
Switch to `https://github.com/splendo/gradle-test-recorder`
leokapanen May 8, 2024
666463d
Merge commit '49785ef2739595be3320f58a8058f92f02b7b18c' into feature/…
leokapanen May 8, 2024
0fb6923
Dependencies in gradle.properties were updated
leokapanen May 8, 2024
809f64e
Gradle in example app was updated
leokapanen May 8, 2024
1aea99c
Merge pull request #772 from splendo/feature/770-dependencies_update
leokapanen May 8, 2024
6a09138
Linted code
ChristoferAlexander May 8, 2024
013ec43
Lint fixes suggestion
ChristoferAlexander May 8, 2024
e4bde86
Dependencies.kt was updated
leokapanen May 10, 2024
02ac790
Navigation FragmentKtx was added, dependencies in test were updated t…
leokapanen May 10, 2024
5f767e2
navigation-fragment-ktx was removed
leokapanen May 10, 2024
457f8d4
A fix for LinksActivity in example
leokapanen May 10, 2024
1db0adf
Merge pull request #773 from splendo/feature/770-dependencies
leokapanen May 10, 2024
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
4 changes: 2 additions & 2 deletions example/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ kotlin.native.ignoreIncorrectDependencies=true
kotlin.mpp.import.enableKgpDependencyResolution=true

# Kaluga
kaluga.androidGradlePluginVersion=8.1.3
kaluga.kotlinVersion=1.9.21
kaluga.androidGradlePluginVersion=8.2.0
kaluga.kotlinVersion=1.9.23
kaluga.googleServicesGradlePluginVersion=4.4.0
kaluga.kotlinterGradlePluginVersion=4.1.0
kaluga.atomicFuGradlePluginVersion=0.22.0
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ kotlin.native.ignoreIncorrectDependencies=true
kotlin.mpp.import.enableKgpDependencyResolution=true

# Kaluga
kaluga.androidGradlePluginVersion=8.1.3
kaluga.kotlinVersion=1.9.21
kaluga.androidGradlePluginVersion=8.2.0
kaluga.kotlinVersion=1.9.23
kaluga.googleServicesGradlePluginVersion=4.4.0
kaluga.kotlinterGradlePluginVersion=4.1.0
kaluga.atomicFuGradlePluginVersion=0.22.0
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Oct 10 09:58:47 CEST 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
2 changes: 1 addition & 1 deletion kaluga-library-components/src/main/kotlin/Library.kt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class LibraryImpl(project: Project) {
const val compileSdk = 34
const val targetSdk = 34
const val buildTools = "34.0.0"
const val composeCompiler = "1.5.6"
const val composeCompiler = "1.5.13"
}

class IOSLibrary(props: Properties, logger: Logger) {
Expand Down
Loading