Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

incompatible with Kotlin 1.9.10 #123

Open
its-Chiedu opened this issue Sep 7, 2023 · 5 comments
Open

incompatible with Kotlin 1.9.10 #123

its-Chiedu opened this issue Sep 7, 2023 · 5 comments
Assignees

Comments

@its-Chiedu
Copy link

I haven't seen any movement in this project for awhile. Has it been abandoned?

@AndiMiko
Copy link

AndiMiko commented Oct 5, 2023

yep, I see the same issue:

The Android Gradle plugin supports only Kotlin Gradle plugin version 1.5.20 and higher.
The following dependencies do not satisfy the required version:
root project 'GradleProject' -> scabbard.gradle:scabbard.gradle.gradle.plugin:0.5.0 -> gradle.plugin.dev.arunkumar:scabbard-gradle-plugin:0.5.0 -> org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10

@arunkumar9t2
Copy link
Owner

Hey folks sorry for lack of updates, will aim both Kotlin 1.9 and KSP support for next release.

@arunkumar9t2 arunkumar9t2 self-assigned this Oct 5, 2023
@deividasstr
Copy link

For me it works well:
gradle 8.2
agp 8.2.0-rc03
kotlin 1.9.20

@TaborKelly
Copy link

FWIW I'm using it successfully with the following:

 $ sdk current

Using:

gradle: 8.5
java: 17.0.9-jbr
kotlin: 1.9.21

My only problem was working through the whole com.github.kittinunf.result issue. I have this at the end of my top level build.gradle.kts:

allprojects {
    configurations.all {
        resolutionStrategy.eachDependency {
            if (requested.group == "com.github.kittinunf.result" && requested.name == "result" && requested.version == "3.0.0") {
                useVersion("3.0.1")
                because("Transitive dependency of Scabbard, currently not available on mavenCentral()")
            }
        }
    }
}

@ritesh-singh
Copy link

Hey folks sorry for lack of updates, will aim both Kotlin 1.9 and KSP support for next release.

@arunkumar9t2 Any update on this? Looks like it doesn't work for projects using ksp processor.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants