Skip to content

Commit

Permalink
Merge branch 'annexflow-core-repackage' into annexflow-repackage
Browse files Browse the repository at this point in the history
# Conflicts:
#	gradle.properties
  • Loading branch information
Lavmee committed Oct 21, 2024
2 parents 12d48de + 3bc7e43 commit 1dc156a
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 12 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,12 @@ You'll note that I have kept the package name the same as that in AndroidX. This
val commonMain by getting {
dependencies {
implementation("tech.annexflow.compose:constraintlayout-compose-multiplatform:0.4.0")
/// Compose 1.7.0-alpha01
implementation("tech.annexflow.compose:constraintlayout-compose-multiplatform:0.5.0-alpha01")
/// Compose 1.7.0-alpha03
implementation("tech.annexflow.compose:constraintlayout-compose-multiplatform:0.5.0-alpha03")
/// Compose 1.7.0-alpha03 with different tech.annexflow.constraintlayout.core package
implementation("tech.annexflow.compose:constraintlayout-compose-multiplatform:0.5.0-alpha03-shaded-core")
/// Compose 1.7.0-alpha03 with different tech.annexflow.constraintlayout package
implementation("tech.annexflow.compose:constraintlayout-compose-multiplatform:0.5.0-alpha03-shaded")
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion compose/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi
import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalWasmDsl

// Copyright 2023, Sergei Gagarin and the project contributors
// SPDX-License-Identifier: Apache-2.0
Expand Down
3 changes: 1 addition & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ org.gradle.jvmargs=-Xmx2048M -Dfile.encoding=UTF-8 -Dkotlin.daemon.jvm.options\=

#Kotlin
kotlin.code.style=official
kotlin.js.compiler=ir

#Compose
org.jetbrains.compose.experimental.uikit.enabled=true
Expand All @@ -27,7 +26,7 @@ SONATYPE_CONNECT_TIMEOUT_SECONDS=600
SONATYPE_CLOSE_TIMEOUT_SECONDS=1800

GROUP=tech.annexflow.compose
VERSION_NAME=0.5.0-alpha03-shaded
VERSION_NAME=0.5.0-shaded

POM_URL=https://github.com/lavmee/constraintlayout-compose-multiplatform/
POM_SCM_URL=https://github.com/lavmee/constraintlayout-compose-multiplatform/
Expand Down
12 changes: 6 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[versions]

androidx-appcompat = "1.7.0"
androidx-activityCompose = "1.9.1"
annotation = "1.8.0-alpha01"
compose = "1.7.0-alpha03"
kotlin = "2.0.0"
agp = "8.3.2"
maven-publish = "0.29.0"
androidx-activityCompose = "1.9.3"
annotation = "1.9.0"
compose = "1.7.0"
kotlin = "2.0.21"
agp = "8.5.2"
maven-publish = "0.30.0"
spotless = "6.25.0"

[libraries]
Expand Down
2 changes: 1 addition & 1 deletion sample/shared/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi
import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalWasmDsl

plugins {
alias(libs.plugins.multiplatform)
Expand Down

0 comments on commit 1dc156a

Please sign in to comment.