返回首页
Gradle 助手
Categories
Select a category to view commands
构建
Click on any command to copy it to clipboard
构建项目
构建项目
./gradlew build
Example: ./gradlew clean build
组装项目
组装项目而不运行测试
./gradlew assemble
Example: ./gradlew clean assemble
运行测试
运行所有测试
./gradlew test
Example: ./gradlew clean test
运行检查
运行包括测试在内的所有检查
./gradlew check
Example: ./gradlew clean check
清理构建
清理构建产物
./gradlew clean
Example: ./gradlew clean build