-
Notifications
You must be signed in to change notification settings - Fork 26
Misleading warning #45
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
Comments
@emartynov this is something I will fix in the next release. |
In the next release instead of a warning this will likely become something like this:
Which is also not going to be logged on the WARNING level but on the INFO level. |
Rolf, it is still misleading since they are not modules |
From a Gradle perspective they are actually seen as modules (that is also why the warning is triggered for those in the first place), so it might be hard to differentiate. But I will see what I can do. |
…hout a build.gradle file Fixes #45
Fixed in #50, will be released in version 1.5. |
Google finally released a stable version of the Android Gradle Plugin 7.2 that fixes #36, this means we can finally create a new stable release for this plugin: - Most of the plugin has been rewritten to only make use of public Android Gradle Plugin API's, functionally this should not change anything compared to previous releases. - Adds a minimum required Android Gradle Plugin version check, using an Android Gradle Plugin version that is too old will result in a Gradle build error. - No longer logs warning messages for (sub)projects (modules) that do not use the Android Gradle Plugin. Instead this is now an info message. This info message will only show for (sub)projects that have a build.gradle file (see #45). - No longer logs warning messages asking to apply the JaCoCo plugin yourself, instead the plugin takes care of this now. - Potentially fixes #42, since JaCoCo will now always be applied by the plugin at the root project.
I've added a check which checks if a Gradle sub(project) is an empty container for other (sub)projects, like in your case. If that is the case it will not log a message. "empty container" means in this case that there is no This is released with version 1.5.0. |
Super thank you for the work under the plugin.
We have next project structure:
We are getting warning that projects
features
andcore
are not supported. However, they are not projects but just container folders.The text was updated successfully, but these errors were encountered: