2016-08-21 15:29:42 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
2016-08-23 17:02:32 +02:00
|
|
|
<group
|
|
|
|
android:id="@+id/main_items"
|
|
|
|
android:checkableBehavior="single">
|
2016-08-21 15:29:42 +02:00
|
|
|
|
2016-08-23 11:39:18 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/magisk"
|
|
|
|
android:icon="@drawable/magisk"
|
|
|
|
android:title="@string/magisk"/>
|
|
|
|
|
2016-08-26 12:45:35 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/root"
|
|
|
|
android:icon="@drawable/root"
|
|
|
|
android:title="@string/root"/>
|
|
|
|
|
2016-08-31 16:52:42 -05:00
|
|
|
<item
|
|
|
|
android:id="@+id/autoroot"
|
|
|
|
android:icon="@drawable/ic_autoroot"
|
2016-09-23 23:25:12 -05:00
|
|
|
android:title="@string/auto_toggle_apps"/>
|
2016-08-31 16:52:42 -05:00
|
|
|
|
2016-08-21 15:29:42 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/modules"
|
|
|
|
android:icon="@drawable/ic_extension"
|
|
|
|
android:title="@string/modules"/>
|
|
|
|
|
2016-09-11 13:36:58 -05:00
|
|
|
<item
|
|
|
|
android:id="@+id/downloads"
|
2016-09-18 02:32:08 +08:00
|
|
|
android:icon="@drawable/ic_cloud_download"
|
2016-09-11 13:36:58 -05:00
|
|
|
android:title="@string/downloads"/>
|
|
|
|
|
2016-08-21 15:29:42 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/log"
|
|
|
|
android:icon="@drawable/ic_bug_report"
|
|
|
|
android:title="@string/log"/>
|
|
|
|
|
2016-09-21 16:55:20 -05:00
|
|
|
<item
|
|
|
|
android:id="@+id/settings"
|
|
|
|
android:icon="@drawable/ic_settings"
|
|
|
|
android:title="@string/settings"/>
|
|
|
|
|
2016-08-21 15:29:42 +02:00
|
|
|
</group>
|
|
|
|
|
2016-08-23 17:02:32 +02:00
|
|
|
<group
|
|
|
|
android:id="@+id/option_items"
|
|
|
|
android:checkableBehavior="none">
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/app_about"
|
|
|
|
android:icon="@drawable/ic_info_outline"
|
|
|
|
android:title="@string/about"/>
|
|
|
|
|
2016-08-21 15:29:42 +02:00
|
|
|
</group>
|
|
|
|
|
|
|
|
</menu>
|