DroidFish: Included higher resolution versions of the app icon.
|
@ -11,7 +11,7 @@
|
||||||
<uses-permission android:name="android.permission.VIBRATE" />
|
<uses-permission android:name="android.permission.VIBRATE" />
|
||||||
<uses-sdk android:minSdkVersion="11"
|
<uses-sdk android:minSdkVersion="11"
|
||||||
android:targetSdkVersion="23"/>
|
android:targetSdkVersion="23"/>
|
||||||
<application android:icon="@drawable/icon"
|
<application android:icon="@mipmap/icon"
|
||||||
android:theme="@android:style/Theme.Holo"
|
android:theme="@android:style/Theme.Holo"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:allowBackup="true">
|
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);
|
NotificationManager mNotificationManager = (NotificationManager)getSystemService(ns);
|
||||||
if (show) {
|
if (show) {
|
||||||
boolean silhouette = Build.VERSION.SDK_INT >= 21;
|
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);
|
CharSequence tickerText = getString(R.string.heavy_cpu_usage);
|
||||||
long when = System.currentTimeMillis();
|
long when = System.currentTimeMillis();
|
||||||
Context context = getApplicationContext();
|
Context context = getApplicationContext();
|
||||||
|
|