diff --git a/app_pojavlauncher/src/main/assets/amethyst.png b/app_pojavlauncher/src/main/assets/amethyst.png index 0b279f165..4e34d6456 100644 Binary files a/app_pojavlauncher/src/main/assets/amethyst.png and b/app_pojavlauncher/src/main/assets/amethyst.png differ diff --git a/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/scoped/FolderProvider.java b/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/scoped/FolderProvider.java index 3e45e5c7f..47a9737b0 100644 --- a/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/scoped/FolderProvider.java +++ b/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/scoped/FolderProvider.java @@ -95,7 +95,7 @@ public class FolderProvider extends DocumentsProvider { row.add(Root.COLUMN_TITLE, applicationName); row.add(Root.COLUMN_MIME_TYPES, ALL_MIME_TYPES); row.add(Root.COLUMN_AVAILABLE_BYTES, BASE_DIR.getFreeSpace()); - row.add(Root.COLUMN_ICON, R.drawable.ic_pojav_full); + row.add(Root.COLUMN_ICON, R.mipmap.ic_launcher); return result; } diff --git a/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/services/GameService.java b/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/services/GameService.java index 8782113b8..a6d492a30 100644 --- a/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/services/GameService.java +++ b/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/services/GameService.java @@ -49,7 +49,7 @@ public class GameService extends Service { .setContentText(getString(R.string.notification_game_runs)) .setContentIntent(contentIntent) .addAction(android.R.drawable.ic_menu_close_clear_cancel, getString(R.string.notification_terminate), pendingKillIntent) - .setSmallIcon(R.drawable.notif_icon) + .setSmallIcon(R.mipmap.ic_launcher_foreground) .setNotificationSilent(); Notification notification = notificationBuilder.build(); diff --git a/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/services/ProgressService.java b/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/services/ProgressService.java index 4678c3fb1..f8467078f 100644 --- a/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/services/ProgressService.java +++ b/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/services/ProgressService.java @@ -50,7 +50,7 @@ public class ProgressService extends Service implements TaskCountListener { mNotificationBuilder = new NotificationCompat.Builder(this, "channel_id") .setContentTitle(getString(R.string.lazy_service_default_title)) .addAction(android.R.drawable.ic_menu_close_clear_cancel, getString(R.string.notification_terminate), pendingKillIntent) - .setSmallIcon(R.drawable.notif_icon) + .setSmallIcon(R.mipmap.ic_launcher_foreground) .setNotificationSilent(); } diff --git a/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/utils/NotificationUtils.java b/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/utils/NotificationUtils.java index 9fa2c8f8f..a2ce922ee 100644 --- a/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/utils/NotificationUtils.java +++ b/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/utils/NotificationUtils.java @@ -34,7 +34,7 @@ public class NotificationUtils { if(contentTitle != -1) notificationBuilder.setContentTitle(context.getString(contentTitle)); if(contentText != -1) notificationBuilder.setContentText(context.getString(contentText)); if(actionIntent != null) notificationBuilder.setContentIntent(pendingIntent); - notificationBuilder.setSmallIcon(R.drawable.notif_icon); + notificationBuilder.setSmallIcon(R.mipmap.ic_launcher_foreground); notificationManager.notify(notificationId, notificationBuilder.build()); }