Quick reference for installing pre-built releases and building NoteDelight from source.
Download pre-built releases from GitHub Releases.
Download: Note Delight-<os>-<arch>-<version>.jar from the release assets
Install and Run:
# Run JAR directly
java -jar "Note Delight-<os>-<arch>-<version>.jar"Requirements: Java Runtime Environment (JRE) or JDK installed
Download: Note Delight-<version>.dmg from the release assets
Install:
- Double-click the DMG file
- Drag "Note Delight" to the Applications folder
- Eject the DMG
- Launch from Applications
First launch (if not signed):
- Right-click the app → Open
- Click "Open" in the security dialog
Download: Note Delight-<version>.deb from the release assets
Install:
sudo dpkg -i "Note Delight-<version>.deb"
sudo apt-get install -f # Install dependencies if neededLaunch:
notedelightOr find "Note Delight" in your application menu.
Download: Note Delight-<version>.msi from the release assets
Install:
- Double-click the MSI file
- Follow the installation wizard
- Launch from Start menu
Download: android-release.apk from the release assets
Install on device:
- Transfer the APK to your Android device
- Enable "Install unknown apps" for your file manager or browser in device settings
- Open the APK file and follow the installation prompts
Install via ADB:
adb install -r android-release.apk# Development run
./gradlew :app:desktop:run# Debug JAR
./gradlew :app:desktop:packageUberJarForCurrentOS
# Release JAR
./gradlew :app:desktop:packageReleaseUberJarForCurrentOSOutput location: app/desktop/build/compose/jars/
JAR filename format: Note Delight-<os>-<arch>-<version>.jar
Example: Note Delight-macos-arm64-8.4.607.jar
Run JAR:
java -jar app/desktop/build/compose/jars/Note\ Delight-*.jar# Debug packages
./gradlew :app:desktop:packageDistributionForCurrentOS
./gradlew :app:desktop:packageDmg # macOS
./gradlew :app:desktop:packageMsi # Windows
./gradlew :app:desktop:packageDeb # Linux
# Release packages
./gradlew :app:desktop:packageReleaseDistributionForCurrentOS
./gradlew :app:desktop:packageReleaseDmg # macOS
./gradlew :app:desktop:packageReleaseMsi # Windows
./gradlew :app:desktop:packageReleaseDeb # LinuxOutput locations:
- Debug:
app/desktop/build/compose/binaries/main/- DMG:
app/desktop/build/compose/binaries/main/dmg/Note Delight-<version>.dmg - MSI:
app/desktop/build/compose/binaries/main/msi/Note Delight-<version>.msi - DEB:
app/desktop/build/compose/binaries/main/deb/Note Delight-<version>.deb
- DMG:
- Release:
app/desktop/build/compose/binaries/main-release/- DMG:
app/desktop/build/compose/binaries/main-release/dmg/Note Delight-<version>.dmg - MSI:
app/desktop/build/compose/binaries/main-release/msi/Note Delight-<version>.msi - DEB:
app/desktop/build/compose/binaries/main-release/deb/Note Delight-<version>.deb
- DMG:
# Debug APK
./gradlew :app:android:assembleDebug
# Release APK (requires keystore.properties)
./gradlew :app:android:assembleRelease
# App Bundle for Play Store
./gradlew :app:android:bundleReleaseOutput locations:
- Debug:
app/android/build/outputs/apk/debug/android-debug.apk - Release:
app/android/build/outputs/apk/release/android-release.apk - Bundle:
app/android/build/outputs/bundle/release/android-release.aab
# Install via Gradle
./gradlew :app:android:installDebug
# Install via ADB
adb install -r app/android/build/outputs/apk/debug/android-debug.apk
# Launch app
adb shell am start -n com.softartdev.noteroom/.MainActivityNote: For release builds, create app/android/keystore.properties with signing configuration.
# Install CocoaPods (if needed)
sudo gem install cocoapods
# Install dependencies
cd app/iosApp
pod install
# Regenerate podspec (if needed)
./gradlew :app:ios-kit:podspec# Open workspace in Xcode
open app/iosApp/iosApp.xcworkspaceThen in Xcode:
- Select device/simulator
- Press
Cmd + Bto build - Press
Cmd + Rto run
Note: Always open .xcworkspace, not .xcodeproj
# Pre-build: Link Kotlin framework
./gradlew :app:ios-kit:linkPodReleaseFrameworkIosArm64
# Build in Xcode command line
cd app/iosApp
xcodebuild -workspace iosApp.xcworkspace \
-scheme iosApp \
-configuration Debug \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=iPhone 15' \
build# Development server with hot reload
./gradlew :app:web:wasmJsBrowserDevelopmentRun --continuous# Build production bundle
./gradlew :app:web:wasmJsBrowserProductionWebpack
# Alternative: Build and create distribution
./gradlew :app:web:wasmJsBrowserDistributionOutput location: app/web/build/dist/wasmJs/productionExecutable/
Preview locally:
cd app/web/build/dist/wasmJs/productionExecutable
python3 -m http.server 8000
# Open http://localhost:8000# Faster build excluding iOS tasks
./gradle/build_quick.sh./gradlew clean
./gradlew build