DroidFish: Included higher resolution versions of the app icon.
|
@ -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">
|
||||
|
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
BIN
DroidFish/res/mipmap-xhdpi/icon.png
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
DroidFish/res/mipmap-xxhdpi/icon.png
Normal file
After Width: | Height: | Size: 8.0 KiB |
BIN
DroidFish/res/mipmap-xxxhdpi/icon.png
Normal file
After Width: | Height: | Size: 11 KiB |
|
@ -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();
|
||||
|
|