diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/DrawerContent.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/DrawerContent.kt
index 8bf7f31769..ce4d6fa935 100644
--- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/DrawerContent.kt
+++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/DrawerContent.kt
@@ -44,9 +44,17 @@ import androidx.compose.foundation.text.KeyboardOptions
import androidx.compose.foundation.verticalScroll
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.automirrored.filled.Send
+import androidx.compose.material.icons.filled.AccountCircle
import androidx.compose.material.icons.filled.Delete
+import androidx.compose.material.icons.outlined.AccountCircle
+import androidx.compose.material.icons.outlined.BookmarkBorder
+import androidx.compose.material.icons.outlined.Bookmarks
import androidx.compose.material.icons.outlined.CloudUpload
+import androidx.compose.material.icons.outlined.Drafts
import androidx.compose.material.icons.outlined.GroupAdd
+import androidx.compose.material.icons.outlined.Key
+import androidx.compose.material.icons.outlined.Security
+import androidx.compose.material.icons.outlined.Settings
import androidx.compose.material3.HorizontalDivider
import androidx.compose.material3.Icon
import androidx.compose.material3.IconButton
@@ -109,6 +117,7 @@ import com.vitorpamplona.amethyst.ui.theme.Size16dp
import com.vitorpamplona.amethyst.ui.theme.Size20Modifier
import com.vitorpamplona.amethyst.ui.theme.Size22Modifier
import com.vitorpamplona.amethyst.ui.theme.Size26Modifier
+import com.vitorpamplona.amethyst.ui.theme.StdHorzSpacer
import com.vitorpamplona.amethyst.ui.theme.bannerModifier
import com.vitorpamplona.amethyst.ui.theme.drawerSpacing
import com.vitorpamplona.amethyst.ui.theme.placeholderText
@@ -158,6 +167,8 @@ fun DrawerContent(
modifier = Modifier.padding(top = 20.dp),
)
+ Spacer(modifier = StdHorzSpacer)
+
ListContent(
modifier = Modifier.fillMaxWidth(),
openSheet,
@@ -425,7 +436,7 @@ fun ListContent(
Column(modifier) {
NavigationRow(
title = R.string.profile,
- icon = R.drawable.ic_profile,
+ icon = Icons.Default.AccountCircle,
tint = MaterialTheme.colorScheme.primary,
nav = nav,
route = remember { Route.Profile(accountViewModel.userProfile().pubkeyHex) },
@@ -433,7 +444,7 @@ fun ListContent(
NavigationRow(
title = R.string.bookmarks,
- icon = R.drawable.ic_bookmarks,
+ icon = Icons.Outlined.BookmarkBorder,
tint = MaterialTheme.colorScheme.onBackground,
nav = nav,
route = Route.Bookmarks,
@@ -441,7 +452,7 @@ fun ListContent(
NavigationRow(
title = R.string.drafts,
- icon = R.drawable.ic_topics,
+ icon = Icons.Outlined.Drafts,
tint = MaterialTheme.colorScheme.onBackground,
nav = nav,
route = Route.Drafts,
@@ -467,7 +478,7 @@ fun ListContent(
NavigationRow(
title = R.string.security_filters,
- icon = R.drawable.ic_security,
+ icon = Icons.Outlined.Security,
tint = MaterialTheme.colorScheme.onBackground,
nav = nav,
route = Route.SecurityFilters,
@@ -486,7 +497,7 @@ fun ListContent(
accountViewModel.account.settings.keyPair.privKey?.let {
IconRow(
title = R.string.backup_keys,
- icon = R.drawable.ic_key,
+ icon = Icons.Outlined.Key,
tint = MaterialTheme.colorScheme.onBackground,
onClick = {
nav.closeDrawer()
@@ -497,7 +508,7 @@ fun ListContent(
NavigationRow(
title = R.string.preferences,
- icon = R.drawable.ic_settings,
+ icon = Icons.Outlined.Settings,
tint = MaterialTheme.colorScheme.onBackground,
nav = nav,
route = Route.Settings,
@@ -590,6 +601,25 @@ fun NavigationRow(
)
}
+@Composable
+fun NavigationRow(
+ title: Int,
+ icon: ImageVector,
+ tint: Color,
+ nav: INav,
+ route: Route,
+) {
+ IconRow(
+ title,
+ icon,
+ tint,
+ onClick = {
+ nav.closeDrawer()
+ nav.nav(route)
+ },
+ )
+}
+
@Composable
fun IconRow(
title: Int,
diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/Icons.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/Icons.kt
index ce60f2f625..e503de7429 100644
--- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/Icons.kt
+++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/Icons.kt
@@ -40,6 +40,7 @@ import androidx.compose.material.icons.filled.PushPin
import androidx.compose.material.icons.filled.Report
import androidx.compose.material.icons.filled.Share
import androidx.compose.material.icons.outlined.AddReaction
+import androidx.compose.material.icons.outlined.Close
import androidx.compose.material.icons.outlined.PlayCircle
import androidx.compose.material3.Icon
import androidx.compose.material3.MaterialTheme
@@ -51,6 +52,7 @@ import androidx.compose.ui.graphics.Color
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.Dp
+import coil3.compose.AsyncImagePainter.State.Empty.painter
import com.vitorpamplona.amethyst.R
import com.vitorpamplona.amethyst.commons.hashtags.Amethyst
import com.vitorpamplona.amethyst.commons.hashtags.Cashu
@@ -392,7 +394,7 @@ fun CancelIcon() {
@Composable
fun CloseIcon() {
Icon(
- painter = painterResource(id = R.drawable.ic_close),
+ imageVector = Icons.Outlined.Close,
contentDescription = stringRes(id = R.string.cancel),
modifier = Size20Modifier,
)
diff --git a/amethyst/src/main/res/drawable-anydpi/ic_add_photo.xml b/amethyst/src/main/res/drawable-anydpi/ic_add_photo.xml
deleted file mode 100644
index 4ebcf7e039..0000000000
--- a/amethyst/src/main/res/drawable-anydpi/ic_add_photo.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
diff --git a/amethyst/src/main/res/drawable-anydpi/ic_close.xml b/amethyst/src/main/res/drawable-anydpi/ic_close.xml
deleted file mode 100644
index 844b6b62ef..0000000000
--- a/amethyst/src/main/res/drawable-anydpi/ic_close.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
diff --git a/amethyst/src/main/res/drawable-anydpi/ic_key.xml b/amethyst/src/main/res/drawable-anydpi/ic_key.xml
deleted file mode 100644
index 0db74fa0d5..0000000000
--- a/amethyst/src/main/res/drawable-anydpi/ic_key.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
diff --git a/amethyst/src/main/res/drawable-anydpi/ic_logout.xml b/amethyst/src/main/res/drawable-anydpi/ic_logout.xml
deleted file mode 100644
index 6555606de9..0000000000
--- a/amethyst/src/main/res/drawable-anydpi/ic_logout.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
diff --git a/amethyst/src/main/res/drawable-anydpi/ic_security.xml b/amethyst/src/main/res/drawable-anydpi/ic_security.xml
deleted file mode 100644
index 717b89c055..0000000000
--- a/amethyst/src/main/res/drawable-anydpi/ic_security.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
diff --git a/amethyst/src/main/res/drawable-hdpi/ic_bookmarks.png b/amethyst/src/main/res/drawable-hdpi/ic_bookmarks.png
deleted file mode 100644
index 8a7cf8beaa..0000000000
Binary files a/amethyst/src/main/res/drawable-hdpi/ic_bookmarks.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-hdpi/ic_globe.png b/amethyst/src/main/res/drawable-hdpi/ic_globe.png
deleted file mode 100644
index 71e7d944d0..0000000000
Binary files a/amethyst/src/main/res/drawable-hdpi/ic_globe.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-hdpi/ic_key.png b/amethyst/src/main/res/drawable-hdpi/ic_key.png
deleted file mode 100644
index 81ef03db80..0000000000
Binary files a/amethyst/src/main/res/drawable-hdpi/ic_key.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-hdpi/ic_logout.png b/amethyst/src/main/res/drawable-hdpi/ic_logout.png
deleted file mode 100644
index a74a0f2a14..0000000000
Binary files a/amethyst/src/main/res/drawable-hdpi/ic_logout.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-hdpi/ic_profile.png b/amethyst/src/main/res/drawable-hdpi/ic_profile.png
deleted file mode 100644
index da70047c2e..0000000000
Binary files a/amethyst/src/main/res/drawable-hdpi/ic_profile.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-hdpi/ic_security.png b/amethyst/src/main/res/drawable-hdpi/ic_security.png
deleted file mode 100644
index 5d563a7869..0000000000
Binary files a/amethyst/src/main/res/drawable-hdpi/ic_security.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-hdpi/ic_theme.png b/amethyst/src/main/res/drawable-hdpi/ic_theme.png
deleted file mode 100644
index b2b5876a4e..0000000000
Binary files a/amethyst/src/main/res/drawable-hdpi/ic_theme.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-hdpi/ic_topics.png b/amethyst/src/main/res/drawable-hdpi/ic_topics.png
deleted file mode 100644
index 1b0973811b..0000000000
Binary files a/amethyst/src/main/res/drawable-hdpi/ic_topics.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-hdpi/ic_trends.png b/amethyst/src/main/res/drawable-hdpi/ic_trends.png
deleted file mode 100644
index 7fa5184a3a..0000000000
Binary files a/amethyst/src/main/res/drawable-hdpi/ic_trends.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-mdpi/ic_bookmarks.png b/amethyst/src/main/res/drawable-mdpi/ic_bookmarks.png
deleted file mode 100644
index ecb040b7a7..0000000000
Binary files a/amethyst/src/main/res/drawable-mdpi/ic_bookmarks.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-mdpi/ic_globe.png b/amethyst/src/main/res/drawable-mdpi/ic_globe.png
deleted file mode 100644
index d442d9b3d4..0000000000
Binary files a/amethyst/src/main/res/drawable-mdpi/ic_globe.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-mdpi/ic_key.png b/amethyst/src/main/res/drawable-mdpi/ic_key.png
deleted file mode 100644
index 67341e7e15..0000000000
Binary files a/amethyst/src/main/res/drawable-mdpi/ic_key.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-mdpi/ic_logout.png b/amethyst/src/main/res/drawable-mdpi/ic_logout.png
deleted file mode 100644
index dc2dabde5e..0000000000
Binary files a/amethyst/src/main/res/drawable-mdpi/ic_logout.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-mdpi/ic_profile.png b/amethyst/src/main/res/drawable-mdpi/ic_profile.png
deleted file mode 100644
index 8eec4f1e33..0000000000
Binary files a/amethyst/src/main/res/drawable-mdpi/ic_profile.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-mdpi/ic_security.png b/amethyst/src/main/res/drawable-mdpi/ic_security.png
deleted file mode 100644
index 3dc8abcced..0000000000
Binary files a/amethyst/src/main/res/drawable-mdpi/ic_security.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-mdpi/ic_theme.png b/amethyst/src/main/res/drawable-mdpi/ic_theme.png
deleted file mode 100644
index 616707d87f..0000000000
Binary files a/amethyst/src/main/res/drawable-mdpi/ic_theme.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-mdpi/ic_topics.png b/amethyst/src/main/res/drawable-mdpi/ic_topics.png
deleted file mode 100644
index aebed8f6bd..0000000000
Binary files a/amethyst/src/main/res/drawable-mdpi/ic_topics.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-mdpi/ic_trends.png b/amethyst/src/main/res/drawable-mdpi/ic_trends.png
deleted file mode 100644
index 3275536afd..0000000000
Binary files a/amethyst/src/main/res/drawable-mdpi/ic_trends.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xhdpi/ic_bookmarks.png b/amethyst/src/main/res/drawable-xhdpi/ic_bookmarks.png
deleted file mode 100644
index 5b04fca6c1..0000000000
Binary files a/amethyst/src/main/res/drawable-xhdpi/ic_bookmarks.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xhdpi/ic_globe.png b/amethyst/src/main/res/drawable-xhdpi/ic_globe.png
deleted file mode 100644
index 1e0e02c227..0000000000
Binary files a/amethyst/src/main/res/drawable-xhdpi/ic_globe.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xhdpi/ic_key.png b/amethyst/src/main/res/drawable-xhdpi/ic_key.png
deleted file mode 100644
index 79ffc2e674..0000000000
Binary files a/amethyst/src/main/res/drawable-xhdpi/ic_key.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xhdpi/ic_logout.png b/amethyst/src/main/res/drawable-xhdpi/ic_logout.png
deleted file mode 100644
index 10fd5751c3..0000000000
Binary files a/amethyst/src/main/res/drawable-xhdpi/ic_logout.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xhdpi/ic_profile.png b/amethyst/src/main/res/drawable-xhdpi/ic_profile.png
deleted file mode 100644
index 67c2513f62..0000000000
Binary files a/amethyst/src/main/res/drawable-xhdpi/ic_profile.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xhdpi/ic_security.png b/amethyst/src/main/res/drawable-xhdpi/ic_security.png
deleted file mode 100644
index d8f6c01f2b..0000000000
Binary files a/amethyst/src/main/res/drawable-xhdpi/ic_security.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xhdpi/ic_theme.png b/amethyst/src/main/res/drawable-xhdpi/ic_theme.png
deleted file mode 100644
index 59b9eeee3c..0000000000
Binary files a/amethyst/src/main/res/drawable-xhdpi/ic_theme.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xhdpi/ic_topics.png b/amethyst/src/main/res/drawable-xhdpi/ic_topics.png
deleted file mode 100644
index f235e5d22e..0000000000
Binary files a/amethyst/src/main/res/drawable-xhdpi/ic_topics.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xhdpi/ic_trends.png b/amethyst/src/main/res/drawable-xhdpi/ic_trends.png
deleted file mode 100644
index fb979bb71a..0000000000
Binary files a/amethyst/src/main/res/drawable-xhdpi/ic_trends.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xhdpi/ic_verified.png b/amethyst/src/main/res/drawable-xhdpi/ic_verified.png
deleted file mode 100644
index 7234f029f7..0000000000
Binary files a/amethyst/src/main/res/drawable-xhdpi/ic_verified.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xhdpi/ic_verified_transparent.png b/amethyst/src/main/res/drawable-xhdpi/ic_verified_transparent.png
deleted file mode 100644
index 27ee31f90a..0000000000
Binary files a/amethyst/src/main/res/drawable-xhdpi/ic_verified_transparent.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xxhdpi/ic_bookmarks.png b/amethyst/src/main/res/drawable-xxhdpi/ic_bookmarks.png
deleted file mode 100644
index b810d48cf5..0000000000
Binary files a/amethyst/src/main/res/drawable-xxhdpi/ic_bookmarks.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xxhdpi/ic_globe.png b/amethyst/src/main/res/drawable-xxhdpi/ic_globe.png
deleted file mode 100644
index 3e4d76b9bb..0000000000
Binary files a/amethyst/src/main/res/drawable-xxhdpi/ic_globe.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xxhdpi/ic_key.png b/amethyst/src/main/res/drawable-xxhdpi/ic_key.png
deleted file mode 100644
index e0cdfef0ab..0000000000
Binary files a/amethyst/src/main/res/drawable-xxhdpi/ic_key.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xxhdpi/ic_logout.png b/amethyst/src/main/res/drawable-xxhdpi/ic_logout.png
deleted file mode 100644
index c19029b204..0000000000
Binary files a/amethyst/src/main/res/drawable-xxhdpi/ic_logout.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xxhdpi/ic_profile.png b/amethyst/src/main/res/drawable-xxhdpi/ic_profile.png
deleted file mode 100644
index 118d4eb78a..0000000000
Binary files a/amethyst/src/main/res/drawable-xxhdpi/ic_profile.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xxhdpi/ic_security.png b/amethyst/src/main/res/drawable-xxhdpi/ic_security.png
deleted file mode 100644
index dba255c73a..0000000000
Binary files a/amethyst/src/main/res/drawable-xxhdpi/ic_security.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xxhdpi/ic_theme.png b/amethyst/src/main/res/drawable-xxhdpi/ic_theme.png
deleted file mode 100644
index d58f977f67..0000000000
Binary files a/amethyst/src/main/res/drawable-xxhdpi/ic_theme.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xxhdpi/ic_topics.png b/amethyst/src/main/res/drawable-xxhdpi/ic_topics.png
deleted file mode 100644
index d65cc49b3b..0000000000
Binary files a/amethyst/src/main/res/drawable-xxhdpi/ic_topics.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xxhdpi/ic_trends.png b/amethyst/src/main/res/drawable-xxhdpi/ic_trends.png
deleted file mode 100644
index 858746bbac..0000000000
Binary files a/amethyst/src/main/res/drawable-xxhdpi/ic_trends.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xxhdpi/ic_verified.png b/amethyst/src/main/res/drawable-xxhdpi/ic_verified.png
deleted file mode 100644
index e52a538bc7..0000000000
Binary files a/amethyst/src/main/res/drawable-xxhdpi/ic_verified.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xxhdpi/ic_verified_transparent.png b/amethyst/src/main/res/drawable-xxhdpi/ic_verified_transparent.png
deleted file mode 100644
index 76f5390894..0000000000
Binary files a/amethyst/src/main/res/drawable-xxhdpi/ic_verified_transparent.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xxxhdpi/ic_bookmarks.png b/amethyst/src/main/res/drawable-xxxhdpi/ic_bookmarks.png
deleted file mode 100644
index 165366df40..0000000000
Binary files a/amethyst/src/main/res/drawable-xxxhdpi/ic_bookmarks.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xxxhdpi/ic_globe.png b/amethyst/src/main/res/drawable-xxxhdpi/ic_globe.png
deleted file mode 100644
index 4062798a89..0000000000
Binary files a/amethyst/src/main/res/drawable-xxxhdpi/ic_globe.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xxxhdpi/ic_profile.png b/amethyst/src/main/res/drawable-xxxhdpi/ic_profile.png
deleted file mode 100644
index ee8bcf94fa..0000000000
Binary files a/amethyst/src/main/res/drawable-xxxhdpi/ic_profile.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xxxhdpi/ic_theme.png b/amethyst/src/main/res/drawable-xxxhdpi/ic_theme.png
deleted file mode 100644
index 432b8953fc..0000000000
Binary files a/amethyst/src/main/res/drawable-xxxhdpi/ic_theme.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xxxhdpi/ic_topics.png b/amethyst/src/main/res/drawable-xxxhdpi/ic_topics.png
deleted file mode 100644
index c40d9f9a40..0000000000
Binary files a/amethyst/src/main/res/drawable-xxxhdpi/ic_topics.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xxxhdpi/ic_trends.png b/amethyst/src/main/res/drawable-xxxhdpi/ic_trends.png
deleted file mode 100644
index b7a948c49c..0000000000
Binary files a/amethyst/src/main/res/drawable-xxxhdpi/ic_trends.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xxxhdpi/ic_verified.png b/amethyst/src/main/res/drawable-xxxhdpi/ic_verified.png
deleted file mode 100644
index 947c365d77..0000000000
Binary files a/amethyst/src/main/res/drawable-xxxhdpi/ic_verified.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable-xxxhdpi/ic_verified_transparent.png b/amethyst/src/main/res/drawable-xxxhdpi/ic_verified_transparent.png
deleted file mode 100644
index 8213c188e7..0000000000
Binary files a/amethyst/src/main/res/drawable-xxxhdpi/ic_verified_transparent.png and /dev/null differ
diff --git a/amethyst/src/main/res/drawable/following.xml b/amethyst/src/main/res/drawable/following.xml
deleted file mode 100644
index 60c2c4395e..0000000000
--- a/amethyst/src/main/res/drawable/following.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
diff --git a/amethyst/src/main/res/drawable/ic_settings.xml b/amethyst/src/main/res/drawable/ic_settings.xml
deleted file mode 100644
index f783dd69b9..0000000000
--- a/amethyst/src/main/res/drawable/ic_settings.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/amethyst/src/main/res/drawable/lyrics_off.xml b/amethyst/src/main/res/drawable/lyrics_off.xml
deleted file mode 100644
index 763ec6fc1f..0000000000
--- a/amethyst/src/main/res/drawable/lyrics_off.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
diff --git a/amethyst/src/main/res/drawable/lyrics_on.xml b/amethyst/src/main/res/drawable/lyrics_on.xml
deleted file mode 100644
index c4a17de8bd..0000000000
--- a/amethyst/src/main/res/drawable/lyrics_on.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
diff --git a/amethyst/src/main/res/drawable/manage_accounts.xml b/amethyst/src/main/res/drawable/manage_accounts.xml
deleted file mode 100644
index 734c705597..0000000000
--- a/amethyst/src/main/res/drawable/manage_accounts.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
diff --git a/amethyst/src/main/res/drawable/x.xml b/amethyst/src/main/res/drawable/x.xml
deleted file mode 100644
index 5548bf909c..0000000000
--- a/amethyst/src/main/res/drawable/x.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
\ No newline at end of file