Skip to content

Commit b3c152c

Browse files
committed
Update dependencies
1 parent 5bb74fc commit b3c152c

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

app/build.gradle

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

66
android {
77
namespace 'com.lahsuak.apps.jetpackcomposebasic'
8-
compileSdk 33
8+
compileSdk 34
99

1010
defaultConfig {
1111
applicationId "com.lahsuak.apps.jetpackcomposebasic"
1212
minSdk 23
13-
targetSdk 33
13+
targetSdk 34
1414
versionCode 1
1515
versionName "1.0"
1616

@@ -27,17 +27,17 @@ android {
2727
}
2828
}
2929
compileOptions {
30-
sourceCompatibility JavaVersion.VERSION_1_8
31-
targetCompatibility JavaVersion.VERSION_1_8
30+
sourceCompatibility JavaVersion.VERSION_17
31+
targetCompatibility JavaVersion.VERSION_17
3232
}
3333
kotlinOptions {
34-
jvmTarget = '1.8'
34+
jvmTarget = '17'
3535
}
3636
buildFeatures {
3737
compose true
3838
}
3939
composeOptions {
40-
kotlinCompilerExtensionVersion '1.1.1'
40+
kotlinCompilerExtensionVersion '1.4.3'
4141
}
4242
packagingOptions {
4343
resources {
@@ -48,15 +48,15 @@ android {
4848

4949
dependencies {
5050

51-
implementation 'androidx.core:core-ktx:1.9.0'
52-
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
53-
implementation 'androidx.activity:activity-compose:1.6.1'
51+
implementation 'androidx.core:core-ktx:1.10.1'
52+
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1'
53+
implementation 'androidx.activity:activity-compose:1.7.2'
5454
implementation "androidx.compose.ui:ui:$compose_version"
5555
implementation "androidx.compose.ui:ui-tooling-preview:$compose_version"
56-
implementation 'androidx.compose.material3:material3:1.1.0-alpha03'
56+
implementation 'androidx.compose.material3:material3:1.2.0-alpha03'
5757
testImplementation 'junit:junit:4.13.2'
58-
androidTestImplementation 'androidx.test.ext:junit:1.1.4'
59-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
58+
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
59+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
6060
androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version"
6161
debugImplementation "androidx.compose.ui:ui-tooling:$compose_version"
6262
debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_version"

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
buildscript {
22
ext {
3-
compose_version = '1.3.2'
3+
compose_version = '1.4.3'
44
}
55
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
66
plugins {
7-
id 'com.android.application' version '7.3.0' apply false
8-
id 'com.android.library' version '7.3.0' apply false
9-
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
7+
id 'com.android.application' version '8.0.2' apply false
8+
id 'com.android.library' version '8.0.2' apply false
9+
id 'org.jetbrains.kotlin.android' version '1.8.10' apply false
1010
}

0 commit comments

Comments
 (0)