Compose Multiplatform, a modern UI framework for Kotlin that makes building performant and beautiful user interfaces easy and enjoyable.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 lines
549 B

#!/bin/bash
# Script to build all examples, to verify if they can compile
set -euo pipefail
runGradle() {
pushd $1
./gradlew $2
popd
}
runGradle codeviewer package
runGradle falling-balls package
runGradle falling-balls-web build
runGradle imageviewer package
runGradle intellij-plugin build
runGradle issues package
runGradle notepad package
runGradle todoapp-lite package
runGradle visual-effects package
runGradle web-compose-bird build
runGradle web-landing build
runGradle web-with-react build
runGradle widgets-gallery package