Skip to content
This repository was archived by the owner on Oct 6, 2023. It is now read-only.

Commit ecd6458

Browse files
author
russell
committed
Version bumps
1 parent 629de1e commit ecd6458

File tree

5 files changed

+11
-12
lines changed

5 files changed

+11
-12
lines changed

app/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ android {
2929
compose = true
3030
}
3131
composeOptions {
32-
kotlinCompilerExtensionVersion = "1.3.0"
32+
kotlinCompilerExtensionVersion = "1.4.3"
3333
}
3434
}
3535

3636
dependencies {
3737
val composeVersion = "1.2.1"
3838
implementation(project(":shared"))
3939
implementation("androidx.core:core-ktx:1.8.0")
40-
implementation("androidx.compose.compiler:compiler:1.3.2")
40+
implementation("androidx.compose.compiler:compiler:1.4.3")
4141
implementation("androidx.compose.ui:ui:$composeVersion")
4242
implementation("androidx.compose.ui:ui-tooling:$composeVersion")
4343
implementation("androidx.compose.foundation:foundation:$composeVersion")
@@ -50,4 +50,4 @@ dependencies {
5050
androidTestImplementation("androidx.compose.ui:ui-test-junit4:$composeVersion")
5151
debugImplementation("androidx.compose.ui:ui-tooling:$composeVersion")
5252
debugImplementation("androidx.compose.ui:ui-test-manifest:$composeVersion")
53-
}
53+
}

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
2-
kotlin("multiplatform") version "1.7.10" apply false
3-
id("com.android.library") version "7.2.2" apply false
2+
kotlin("multiplatform") version "1.8.10" apply false
3+
id("com.android.library") version "7.4.1" apply false
44
}
55

66
allprojects {
@@ -13,4 +13,4 @@ allprojects {
1313

1414
tasks.register<Delete>("clean") {
1515
delete(rootProject.buildDir)
16-
}
16+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Tue Oct 04 16:07:49 EDT 2022
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

shared/build.gradle.kts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
kotlin("multiplatform")
33
id("com.android.library")
4-
id("co.touchlab.faktory.kmmbridge") version "0.3.4"
4+
id("co.touchlab.faktory.kmmbridge") version "0.3.7"
55
`maven-publish`
66
kotlin("native.cocoapods")
77
}
@@ -24,7 +24,6 @@ android {
2424

2525
defaultConfig {
2626
minSdk = 21
27-
targetSdk = 32
2827
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
2928
}
3029
}
@@ -36,4 +35,4 @@ kmmbridge {
3635
spm()
3736
cocoapods("git@github.com:touchlab/PublicPodspecs.git")
3837
versionPrefix.set("0.8")
39-
}
38+
}

shared/shared.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ Pod::Spec.new do |spec|
2222
:execution_position => :before_compile,
2323
:shell_path => '/bin/sh',
2424
:script => <<-SCRIPT
25-
if [ "YES" = "$COCOAPODS_SKIP_KOTLIN_BUILD" ]; then
26-
echo "Skipping Gradle build task invocation due to COCOAPODS_SKIP_KOTLIN_BUILD environment variable set to \"YES\""
25+
if [ "YES" = "$OVERRIDE_KOTLIN_BUILD_IDE_SUPPORTED" ]; then
26+
echo "Skipping Gradle build task invocation due to OVERRIDE_KOTLIN_BUILD_IDE_SUPPORTED environment variable set to \"YES\""
2727
exit 0
2828
fi
2929
set -ev

0 commit comments

Comments
 (0)