javiersantos / BottomDialogs

An Android library that shows a customizable Material-based bottom sheet. API 11+ required.
Apache License 2.0
642 stars 119 forks source link

Improve GRADLE build Performance #49

Closed i-Taozi closed 3 years ago

i-Taozi commented 3 years ago

Parallel test execution maxParallelForks. Gradle can run multiple test cases in parallel by setting maxParallelForks.

Disable report generation. We can conditionally disable it by setting reports.html.required = false; reports.junitXml.required = false. If you need to generate reports, add '-PcreateReports' to the end of Gradle's build command line.

===================== If there are any inappropriate modifications in this PR, please give me a reply and I will change them.