Skip to content

Commit 8d07603

Browse files
Release 1.2.2 - Bumped compileSDK to 34 and added support for Kotlin 1.9.0
1 parent 676b5a7 commit 8d07603

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

README.md

Lines changed: 1 addition & 1 deletion
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.1"
40+
implementation "com.github.germainkevinbusiness:CollapsingTopBarCompose:1.2.2"
4141
}
4242
```
4343

app/build.gradle

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

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

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

@@ -37,7 +37,7 @@ android {
3737
compose true
3838
}
3939
composeOptions {
40-
kotlinCompilerExtensionVersion '1.4.7'
40+
kotlinCompilerExtensionVersion '1.5.1'
4141
}
4242
packagingOptions {
4343
resources {
@@ -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.6.1'
56-
implementation 'androidx.activity:activity-compose:1.7.2'
55+
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.2'
56+
implementation 'androidx.activity:activity-compose:1.8.2'
5757

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

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
buildscript {
22
ext {
3-
coreKtx = '1.10.1'
4-
libraryVersion ='1.2.1'
3+
coreKtx = '1.12.0'
4+
libraryVersion ='1.2.2'
55
timberVersion ='5.0.1'
66
}
77
repositories {
@@ -10,11 +10,11 @@ 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.0.2' apply false
14-
id 'com.android.library' version '8.0.2' apply false
15-
id 'org.jetbrains.kotlin.android' version '1.8.21' apply false
13+
id 'com.android.application' version '8.2.0' apply false
14+
id 'com.android.library' version '8.2.0' apply false
15+
id 'org.jetbrains.kotlin.android' version '1.9.0' apply false
1616
}
1717

18-
task clean(type: Delete) {
18+
tasks.register('clean', Delete) {
1919
delete rootProject.buildDir
2020
}

collapsingtopbar/build.gradle

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

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

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

@@ -61,7 +61,7 @@ android {
6161
compose true
6262
}
6363
composeOptions {
64-
kotlinCompilerExtensionVersion '1.4.7'
64+
kotlinCompilerExtensionVersion '1.5.1'
6565
}
6666
packagingOptions {
6767
resources {
@@ -77,7 +77,7 @@ dependencies {
7777
implementation 'androidx.appcompat:appcompat:1.6.1'
7878
implementation "com.jakewharton.timber:timber:$timberVersion"
7979

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

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.0-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)