Files
Android/app/src/main/java/protect/card_locker/LoyaltyCardLockerApplication.java
Katharine Chui edf953cdad colors
2022-02-03 05:12:20 +08:00

21 lines
479 B
Java

package protect.card_locker;
import android.app.Application;
import androidx.appcompat.app.AppCompatDelegate;
import com.google.android.material.color.DynamicColors;
import protect.card_locker.preferences.Settings;
public class LoyaltyCardLockerApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
Settings settings = new Settings(this);
AppCompatDelegate.setDefaultNightMode(settings.getTheme());
}
}