diff --git a/OpenKeychain/src/main/AndroidManifest.xml b/OpenKeychain/src/main/AndroidManifest.xml
index b3a4d5960..48677431c 100644
--- a/OpenKeychain/src/main/AndroidManifest.xml
+++ b/OpenKeychain/src/main/AndroidManifest.xml
@@ -65,7 +65,7 @@
android:name=".KeychainApplication"
android:allowBackup="false"
android:hardwareAccelerated="true"
- android:icon="@drawable/icon"
+ android:icon="@drawable/ic_launcher"
android:theme="@style/KeychainTheme"
android:label="@string/app_name">
-
diff --git a/Resources/graphics/ic_action_nfc.svg b/Resources/graphics/ic_action_nfc.svg
new file mode 100644
index 000000000..23ec040ff
--- /dev/null
+++ b/Resources/graphics/ic_action_nfc.svg
@@ -0,0 +1,61 @@
+
+
+
+
diff --git a/Resources/graphics/ic_action_nfc/NFC.png b/Resources/graphics/ic_action_nfc/NFC.png
new file mode 100644
index 000000000..96af64049
Binary files /dev/null and b/Resources/graphics/ic_action_nfc/NFC.png differ
diff --git a/Resources/graphics/ic_action_qr_code.png b/Resources/graphics/ic_action_qr_code.png
deleted file mode 100644
index 3c311c7df..000000000
Binary files a/Resources/graphics/ic_action_qr_code.png and /dev/null differ
diff --git a/Resources/graphics/ic_action_qr_code/ic_menu_qr_code.svg b/Resources/graphics/ic_action_qr_code/ic_menu_qr_code.svg
new file mode 100644
index 000000000..5cbe9defc
--- /dev/null
+++ b/Resources/graphics/ic_action_qr_code/ic_menu_qr_code.svg
@@ -0,0 +1,753 @@
+
+
+
+
\ No newline at end of file
diff --git a/Resources/graphics/icon.png b/Resources/graphics/ic_launcher.png
similarity index 100%
rename from Resources/graphics/icon.png
rename to Resources/graphics/ic_launcher.png
diff --git a/Resources/graphics/icon.svg b/Resources/graphics/ic_launcher.svg
similarity index 100%
rename from Resources/graphics/icon.svg
rename to Resources/graphics/ic_launcher.svg
diff --git a/Resources/graphics/icon/AUTHORS b/Resources/graphics/ic_launcher/AUTHORS
similarity index 100%
rename from Resources/graphics/icon/AUTHORS
rename to Resources/graphics/ic_launcher/AUTHORS
diff --git a/Resources/graphics/icon/COPYING b/Resources/graphics/ic_launcher/COPYING
similarity index 100%
rename from Resources/graphics/icon/COPYING
rename to Resources/graphics/ic_launcher/COPYING
diff --git a/Resources/graphics/icon/kgpg_key2_kopete.svgz b/Resources/graphics/ic_launcher/kgpg_key2_kopete.svgz
similarity index 100%
rename from Resources/graphics/icon/kgpg_key2_kopete.svgz
rename to Resources/graphics/ic_launcher/kgpg_key2_kopete.svgz
diff --git a/Resources/graphics/update-icon.sh b/Resources/graphics/update-drawables.sh
similarity index 67%
rename from Resources/graphics/update-icon.sh
rename to Resources/graphics/update-drawables.sh
index 05b80e6b3..c1dfc77e6 100755
--- a/Resources/graphics/update-icon.sh
+++ b/Resources/graphics/update-drawables.sh
@@ -20,7 +20,7 @@ PLAY_DIR=./
# xxxhdpi 192x192.
# google play: 512x512
-NAME="icon"
+NAME="ic_launcher"
inkscape -w 36 -h 36 -e "$LDPI_DIR/$NAME.png" $NAME.svg
inkscape -w 48 -h 48 -e "$MDPI_DIR/$NAME.png" $NAME.svg
@@ -30,3 +30,17 @@ inkscape -w 144 -h 144 -e "$XXDPI_DIR/$NAME.png" $NAME.svg
inkscape -w 192 -h 192 -e "$XXXDPI_DIR/$NAME.png" $NAME.svg
inkscape -w 512 -h 512 -e "$PLAY_DIR/$NAME.png" $NAME.svg
+# Actionbar Icons
+# -----------------------
+# mdpi: 32x32
+# hdpi: 48x48
+# xhdpi: 64x64
+# xxhdpi: 96x96
+
+for NAME in "ic_action_nfc" "ic_action_qr_code"
+do
+inkscape -w 32 -h 32 -e "$MDPI_DIR/$NAME.png" $NAME.svg
+inkscape -w 48 -h 48 -e "$HDPI_DIR/$NAME.png" $NAME.svg
+inkscape -w 64 -h 64 -e "$XDPI_DIR/$NAME.png" $NAME.svg
+inkscape -w 96 -h 96 -e "$XXDPI_DIR/$NAME.png" $NAME.svg
+done
\ No newline at end of file