DroidFish: Included higher resolution versions of the app icon.

This commit is contained in:
Peter Osterlund 2015-12-26 12:54:46 +01:00
parent 428879bfcf
commit bb0f757403
8 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
<uses-permission android:name="android.permission.VIBRATE" />
<uses-sdk android:minSdkVersion="11"
android:targetSdkVersion="23"/>
<application android:icon="@drawable/icon"
<application android:icon="@mipmap/icon"
android:theme="@android:style/Theme.Holo"
android:label="@string/app_name"
android:allowBackup="true">

View File

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -3417,7 +3417,7 @@ public class DroidFish extends Activity implements GUIInterface {
NotificationManager mNotificationManager = (NotificationManager)getSystemService(ns);
if (show) {
boolean silhouette = Build.VERSION.SDK_INT >= 21;
int icon = silhouette ? R.drawable.silhouette : R.drawable.icon;
int icon = silhouette ? R.drawable.silhouette : R.mipmap.icon;
CharSequence tickerText = getString(R.string.heavy_cpu_usage);
long when = System.currentTimeMillis();
Context context = getApplicationContext();