summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Grover <joeygrover@gmail.com>2016-11-03 09:53:51 -0400
committerJoey Grover <joeygrover@gmail.com>2016-11-03 09:53:51 -0400
commite93fd2b7435739745b62ab78879d84537f07c16d (patch)
tree7e019f97f39242aefbd11e486d57d9e775d25d1e
parent5c7eaa998494a10f64dccf0239f83ab5cbc7c90f (diff)
downloadsdl_android-e93fd2b7435739745b62ab78879d84537f07c16d.tar.gz
Update large notification icon to newer logofeature/sdl_icon_update
-rw-r--r--sdl_android_lib/res/drawable-hdpi/ic_sdl.pngbin0 -> 3665 bytes
-rw-r--r--sdl_android_lib/res/drawable-hdpi/sdl_128.pngbin15594 -> 0 bytes
-rw-r--r--sdl_android_lib/res/drawable-mdpi/ic_sdl.pngbin0 -> 2290 bytes
-rw-r--r--sdl_android_lib/res/drawable-xhdpi/ic_sdl.pngbin0 -> 4759 bytes
-rw-r--r--sdl_android_lib/res/drawable-xxhdpi/ic_sdl.pngbin0 -> 7517 bytes
-rw-r--r--sdl_android_lib/res/drawable-xxxhdpi/ic_sdl.pngbin0 -> 13699 bytes
-rw-r--r--sdl_android_lib/src/com/smartdevicelink/transport/SdlRouterService.java4
7 files changed, 2 insertions, 2 deletions
diff --git a/sdl_android_lib/res/drawable-hdpi/ic_sdl.png b/sdl_android_lib/res/drawable-hdpi/ic_sdl.png
new file mode 100644
index 000000000..3b2d27849
--- /dev/null
+++ b/sdl_android_lib/res/drawable-hdpi/ic_sdl.png
Binary files differ
diff --git a/sdl_android_lib/res/drawable-hdpi/sdl_128.png b/sdl_android_lib/res/drawable-hdpi/sdl_128.png
deleted file mode 100644
index 552ac8aef..000000000
--- a/sdl_android_lib/res/drawable-hdpi/sdl_128.png
+++ /dev/null
Binary files differ
diff --git a/sdl_android_lib/res/drawable-mdpi/ic_sdl.png b/sdl_android_lib/res/drawable-mdpi/ic_sdl.png
new file mode 100644
index 000000000..09464468e
--- /dev/null
+++ b/sdl_android_lib/res/drawable-mdpi/ic_sdl.png
Binary files differ
diff --git a/sdl_android_lib/res/drawable-xhdpi/ic_sdl.png b/sdl_android_lib/res/drawable-xhdpi/ic_sdl.png
new file mode 100644
index 000000000..3694e4276
--- /dev/null
+++ b/sdl_android_lib/res/drawable-xhdpi/ic_sdl.png
Binary files differ
diff --git a/sdl_android_lib/res/drawable-xxhdpi/ic_sdl.png b/sdl_android_lib/res/drawable-xxhdpi/ic_sdl.png
new file mode 100644
index 000000000..0ff901fb4
--- /dev/null
+++ b/sdl_android_lib/res/drawable-xxhdpi/ic_sdl.png
Binary files differ
diff --git a/sdl_android_lib/res/drawable-xxxhdpi/ic_sdl.png b/sdl_android_lib/res/drawable-xxxhdpi/ic_sdl.png
new file mode 100644
index 000000000..b46511edd
--- /dev/null
+++ b/sdl_android_lib/res/drawable-xxxhdpi/ic_sdl.png
Binary files differ
diff --git a/sdl_android_lib/src/com/smartdevicelink/transport/SdlRouterService.java b/sdl_android_lib/src/com/smartdevicelink/transport/SdlRouterService.java
index badec42b1..9dd80ff99 100644
--- a/sdl_android_lib/src/com/smartdevicelink/transport/SdlRouterService.java
+++ b/sdl_android_lib/src/com/smartdevicelink/transport/SdlRouterService.java
@@ -939,10 +939,10 @@ public class SdlRouterService extends Service{
Bitmap icon;
- int resourcesIncluded = getResources().getIdentifier("sdl_128", "drawable", getPackageName());
+ int resourcesIncluded = getResources().getIdentifier("ic_sdl", "drawable", getPackageName());
if ( resourcesIncluded != 0 ) { //No additional pylons required
- icon = BitmapFactory.decodeResource(getResources(), R.drawable.sdl_128);
+ icon = BitmapFactory.decodeResource(getResources(), R.drawable.ic_sdl);
}
else {
icon = BitmapFactory.decodeResource(getResources(), android.R.drawable.stat_sys_data_bluetooth);