Giovani Guerra
02/03/2021, 5:39 PMstatic {
AppCompatDelegate.setDefaultNightMode(
AppCompatDelegate.MODE_NIGHT_NO);
}
public class MyApplication extends Application {
}
Diego
02/03/2021, 7:06 PMclass MyApplication : Application() {
init {
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO)
}
}
Henry
02/09/2021, 1:19 PM