GitPedia

AliuPlugins

My plugins for Aliucord

From nyakowint·Updated June 6, 2026·View on GitHub·

Pull requests are welcomed but I will not be working on new plugins or new features. The project is written primarily in Kotlin, distributed under the Other license, first published in 2021. Key topics include: aliucord, discord, kotlin.

Plugins for Aliucord

THESE PLUGINS ARE NOT ACTIVELY WORKED ON!

Pull requests are welcomed but I will not be working on new plugins or new features.

How to install:

  1. Join the Aliucord support server
  2. long press on this message — #plugins-list
    then click "Open PluginDownloader"

How to install manually:
Download [plugin].zip from the builds branch and move to your Aliucord plugins folder (
usually /sdcard/Aliucord/plugins)

How to add new icons (UnknownConnectionIcons):

  • Fork this repo
  1. Get a Vector Drawable of the connection's icon, the easiest way is just stealing it from the
    Desktop app with inspect element

    • If needed add "discord.com" to get the asset e.g "
      discord.com/assets/6a853b4c87fce386cbfef4a2efbacb09.svg"
    • Convert SVGs to Vector Drawables with an online tool or Android Studio (preferred - resize to
      24dp) or PNGs
  2. Add the icon to UnknownConnectionIcons/src/main/res/drawable

    2.5. Add the light theme compatible icon to [NAME]_light, replacing [NAME] with the
    connection name Discord uses

    • If there isn't one, just copy and paste your icon and rename it
  3. Please increment the version number inside UnknownConnectionIcons/build.gradle.kts

You are technically done, but if the connection has a URL (indicated by an open link button on
desktop/rn), you might want to continue following along

  • Add the connection name and URL to the getUrl function in UnknownConnectionIcons.kt. Example
    below:
    kotlin
    return when (account.g()) { "ebay" -> "https://ebay.com/usr/${account.d()}" "instagram" -> "https://instagram.com/${account.d()}" "tiktok" -> "https://tiktok.com/@${account.d()}" "domain" -> "https://${account.d()}" "CONNECTION_NAME" -> "https://CONNECTION_URL/${account.d()}" else -> null }
  1. Create a pull request!

Contributors

Showing top 10 contributors by commit count.

View all contributors on GitHub →

This article is auto-generated from nyakowint/AliuPlugins via the GitHub API.Last fetched: 6/28/2026