DedicatedPluginSettings - Download
Adds a dedicated plugin settings category in the settings page right below Aliucord's settings.
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);
}
}