gradle-doctor
gradle-doctor copied to clipboard
The right prescription for your Gradle build.
Solves: https://github.com/runningcode/gradle-doctor/issues/209 Used `sysctl.proc_translated` API via bash in order to determine if process is running under Rosetta or not according to documentation: https://developer.apple.com/documentation/apple-silicon/about-the-rosetta-translation-environment#Determine-Whether-Your-App-Is-Running-as-a-Translated-Binary Additional related thought: maybe we need to...
Bumps [dagger](https://github.com/google/dagger) from 2.42 to 2.43.2. Release notes Sourced from dagger's releases. Dagger 2.43.2 What’s New In Dagger Bug Fixes Fixes #3495: Updates the XProcessing jars, which should again be...
Bumps [dagger-compiler](https://github.com/google/dagger) from 2.42 to 2.43.2. Release notes Sourced from dagger-compiler's releases. Dagger 2.43.2 What’s New In Dagger Bug Fixes Fixes #3495: Updates the XProcessing jars, which should again be...
Scenario: 1. Add any task as a first one: ```kotlin val initialTaskNames: List = project.gradle.startParameter.taskNames project.gradle.startParameter.setTaskNames( listOf(":someUsefullRequiredTask") + initialTaskNames.toMutableList() ) doctor { allowBuildingAllAndroidAppsSimultaneously.set(true) } ``` 2. Hit "Make Project" in...
Basically, notify when this occurs: https://github.com/gradle/gradle/issues/19750 This happens when someone sets, for example, `org.gradle.jvmargs=-Xmx4g`. This has the unfortunate effect of replacing the entire jvmargs string applied by Gradle, instead of...
Detect when an M1 cpu is using the rosetta translation layer and add warning and/or fail the build
Hello! Firstly, I wish you a happy New Year, and I hope you're doing well! I'm hitting a wall as I'm using it in combination with SDKMAN regarding the Java...
Hello, On macOS, if you keep an IntelliJ IDE open and restart the computer, after it's re-open automatically (granted you kept the box check), the shell configuration (`~/.zshrc` on macOS...
It would be good when gradle doctor prints out which tasks took longer to be loaded from cache then a re-run would have taken for it to also print the...
### The problem I work on different Gradle projects. They run different Gradle daemon instances and this is expected. `disallowMultipleDaemons` fails in this case. As I understand this check ideologically...