Plugins for Aliucord
Pull requests are welcomed but I will not be working on new plugins or new features.
- Join the Aliucord support server
- 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
)
- Fork this repo
-
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
-
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
-
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: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 }
- Create a pull request!