Files
Android/app/src/main/java/protect/card_locker/LoyaltyCardLockerApplication.java
2021-04-18 13:47:51 +02:00

16 lines
425 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 {
public void onCreate() {
super.onCreate();
Settings settings = new Settings(getApplicationContext());
AppCompatDelegate.setDefaultNightMode(settings.getTheme());
}
}