Use the correct app icon reference on InCallNotification

Bug: 162461232
Test: presubmits + manual
Change-Id: I4222cd59af6ad2df7d39903f9958d127c9f6595f
diff --git a/src/com/android/car/dialer/notification/InCallNotificationController.java b/src/com/android/car/dialer/notification/InCallNotificationController.java
index 93e2b06..b10a358 100644
--- a/src/com/android/car/dialer/notification/InCallNotificationController.java
+++ b/src/com/android/car/dialer/notification/InCallNotificationController.java
@@ -96,7 +96,7 @@
         mNotificationManager.createNotificationChannel(notificationChannel);
 
         mNotificationBuilder = new Notification.Builder(mContext, CHANNEL_ID)
-                .setSmallIcon(R.drawable.ic_phone)
+                .setSmallIcon(R.drawable.ic_app_icon)
                 .setCategory(Notification.CATEGORY_CALL)
                 .setOngoing(true)
                 .setAutoCancel(false);