Files
Android/app/src/main/java/protect/card_locker/LoyaltyCardLockerApplication.java
2024-02-07 19:27:18 +01:00

19 lines
422 B
Java

package protect.card_locker;
import android.app.Application;
import androidx.appcompat.app.AppCompatDelegate;
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());
}
}