KizzyRPC is an Android library for Discord Rich Presence in Kotlin. With KizzyRPC, you can easily implement Discord Rich Presence into your Android project and make your application more immersive.
Step 1. Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependency
dependencies {
implementation 'com.github.dead8309:KizzyRPC:1.0.71'
}
val rpc = KizzyRPC("DISCORD ACCOUNT TOKEN")
rpc.setActivity(
activity = Activity(
applicationId = "962990036020756480",
name = "hi",
details = "details",
state = "state",
type = 0,
timestamps = Timestamps(
start = System.currentTimeMillis(),
end = System.currentTimeMillis() + 500000
),
assets = Assets(
largeImage = "mp:attachments/973256105515974676/983674644823412798/unknown.png",
smallImage = "mp:attachments/973256105515974676/983674644823412798/unknown.png",
largeText = "large-image-text",
smallText = "small-image-text",
),
buttons = listOf("Button 1", "Button 2"),
metadata = Metadata(
listOf(
"https://youtu.be/1yVm_M1sKBE",
"https://youtu.be/1yVm_M1sKBE",
)
)
),
status = "online",
since = System.currentTimeMillis()
)
Property | Type | Description |
---|---|---|
activity |
Activity | The activity information to be set for the Discord RPC. |
status |
String | The user's status, could be online , idle , dnd |
since |
Long | The Unix time (in milliseconds) when the user started the activity. |
Required fields are marked with *
Property | Type | Description |
---|---|---|
applicationId |
String | The application id of your app from discord developer portal. NOTE: applicationId is required if you want to use buttons |
name* |
String | The name of the activity that is being set. |
details |
String | A detailed message about the activity. |
state |
String | A short message about the activity. |
type* |
Int | The type of activity, could be 0 for playing , 1 for streaming , 2 for listening , 3 for watching , 5 for competing . |
timestamps |
Timestamps | The timestamps of the activity, including start and end time. |
assets |
Assets | The assets of the activity, including large image and text, and small image and text. |
buttons |
List | A list of buttons labels. |
metadata |
Metadata | Additional metadata for the activity. |
Property | Type | Description |
---|---|---|
start |
Long | The Unix time (in milliseconds) when the activity started. |
end |
Long | The Unix time (in milliseconds) when the activity ends. |
Property | Type | Description |
---|---|---|
largeImage |
String | The identifier of the large image asset. See activity-object-activity-asset-image |
largeText |
String | The text displayed when hovering over the large image. |
smallImage |
String | The identifier of the small image asset. See activity-object-activity-asset-image |
smallText |
String | The text displayed when hovering over the small image. |
Property | Type | Description |
---|---|---|
metadata |
List | List of button url(s). |