Skip to content

Commit d4b0c00

Browse files
Release 1.2.5 - Dependency update
1 parent 4a9d3a6 commit d4b0c00

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ repositories {
3737

3838
```groovy
3939
dependencies {
40-
implementation "com.github.germainkevinbusiness:CollapsingTopBarCompose:1.2.4"
40+
implementation "com.github.germainkevinbusiness:CollapsingTopBarCompose:1.2.5"
4141
}
4242
```
4343

@@ -162,7 +162,7 @@ the [sample app](https://github.com/germainkevinbusiness/CollapsingTopBarCompose
162162
Licenced under the MIT Licence
163163

164164
```
165-
Copyright (c) 2024 Kevin Germain
165+
Copyright (c) 2025 Kevin Germain
166166
167167
Permission is hereby granted, free of charge, to any person obtaining a copy
168168
of this software and associated documentation files (the "Software"), to deal

app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ plugins {
55
}
66

77
android {
8-
compileSdk 34
8+
compileSdk 35
99

1010
defaultConfig {
1111
applicationId "com.germainkevin.collapsingtopbarcompose"
1212
minSdk 21
13-
targetSdk 34
13+
targetSdk 35
1414
versionCode 1
1515
versionName libraryVersion
1616

@@ -52,10 +52,10 @@ dependencies {
5252
implementation project(path: ':collapsingtopbar')
5353

5454
implementation "androidx.core:core-ktx:$coreKtx"
55-
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.4'
56-
implementation 'androidx.activity:activity-compose:1.9.1'
55+
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.7'
56+
implementation 'androidx.activity:activity-compose:1.10.0'
5757

58-
def composeBom = platform("androidx.compose:compose-bom:2024.06.00")
58+
def composeBom = platform("androidx.compose:compose-bom:2025.01.01")
5959
implementation composeBom
6060
androidTestImplementation composeBom
6161

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
buildscript {
22
ext {
3-
coreKtx = '1.13.1'
4-
libraryVersion ='1.2.4'
3+
coreKtx = '1.15.0'
4+
libraryVersion ='1.2.5'
55
timberVersion ='5.0.1'
66
}
77
repositories {
@@ -10,7 +10,7 @@ buildscript {
1010

1111
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
1212
plugins {
13-
id 'com.android.application' version '8.2.2' apply false
14-
id 'com.android.library' version '8.2.2' apply false
13+
id 'com.android.application' version '8.8.0' apply false
14+
id 'com.android.library' version '8.8.0' apply false
1515
id 'org.jetbrains.kotlin.android' version '1.9.0' apply false
1616
}

collapsingtopbar/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ repositories {
3636
}
3737

3838
android {
39-
compileSdk 34
39+
compileSdk 35
4040

4141
defaultConfig {
4242
minSdk 21
43-
targetSdk 34
43+
targetSdk 35
4444
consumerProguardFiles "consumer-rules.pro"
4545
}
4646

@@ -77,7 +77,7 @@ dependencies {
7777
implementation 'androidx.appcompat:appcompat:1.7.0'
7878
implementation "com.jakewharton.timber:timber:$timberVersion"
7979

80-
def composeBom = platform("androidx.compose:compose-bom:2024.06.00")
80+
def composeBom = platform("androidx.compose:compose-bom:2025.01.01")
8181
implementation composeBom
8282
androidTestImplementation composeBom
8383

collapsingtopbar/src/main/java/com/germainkevin/collapsingtopbar/CollapsingTopBar.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ package com.germainkevin.collapsingtopbar
33
import androidx.compose.animation.*
44
import androidx.compose.foundation.layout.*
55
import androidx.compose.foundation.verticalScroll
6-
import androidx.compose.material.*
6+
import androidx.compose.material.LocalContentColor
7+
import androidx.compose.material.Surface
78
import androidx.compose.runtime.*
89
import androidx.compose.ui.Alignment
910
import androidx.compose.ui.Modifier
@@ -13,7 +14,6 @@ import androidx.compose.ui.platform.LocalDensity
1314
import androidx.compose.ui.unit.Constraints
1415
import androidx.compose.ui.unit.Dp
1516
import androidx.compose.ui.unit.dp
16-
import timber.log.Timber
1717
import kotlin.math.max
1818

1919
/**
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Fri May 12 10:06:46 EDT 2023
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)