Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Branded.java « branding « notes « owncloud « niedermann « it « java « main « src « app - github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ef9138dea8ec8bcfcb8c3cdff6ac80936fc8991 (plain)
1
2
3
4
5
6
7
8
9
package it.niedermann.owncloud.notes.branding;

import androidx.annotation.ColorInt;
import androidx.annotation.UiThread;

public interface Branded {
    @UiThread
    void applyBrand(@ColorInt int mainColor, @ColorInt int textColor);
}