Update icon names

With ag/6861004 some system icons were renamed, so update to
make sure they're read correctly.

Bug: 129427571
Change-Id: Ia763c43427ed96a8fb468450b4897a4a0a76ee58
diff --git a/src/com/android/customization/model/ResourceConstants.java b/src/com/android/customization/model/ResourceConstants.java
index 1b52ec9..8ef4fa1 100644
--- a/src/com/android/customization/model/ResourceConstants.java
+++ b/src/com/android/customization/model/ResourceConstants.java
@@ -73,11 +73,11 @@
     String CONFIG_HEADLINE_FONT_FAMILY = "config_headlineFontFamily";
     String[] ICONS_FOR_PREVIEW = {
             "ic_wifi_signal_3",
-            "ic_qs_bluetooth_on",
-            "ic_dnd",
-            "ic_signal_flashlight",
+            "ic_qs_bluetooth",
+            "ic_qs_dnd",
+            "ic_qs_flashlight",
             "ic_qs_auto_rotate",
-            "ic_signal_airplane"
+            "ic_qs_airplane"
     };
 
     ArrayList<String> sTargetPackages = new ArrayList<>();
diff --git a/src/com/android/customization/model/theme/DefaultThemeProvider.java b/src/com/android/customization/model/theme/DefaultThemeProvider.java
index bcecc45..3a73f83 100644
--- a/src/com/android/customization/model/theme/DefaultThemeProvider.java
+++ b/src/com/android/customization/model/theme/DefaultThemeProvider.java
@@ -248,7 +248,7 @@
     private void addSysUiIconOverlay(Builder builder, String iconSysUiOverlayPackage)
             throws NameNotFoundException {
         if (!TextUtils.isEmpty(iconSysUiOverlayPackage)) {
-            addIconOverlay(builder, iconSysUiOverlayPackage, ICONS_FOR_PREVIEW);
+            addIconOverlay(builder, iconSysUiOverlayPackage);
         }
     }