@Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.splash);

    // Set the global application version string
    Utils.setAppVersion(this);

    PreferenceManager.setDefaultValues(this, R.xml.settings, false);

    mHandler = new SplashHandler(this);

    mHandler.sendEmptyMessage(LICENSE_CHECK);
  }