diff options
author | Guillaume Jacquart <guillaume.jacquart@hoodbrains.com> | 2023-12-05 08:17:03 +0000 |
---|---|---|
committer | Guillaume Jacquart <guillaume.jacquart@hoodbrains.com> | 2023-12-05 08:17:03 +0000 |
commit | 2234842a2bf5f17b6654a66347f6d3692cf1e443 (patch) | |
tree | 8f72170bee6247db6743521675d0ac0822b2ef65 /app/src/main/res/navigation | |
parent | 0db4d25038823369f320e0cd291968e66ed51e0c (diff) | |
parent | 2e897cc8af4234abc4e3f5c3448e1fd7b2b8a1bd (diff) |
Merge branch '1203-trackers_oriented_view' into 'main'
1203 trackers oriented view
See merge request e/os/advanced-privacy!151
Diffstat (limited to 'app/src/main/res/navigation')
-rw-r--r-- | app/src/main/res/navigation/nav_graph.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/src/main/res/navigation/nav_graph.xml b/app/src/main/res/navigation/nav_graph.xml index 52a1677..1047da6 100644 --- a/app/src/main/res/navigation/nav_graph.xml +++ b/app/src/main/res/navigation/nav_graph.xml @@ -61,6 +61,9 @@ android:id="@+id/goto_appTrackersFragment" app:destination="@id/appTrackersFragment" /> + <action + android:id="@+id/goto_trackerDetailsFragment" + app:destination="@id/trackerDetailsFragment" /> </fragment> <fragment android:id="@+id/appTrackersFragment" @@ -74,6 +77,14 @@ /> </fragment> <fragment + android:id="@+id/trackerDetailsFragment" + android:name="foundation.e.advancedprivacy.features.trackers.trackerdetails.TrackerDetailsFragment" + android:label="TrackerDetailsFragment"> + <argument + android:name="trackerId" + app:argType="string" /> + </fragment> + <fragment android:id="@+id/fakeLocationFragment" android:name="foundation.e.advancedprivacy.features.location.FakeLocationFragment" android:label="@string/location_title" |