use new icon for in-game notification
diff --git a/app/src/main/java/org/exthmui/game/services/GamingService.java b/app/src/main/java/org/exthmui/game/services/GamingService.java
index 31d1393..2f12d7e 100644
--- a/app/src/main/java/org/exthmui/game/services/GamingService.java
+++ b/app/src/main/java/org/exthmui/game/services/GamingService.java
@@ -117,7 +117,7 @@
Notification.Action.Builder actionBuilder = new Notification.Action.Builder(null, getString(R.string.action_stop_gaming_mode), stopGamingIntent);
builder.addAction(actionBuilder.build());
builder.setContentText(getString(R.string.gaming_mode_running));
- builder.setSmallIcon(R.drawable.ic_launcher_foreground);
+ builder.setSmallIcon(R.drawable.ic_notification_game);
mGamingNotification = builder.build();
startForeground(NOTIFICATION_ID, mGamingNotification);
diff --git a/app/src/main/res/drawable/ic_notification_game.xml b/app/src/main/res/drawable/ic_notification_game.xml
new file mode 100644
index 0000000..fcf518c
--- /dev/null
+++ b/app/src/main/res/drawable/ic_notification_game.xml
@@ -0,0 +1,10 @@
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+ android:width="24dp"
+ android:height="24dp"
+ android:viewportWidth="24"
+ android:viewportHeight="24"
+ android:tint="?attr/colorControlNormal">
+ <path
+ android:fillColor="@android:color/white"
+ android:pathData="M15,7.5V2H9v5.5l3,3 3,-3zM7.5,9H2v6h5.5l3,-3 -3,-3zM9,16.5V22h6v-5.5l-3,-3 -3,3zM16.5,9l-3,3 3,3H22V9h-5.5z"/>
+</vector>