Skip to content

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
- Use app namespace for showAsAction in menu resource
  • Loading branch information
balazsgerlei committed Jul 16, 2024
1 parent a4f50e3 commit 301163f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/src/main/res/menu/main.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">

<item
android:id="@+id/menu_settings"
android:orderInCategory="100"
android:showAsAction="never"
app:showAsAction="never"
android:title="@string/menu_settings"/>

</menu>
Expand Down

0 comments on commit 301163f

Please sign in to comment.