ComposeReorderable icon indicating copy to clipboard operation
ComposeReorderable copied to clipboard

please support ios

Open Felis-nigripes opened this issue 1 year ago • 3 comments

compose mulitplatform ios is beta,please support ios, thanks.

Felis-nigripes avatar Jun 17 '24 17:06 Felis-nigripes

We have a fork here https://github.com/open-ani/ComposeReorderable which added ios targets and upgraded Kotlin and Compose versions to modern ones. You may import it using Gradle Copmosite Builds:

// settings.gradle.kts
includeBuild("app/shared/reorderable") {
    dependencySubstitution {
        substitute(module("org.burnoutcrew.composereorderable:reorderable")).using(project(":reorderable"))
    }
}

app/shared/reorderable points to the fork.

Him188 avatar Sep 07 '24 07:09 Him188

sorry but how do u exactly import the forked version I cloned the fork into my project into app/shared/reordable then I added that block of code in my settings.gradle.kts, then I added this: dependencies { implementation("org.burnoutcrew.composereorderable:reorderable:<latest_version>") } to my module build gradle and I got an error.

YoussefHachicha avatar Sep 29 '24 13:09 YoussefHachicha

@YoussefHachicha That should do the job. Ensure that app/shared/reorderable/build.gradle.kts exists (so that you have a correct setup). Try to upgrade Gradle to 8.7 if you are lower.

Check if there is a typo (there do exist one in your comment)

Him188 avatar Sep 29 '24 13:09 Him188