Notification.Builder builder = new Notification.Builder(this);
builder.setContentIntent(contentIntent)
.setSmallIcon(R.drawable.ic_launcher)
.setTicker(notificationMessage)
.setWhen(System.currentTimeMillis())
.setAutoCancel(true)
.setContentTitle(newNotificationsCount + " New Notifications")
.setContentText(notificationMessage);
Notification notification = builder.getNotification();
nm.notify(R.string.app_name, notification);
これによりエラーが発生します:
呼び出しには API レベル 11 が必要です (現在の最小値は 10 です): android.app.Notification$Builder#setContentIntent
android.support.v4.jarをダウンロードして、 srcやresなどと同じディレクトリの libs フォルダーに追加しました。
プロジェクト エクスプローラーからこの jar を右クリックし、ビルド パスに追加します。
私のアプリケーションには最小 api = 10とターゲット api = 15があります
ありがとうございました