Remove duplicate icon

ic_tab_install is basically the same as ic_system_update. The only
difference is the color, but that doesn't really matter.
This commit is contained in:
Gabriele M
2017-08-07 16:43:34 +02:00
parent 415e62df5d
commit cdc4849767
2 changed files with 1 additions and 12 deletions

View File

@@ -1,11 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="@android:color/white"
android:pathData="M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-1-6h-3V8h-2v5H8l4 4 4-4z" />
</vector>

View File

@@ -338,7 +338,7 @@ public class UpdaterService extends Service {
mNotificationBuilder.setProgress(100, 100, false);
String text = getString(R.string.installing_update_finished);
mNotificationStyle.bigText(text);
mNotificationBuilder.addAction(R.drawable.ic_tab_install,
mNotificationBuilder.addAction(R.drawable.ic_system_update,
getString(R.string.reboot),
getRebootPendingIntent());
mNotificationBuilder.setTicker(text);