-
-
Notifications
You must be signed in to change notification settings - Fork 297
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
error: cannot access Stable #727
Comments
Hey @Olesya-Egorova, sorry for the late response. Does your project doesn't have any dependencies on Jetpack Compose? |
Hi! Yes, we don't use Jetpack Compose in our project |
This is very weird. My project that doesn't have any dependency on Jetpack Compose still works well with the version of balloon 1.6.9. |
I tested it with my demo project and the result is like the below: |
Thaks for your example. I've created demo project too. It duplicates some Gradle settings and dependencies from real project. The demo project uses |
Hey @Olesya-Egorova, thank you so much for creating the demo project. I just checked it and will resolved it on the next release. In the mean time, you can see it works well if you add the dependency below on the compileOnly("com.github.skydoves:compose-stable-marker:1.0.5") |
Hey @Olesya-Egorova, this issue has been fixed on 1.6.10. Thank you so much for your report! |
Thank you for quick fix! |
Please complete the following information:
Describe the Bug:
We use com.github.skydoves:balloon library. A compilation error occurs:
I guess it happens because of the library's build.gradle file contains
compileOnly()
configuration that containscom.github.skydoves:compose-stable-marker
dependency. If we addcompileOnly("com.github.skydoves:compose-stable-marker:1.0.5")
in our project's build.gradle file then the app build will be successful.Expected Behavior:
The app build is successful or
README
contains information about compile-only dependencies that are needed.The text was updated successfully, but these errors were encountered: