Notification Manager cannot resolve constructor (after upgrade SDK)

since I upgraded the SDK Version
I get the error at the line
Notification notification = new Notification(R.drawabl…

// ################################################
private void showNotification() {
// ################################################
	nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
	// In this sample, we'll use the same text for the ticker and the
	// expanded notification
	CharSequence text = getText(R.string.service_started);
	// Set the icon, scrolling text and timestamp
	Notification notification = new Notification(R.drawable.ic_launcher,
			text, System.currentTimeMillis());
	// The PendingIntent to launch our activity if the user selects this
	// notification
	PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
            new Intent(this, FragmentTestCard.class), 0);


    // Set the info for the views that show in the notification panel.
    Notification note = new Notification(this, getText(R.string.service_label),
            text, contentIntent);

	nm.notify(R.string.service_started, notification);
}