/**
   * Entry point for application
   *
   * @param args Command line arguments (not used)
   */
  public static void main(String[] args) {

    // Create a new instance of the application and make the currently
    // running thread the application's event dispatch thread.
    LinphoneMain theApp = new LinphoneMain();

    NotificationsManager.registerSource(
        NOTIF_ID,
        new Object() {
          public String toString() {
            return Custom.APPNAME;
          }
        },
        NotificationsConstants.IMPORTANT);

    theApp.enterEventDispatcher();
  }