Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

DedicatedPluginSettings - Download

Adds a dedicated plugin settings category in the settings page right below Aliucord's settings.

Screenshot

Submitting a plugin icon

If you would like to submit an icon for your plugin (Must be a discord drawable), please just dm me on Discord or something.

Alternatively, you may declare a field pluginIcon of type Drawable on your plugin and that will be used, e.g.:

public class DedicatedPluginSettings extends Plugin {
    private Drawable pluginIcon;

    public void load(Context ctx) {
        pluginIcon = ContextCompat.getDrawable(ctx, R$d.ic_theme_24dp);
    }
}