am 2b8f9f87: am e9438c7b: am 0ae6e37e: Merge "docs: Removing extra semicolons in Wear notif examples." into lmp-dev

* commit '2b8f9f87ff127983af4c365b70d76d41c6f7f21c':
  docs: Removing extra semicolons in Wear notif examples.
This commit is contained in:
Ricardo Cervera
2014-10-22 21:07:12 +00:00
committed by Android Git Automerger

View File

@@ -45,7 +45,7 @@ final static String GROUP_KEY_EMAILS = "group_key_emails";
Notification notif = new NotificationCompat.Builder(mContext)
.setContentTitle("New mail from " + sender1)
.setContentText(subject1)
.setSmallIcon(R.drawable.new_mail);
.setSmallIcon(R.drawable.new_mail)
.setGroup(GROUP_KEY_EMAILS)
.build();
@@ -65,7 +65,7 @@ instead of as a new card:</p>
Notification notif2 = new NotificationCompat.Builder(mContext)
.setContentTitle("New mail from " + sender2)
.setContentText(subject2)
.setSmallIcon(R.drawable.new_mail);
.setSmallIcon(R.drawable.new_mail)
.setGroup(GROUP_KEY_EMAILS)
.build();