android how to disable night mode in application

https:/‮‬/www.lautturi.com
android how to disable night mode in application
public class MyApplication extends Application {
    
    public void onCreate() {
        super.onCreate();
        AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);
    }
}
Created Time:2017-09-16 19:57:26  Author:lautturi