aboutsummaryrefslogtreecommitdiffstats
path: root/iget_android/app/src/main/res/xml/pref_routes.xml
blob: 322f58403c43d7ce55af2df6b751cb2aa9d3713f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
  <PreferenceCategory
      android:key="routes"
      android:title="Routes">

    <Preference android:title="Create route" android:key="create_route" />

    <PreferenceScreen android:title="List routes" android:key="list_routes">
        <intent android:action="android.intent.action.VIEW"
                android:targetPackage="net.named_data.nfd"
                android:targetClass="net.named_data.nfd.RouteListActivity" />
    </PreferenceScreen>

  </PreferenceCategory>
</PreferenceScreen>