
Fixes #240. To make this easier, I added a script to aid in downloading icons. Checkout F-Droid/tools/download-material-icon.sh for more details. The icons are licensed under the CCv4 attribution license, which I added a shout out to under "License" in the README.md.
15 lines
388 B
XML
15 lines
388 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<item
|
|
android:id="@+id/edit_repo"
|
|
android:title="@string/edit"
|
|
android:icon="@drawable/ic_edit_white" />
|
|
|
|
<item
|
|
android:id="@+id/delete_repo"
|
|
android:title="@string/delete"
|
|
android:icon="@drawable/ic_delete_white" />
|
|
|
|
</menu> |