🎧 Open source Spotify client that doesn't require Premium nor uses Electron! Available for both desktop & mobile!
Go to file
2026-06-30 17:13:21 +06:00
.agents/skills feat: migration to Compose Multiplatform 2026-06-30 17:00:13 +06:00
.github feat: migration to Compose Multiplatform 2026-06-30 17:00:13 +06:00
.opencode feat: migration to Compose Multiplatform 2026-06-30 17:00:13 +06:00
assets chore: fix alternative sources not persisting 2025-11-14 16:17:37 +06:00
composeApp refactor: remove MusicBrainz ListenBrainz plugin and related configurations 2026-06-30 17:13:21 +06:00
gradle refactor: remove MusicBrainz ListenBrainz plugin and related configurations 2026-06-30 17:13:21 +06:00
iosApp feat: migration to Compose Multiplatform 2026-06-30 17:00:13 +06:00
js_plugin_example feat: migration to Compose Multiplatform 2026-06-30 17:00:13 +06:00
metadata docs: add updated screenshots 2025-09-08 22:50:06 +06:00
packaging feat: migration to Compose Multiplatform 2026-06-30 17:00:13 +06:00
plugin_interfaces feat: migration to Compose Multiplatform 2026-06-30 17:00:13 +06:00
.dockerignore fix: windows SSL Certificate error breaking login #905 (#1474) 2024-05-04 20:10:19 +06:00
.gitignore feat: migration to Compose Multiplatform 2026-06-30 17:00:13 +06:00
.gitmodules feat: migration to Compose Multiplatform 2026-06-30 17:00:13 +06:00
AGENTS.md refactor: remove MusicBrainz ListenBrainz plugin and related configurations 2026-06-30 17:13:21 +06:00
build.gradle.kts refactor: remove MusicBrainz ListenBrainz plugin and related configurations 2026-06-30 17:13:21 +06:00
CHANGELOG.md chore: generate changelog and bump version for release 2026-06-05 10:46:06 +06:00
cliff.toml chore: add translation attribute for conventional-commit 2025-09-08 23:47:55 +06:00
CODE_OF_CONDUCT.md Contribution guidelines added 2022-01-19 22:56:12 +06:00
CONTRIBUTION.md doc: compilation with fvm (#2254) 2025-09-08 20:06:03 +06:00
gradle.properties feat: migration to Compose Multiplatform 2026-06-30 17:00:13 +06:00
gradlew feat: migration to Compose Multiplatform 2026-06-30 17:00:13 +06:00
gradlew.bat feat: migration to Compose Multiplatform 2026-06-30 17:00:13 +06:00
lefthook.yaml feat: migration to Compose Multiplatform 2026-06-30 17:00:13 +06:00
LICENSE feat: migration to Compose Multiplatform 2026-06-30 17:00:13 +06:00
PRIVACY_POLICY.md chore: privacy policy changes (#560) 2023-07-08 21:27:43 +06:00
README.md feat: migration to Compose Multiplatform 2026-06-30 17:00:13 +06:00
settings.gradle.kts feat: migration to Compose Multiplatform 2026-06-30 17:00:13 +06:00

This is a Kotlin Multiplatform project targeting Android, iOS, Desktop (JVM).

  • /composeApp is for code that will be shared across your Compose Multiplatform applications. It contains several subfolders:

    • commonMain is for code thats common for all targets.
    • Other folders are for Kotlin code that will be compiled for only the platform indicated in the folder name. For example, if you want to use Apples CoreCrypto for the iOS part of your Kotlin app, the iosMain folder would be the right place for such calls. Similarly, if you want to edit the Desktop (JVM) specific part, the jvmMain folder is the appropriate location.
  • /iosApp contains iOS applications. Even if youre sharing your UI with Compose Multiplatform, you need this entry point for your iOS app. This is also where you should add SwiftUI code for your project.

Build and Run Android Application

To build and run the development version of the Android app, use the run configuration from the run widget in your IDEs toolbar or build it directly from the terminal:

  • on macOS/Linux
    ./gradlew :composeApp:assembleDebug
    
  • on Windows
    .\gradlew.bat :composeApp:assembleDebug
    

Build and Run Desktop (JVM) Application

To build and run the development version of the desktop app, use the run configuration from the run widget in your IDEs toolbar or run it directly from the terminal:

  • on macOS/Linux
    ./gradlew :composeApp:run
    
  • on Windows
    .\gradlew.bat :composeApp:run
    

Build and Run iOS Application

To build and run the development version of the iOS app, use the run configuration from the run widget in your IDEs toolbar or open the /iosApp directory in Xcode and run it from there.


Learn more about Kotlin Multiplatform