-
-
Notifications
You must be signed in to change notification settings - Fork 75
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
feat: remove isTransitive in compose for newer compose versions #875
Conversation
hm, let me check the error |
It seems like test app for the compose scenario is not good for newer compose version with I locally tested at least newer compose without |
@@ -141,7 +141,6 @@ dependencies { | |||
because("Android Compose support") | |||
} | |||
androidTestImplementation("androidx.compose.ui:ui-test-junit4:${composeVersion}") { | |||
isTransitive = false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not sure if the value should be set conditionally then based on the actual composeVersion
provided into the script
## [2.22.0](v2.21.1...v2.22.0) (2023-05-11) ### Features * remove isTransitive in compose for newer compose versions ([#875](#875)) ([d82abda](d82abda))
🎉 This PR is included in version 2.22.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
It seems like
isTransitive = false
caused below error when the compose version was1.4.3
Potentially this will fix #812 as well.