- Notifications
You must be signed in to change notification settings - Fork2
📦 Lightweight Kotlin Multiplatform library for Discord Rich Presence
License
NotificationsYou must be signed in to change notification settings
vyfor/KPresence
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
📦 A lightweight, cross-platformKotlin Multiplatform library for interacting with Discord Rich Presence.
- Cross-platform compatibility (Windows, Linux, macOS)
- Fast and user-friendly
- Offers DSL support
- Provides both JVM and Native implementations
- Validates the activity fields before sending them
- Supports Flatpak and Snap installations on Linux
- Ability to extend and override the default search paths
- Java:
16 or later(only for use within the JVM environment)
dependencies { implementation("io.github.vyfor:kpresence:0.6.6")}
val client=RichClient(CLIENT_ID) client.connect()client.update { type=ActivityType.GAME details="Exploring Kotlin Native" state="Writing code" timestamps { start= now()-3600_000 end= now()+3600_000 } party { id="myParty" size(current=1, max=5) } assets { largeImage="kotlin_logo" largeText="Kotlin" smallImage="jetbrains_logo" smallText="JetBrains" } secrets { join="joinSecret" spectate="spectateSecret" match="matchSecret" } button("Learn more","https://kotlinlang.org/") button("Try it yourself","https://play.kotlinlang.org/")}
val client=RichClient(CLIENT_ID)client.on<ReadyEvent> { update(activity)}client.on<ActivityUpdateEvent> { logger?.info("Updated rich presence")}client.on<DisconnectEvent> { connect(shouldBlock=true)// Attempt to reconnect}client.connect(shouldBlock=false)
val client=RichClient(CLIENT_ID)client.logger=ILogger.default()
About
📦 Lightweight Kotlin Multiplatform library for Discord Rich Presence
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Contributors2
Uh oh!
There was an error while loading.Please reload this page.