-
Notifications
You must be signed in to change notification settings - Fork 956
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
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")
} |
🐛 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: