ホームに戻る

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