Closed WilliamHester closed 1 month ago
I have the same issue with version 1.1.0.
I'm using a local maven repository only (no internet connection). The JARs are available in this repo but Gradle complains it cannot find the AAR. Which is expected because the AARs are not available in the local repo.
Running this same setup against online repositories does work. So it seems that Gradle does some magic here, but I've no idea why this magic does not work with my local mavan repo.
I checked the current dev version 1.2.0-alpha01-dev755. This versions seems to have the same issue.
Please check the following ticket on YouTrack for follow-ups to this issue. GitHub issues will be closed in the coming weeks.
I'm trying to set up Jetpack Compose with an existing Bazel project. So far, I've been unable to get the dependencies to even sync. I'm currently trying with
org.jetbrains.compose.desktop:desktop-jvm-macos-arm64:1.1.1
. However, when I add that sole dependency to my project I'm getting the error:Glancing at the .pom file for the dependency, I see that it depends on
org.jetbrains.compose.desktop:desktop:1.1.1
, which lists dependencies like:However, note that
org.jetbrains.compose.foundation
lists a.jar
file but not a.aar
file, as thedesktop
package suggests would exist. This seems to be true for everything.I'm guessing that somewhere, Gradle is actually automatically correcting the file extension, which allows the examples to work, but it is preventing Bazel from working.