Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
badoualy committed Oct 26, 2022
1 parent 5cf4167 commit b4f5e3c
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 27 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'com.android.application' version '7.2.1' apply false
id 'com.android.library' version '7.2.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.0' apply false
id 'com.android.application' version '7.3.0' apply false
id 'com.android.library' version '7.3.0' apply false
id 'org.jetbrains.kotlin.android' version '1.7.20' apply false
}

task clean(type: Delete) {
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Aug 09 18:31:21 CEST 2022
#Wed Oct 26 09:41:55 CEST 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
24 changes: 12 additions & 12 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ plugins {
}

android {
compileSdkVersion 32
compileSdkVersion 33

defaultConfig {
applicationId "com.github.badoualy.storyeditor.sample"
minSdkVersion 23
targetSdkVersion 32
targetSdkVersion 33
versionCode 1
versionName "1.0"

Expand All @@ -34,22 +34,22 @@ android {
jvmTarget = '1.8'
}
composeOptions {
kotlinCompilerExtensionVersion "1.2.0"
kotlinCompilerExtensionVersion "1.3.2"
}
}

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.7.0"
implementation 'androidx.core:core-ktx:1.8.0'
implementation 'androidx.appcompat:appcompat:1.4.2'
implementation "androidx.compose.material3:material3:1.0.0-alpha15"
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.7.20"
implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation "androidx.compose.material3:material3:1.0.0"

implementation "androidx.compose.ui:ui:1.2.0"
implementation "androidx.compose.material:material:1.2.0"
implementation "androidx.compose.ui:ui-tooling:1.2.0"
implementation "androidx.activity:activity-compose:1.5.1"
implementation "androidx.compose.ui:ui:1.3.0"
implementation "androidx.compose.material:material:1.3.0"
implementation "androidx.compose.ui:ui-tooling:1.3.0"
implementation "androidx.activity:activity-compose:1.6.1"

implementation("io.coil-kt:coil-compose:2.1.0")
implementation("io.coil-kt:coil-compose:2.2.2")

implementation project(':story-editor')
}
20 changes: 10 additions & 10 deletions story-editor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ plugins {
}

android {
compileSdkVersion 32
compileSdkVersion 33

defaultConfig {
minSdkVersion 21
targetSdkVersion 32
targetSdkVersion 33
versionCode 1
versionName "1.0"

Expand All @@ -35,7 +35,7 @@ android {
jvmTarget = '1.8'
}
composeOptions {
kotlinCompilerExtensionVersion "1.2.0"
kotlinCompilerExtensionVersion "1.3.2"
}
}

Expand All @@ -47,20 +47,20 @@ afterEvaluate {

groupId = 'com.github.badoualy'
artifactId = 'story-editor'
version = '0.3.0'
version = '1.0.0'
}
}
}
}

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.7.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.7.20"
api "org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.5"

implementation "androidx.compose.ui:ui:1.2.0"
implementation "androidx.compose.animation:animation:1.2.0"
implementation "androidx.compose.ui:ui-util:1.2.0"
implementation "androidx.compose.ui:ui:1.3.0"
implementation "androidx.compose.animation:animation:1.3.0"
implementation "androidx.compose.ui:ui-util:1.3.0"

implementation "androidx.compose.material:material-icons-core:1.2.0"
implementation "androidx.compose.material3:material3:1.0.0-alpha15"
implementation "androidx.compose.material:material-icons-core:1.3.0"
implementation "androidx.compose.material3:material3:1.0.0"
}

0 comments on commit b4f5e3c

Please sign in to comment.