This repository has been archived by the owner on Nov 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 959
Jetpack Compose plugin artifact pulls an unpublished dependency #5635
Comments
Hi folks, wanted to see if any updates or workarounds, thank you |
Any update on this? |
Hi everyone. I have published that library and you can run the compose plugin as described here https://github.com/0xera/inspection-lib |
Btw, thanks to the Flipper team for the great plugin |
I found that inspection-lib could be replaced with Another solution, if you don't want to use aar from external repository: implementation(group = "", name = "inspection-1.0.0-20241021.073440-1", ext = "aar")
modules {
module("flipper:inspection-lib") {
replacedBy("androidx.inspection:inspection")
}
}
implementation("com.facebook.flipper:flipper-jetpack-compose-plugin:0.267.1") {
exclude(group = "flipper", module = "inspection-lib")
} |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
🐛 Bug Report
Related to #2366 (comment)
The Jetpack Compose plugin has a dependency on an
.aar
that is not published, making it currently unusable:flipper/android/plugins/jetpack-compose/build.gradle
Line 35 in 6b44de3
To Reproduce
debugImplementation("com.facebook.flipper:flipper-jetpack-compose-plugin:0.250.0")
Environment
Not relevant
The text was updated successfully, but these errors were encountered: