### Run Web (JS) Development App with Gradle Source: https://github.com/mbakgun/midjourney-images-compose-multiplatform/blob/master/README.md Starts a development server to run the Compose for Web (JS) application in a browser. ```bash ./gradlew :webApp:jsBrowserDevelopmentRun ``` -------------------------------- ### Run Web (Wasm) Development App with Gradle Source: https://github.com/mbakgun/midjourney-images-compose-multiplatform/blob/master/README.md Starts a development server to run the Compose for Web (Wasm) application in a browser. ```bash ./gradlew :wasmApp:wasmBrowserDevelopmentRun ``` -------------------------------- ### Package Desktop Distribution with Gradle Source: https://github.com/mbakgun/midjourney-images-compose-multiplatform/blob/master/README.md Builds a native distribution package for the desktop application for the current operating system. Outputs are found in the build directory. ```bash ./gradlew :desktop:packageDistributionForCurrentOS ``` -------------------------------- ### Build Web (JS) Executable Distribution with Gradle Source: https://github.com/mbakgun/midjourney-images-compose-multiplatform/blob/master/README.md Builds an executable distribution package for the Compose for Web (JS) application. ```bash ./gradlew :webApp:jsBrowserDevelopmentExecutableDistribution ``` -------------------------------- ### Run Desktop App with Gradle Source: https://github.com/mbakgun/midjourney-images-compose-multiplatform/blob/master/README.md Executes the desktop application directly using the Gradle run task. ```bash ./gradlew desktopApp:run ``` -------------------------------- ### Build Web (JS) Distribution with Gradle Source: https://github.com/mbakgun/midjourney-images-compose-multiplatform/blob/master/README.md Builds a standard distribution package for the Compose for Web (JS) application. ```bash ./gradlew :webApp:jsBrowserDistribution ``` -------------------------------- ### Build Web (Wasm) Executable Distribution with Gradle Source: https://github.com/mbakgun/midjourney-images-compose-multiplatform/blob/master/README.md Builds an executable distribution package for the Compose for Web (Wasm) application. ```bash ./gradlew :wasmApp:wasmBrowserDevelopmentExecutableDistribution ``` -------------------------------- ### Build Web (Wasm) Distribution with Gradle Source: https://github.com/mbakgun/midjourney-images-compose-multiplatform/blob/master/README.md Builds a standard distribution package for the Compose for Web (Wasm) application. ```bash ./gradlew :wasmApp:wasmJsBrowserDistribution ``` -------------------------------- ### Build Android TV Debug App with Gradle Source: https://github.com/mbakgun/midjourney-images-compose-multiplatform/blob/master/README.md Compiles and assembles the debug version of the Android TV application using the Gradle wrapper. ```bash ./gradlew :televisionApp:assembleDebug ``` -------------------------------- ### Running Maestro UI Tests Source: https://github.com/mbakgun/midjourney-images-compose-multiplatform/blob/master/README.md Run the Maestro UI tests located in the .maestro directory using the Maestro command-line tool. ```bash maestro test .maestro ``` -------------------------------- ### Running Android Instrumented UI Tests with Gradle Source: https://github.com/mbakgun/midjourney-images-compose-multiplatform/blob/master/README.md Execute the Android instrumented UI tests for the shared module using the Gradle wrapper. ```bash ./gradlew :shared:connectedAndroidTest ``` -------------------------------- ### Running Unit Tests with Gradle Source: https://github.com/mbakgun/midjourney-images-compose-multiplatform/blob/master/README.md Execute the unit tests for the shared module using the Gradle wrapper. This command first cleans the test results and then runs the debug unit tests. ```bash ./gradlew :shared:cleanTestDebugUnitTest :shared:testDebugUnitTest ``` -------------------------------- ### Build Android Debug App with Gradle Source: https://github.com/mbakgun/midjourney-images-compose-multiplatform/blob/master/README.md Compiles and assembles the debug version of the Android application using the Gradle wrapper. ```bash ./gradlew :androidApp:assembleDebug ``` -------------------------------- ### Build Wear OS Debug App with Gradle Source: https://github.com/mbakgun/midjourney-images-compose-multiplatform/blob/master/README.md Compiles and assembles the debug version of the Wear OS application using the Gradle wrapper. ```bash ./gradlew :wearApp:assembleDebug ``` -------------------------------- ### Build Android Automotive Debug App with Gradle Source: https://github.com/mbakgun/midjourney-images-compose-multiplatform/blob/master/README.md Compiles and assembles the debug version of the Android Automotive application using the Gradle wrapper. ```bash ./gradlew :automotiveApp:assembleDebug ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.