mirror of
https://github.com/CatimaLoyalty/Android.git
synced 2026-01-04 13:08:04 -05:00
18 lines
421 B
Java
18 lines
421 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());
|
|
}
|
|
}
|