Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
romainguy committed Dec 13, 2023
1 parent a9a1e36 commit 65e1e42
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 32 deletions.
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,10 @@ repositories {
dependencies {
// Use this library and BasicTextFlow() if you don't want a dependency on material3
implementation 'dev.romainguy:combo-breaker:0.8.0'
implementation 'dev.romainguy:combo-breaker:0.9.0'
// Use this library and TextFlow() if you use material3
implementation 'dev.romainguy:combo-breaker-material3:0.8.0'
implementation 'dev.romainguy:combo-breaker-material3:0.9.0'
}
```

Expand Down
16 changes: 8 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

buildscript {
ext {
compose_bom = '2023.04.01'
core_ktx_version = '1.10.0'
compose_compiler_version = '1.4.6'
compose_bom = '2023.10.01'
core_ktx_version = '1.12.0'
compose_compiler_version = '1.5.6'
}

dependencies {
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.24.0'
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.8.10'
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.25.3'
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.8.20'
}
}

plugins {
id 'com.android.application' version '8.1.0-alpha11' apply false
id 'com.android.library' version '8.1.0-alpha11' apply false
id 'org.jetbrains.kotlin.android' version '1.8.20' apply false
id 'com.android.application' version '8.2.0' apply false
id 'com.android.library' version '8.2.0' apply false
id 'org.jetbrains.kotlin.android' version '1.9.21' apply false
}

subprojects {
Expand Down
20 changes: 10 additions & 10 deletions combo-breaker-demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ plugins {
android {
namespace 'dev.romainguy.text.combobreaker.demo'

compileSdkPreview 'UpsideDownCake'

defaultConfig {
applicationId 'dev.romainguy.text.combobreaker.demo'
minSdk 29
targetSdk 33
targetSdk 34
compileSdk 34

versionCode 1
versionName '1.0'

Expand All @@ -21,10 +21,10 @@ android {
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}

compileOptions {
Expand Down Expand Up @@ -58,10 +58,10 @@ dependencies {
implementation 'androidx.compose.ui:ui'
implementation 'androidx.compose.material3:material3'

implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
implementation 'androidx.activity:activity-compose:1.6.1'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.2'
implementation 'androidx.activity:activity-compose:1.8.1'

implementation 'dev.romainguy:pathway:0.11.0'
implementation 'dev.romainguy:pathway:0.17.0'

implementation project(path: ':combo-breaker-material3')
}
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ class ComboBreakerActivity : ComponentActivity() {
style = LocalTextStyle.current.merge(
TextStyle(
color = colorScheme.onSurface,
fontSize = if (useMultipleShapes) 12.sp else LocalTextStyle.current.fontSize
fontSize = if (useMultipleShapes) 13.sp else LocalTextStyle.current.fontSize
)
),
justification = justification,
Expand Down
5 changes: 2 additions & 3 deletions combo-breaker-material3/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ version = VERSION_NAME
android {
namespace 'dev.romainguy.text.combobreaker.material3'

compileSdkPreview 'UpsideDownCake'

defaultConfig {
minSdk 29
targetSdk 33
targetSdk 34
compileSdk 34

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
5 changes: 2 additions & 3 deletions combo-breaker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ version = VERSION_NAME
android {
namespace 'dev.romainguy.text.combobreaker'

compileSdkPreview 'UpsideDownCake'

defaultConfig {
minSdk 29
targetSdk 33
targetSdk 34
compileSdk 34

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=dev.romainguy
VERSION_NAME=0.8.0
VERSION_NAME=0.9.0

SONATYPE_HOST=S01
RELEASE_SIGNING_ENABLED=true
Expand Down
6 changes: 3 additions & 3 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Jul 22 12:55:00 PDT 2022
#Tue Dec 12 18:11:49 PST 2023
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 65e1e42

Please sign in to comment.