
This makes it a lot easier to setup all the testing stuff. Mostly, I'm tired of fighting Android Studio's fragility, so I want to remove as much non-standardness as possible in the hopes of improving that situation. closes #534 https://gitlab.com/fdroid/fdroidclient/issues/534
17 lines
560 B
XML
17 lines
560 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto" >
|
|
|
|
<item
|
|
android:id="@+id/action_update_repo"
|
|
android:icon="@drawable/ic_refresh_white"
|
|
android:title="@string/menu_update_repo"
|
|
app:showAsAction="ifRoom|withText"/>
|
|
<item
|
|
android:id="@+id/action_add_repo"
|
|
android:icon="@drawable/ic_add_white"
|
|
android:title="@string/menu_add_repo"
|
|
app:showAsAction="ifRoom|withText"/>
|
|
|
|
</menu>
|