Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
时间: 2024-02-27 15:56:05 浏览: 322
This message is usually displayed when a Gradle build fails, and it's suggesting you to run the build again with some additional options to get more information about the failure.
Here's what the options mean:
- `--stacktrace`: This option will print the full stack trace of the error, which can help you identify the root cause of the problem.
- `--info`: This option will print more detailed information about the build process, including the dependencies being resolved and the tasks being executed.
- `--debug`: This option will print even more detailed information about the build process, including the values of all the variables and properties used in the build.
To use any of these options, you need to run the build command again with the desired option. For example:
```
./gradlew build --stacktrace
```
I hope this helps! Let me know if you have any more questions.
阅读全文