2018-12-03 18:26:47 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-04-18 09:54:32 +00:00
|
|
|
android:id="@+id/main_nav"
|
2018-12-03 18:26:47 +00:00
|
|
|
app:startDestination="@id/tasksFragment">
|
|
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/equipmentOverviewFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.inventory.equipment.EquipmentOverviewFragment"
|
2019-08-24 11:00:20 +00:00
|
|
|
android:label="@string/sidebar_equipment" >
|
2019-02-28 13:21:14 +00:00
|
|
|
<deepLink app:uri="habitica.com/inventory/equipment" />
|
2018-12-03 18:26:47 +00:00
|
|
|
<action
|
|
|
|
|
android:id="@+id/openEquipmentDetail"
|
|
|
|
|
app:destination="@id/equipmentDetailFragment" />
|
|
|
|
|
</fragment>
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/equipmentDetailFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.inventory.equipment.EquipmentDetailFragment"
|
2019-08-24 11:00:20 +00:00
|
|
|
android:label="@string/sidebar_equipment" >
|
2018-12-03 18:26:47 +00:00
|
|
|
<argument
|
|
|
|
|
android:name="type"
|
|
|
|
|
app:argType="string" />
|
|
|
|
|
<argument android:name="isCostume"
|
|
|
|
|
app:argType="boolean"/>
|
|
|
|
|
<argument
|
|
|
|
|
android:name="equippedGear"
|
|
|
|
|
app:argType="string" />
|
|
|
|
|
</fragment>
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/tasksFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.tasks.TasksFragment">
|
|
|
|
|
<deepLink app:uri="habitica.com/tasks" />
|
2019-02-28 13:21:14 +00:00
|
|
|
<deepLink app:uri="habitica.com" />
|
2018-12-03 18:26:47 +00:00
|
|
|
</fragment>
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/partyFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.social.party.PartyFragment"
|
2019-08-24 11:00:20 +00:00
|
|
|
android:label="@string/sidebar_party">
|
2018-12-03 18:26:47 +00:00
|
|
|
<deepLink app:uri="habitica.com/party" />
|
2018-12-07 17:54:14 +00:00
|
|
|
<action
|
|
|
|
|
android:id="@+id/openQuestDetail"
|
|
|
|
|
app:destination="@id/questDetailFragment" />
|
2019-06-14 11:22:37 +00:00
|
|
|
<argument
|
|
|
|
|
android:name="tabToOpen"
|
|
|
|
|
app:argType="integer"
|
|
|
|
|
android:defaultValue="0"/>
|
2019-11-01 16:39:10 +00:00
|
|
|
<argument
|
|
|
|
|
android:name="partyID"
|
2019-11-07 17:04:06 +00:00
|
|
|
app:argType="string"
|
|
|
|
|
app:nullable="true"
|
2019-11-08 13:23:14 +00:00
|
|
|
android:defaultValue=" " />
|
2019-11-01 16:39:10 +00:00
|
|
|
</fragment>
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/noPartyFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.social.NoPartyFragmentFragment"
|
|
|
|
|
android:label="@string/sidebar_party">
|
2018-12-07 17:54:14 +00:00
|
|
|
</fragment>
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/questDetailFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.social.QuestDetailFragment">
|
2019-02-28 13:21:14 +00:00
|
|
|
<deepLink app:uri="habitica.com/party/quest" />
|
2018-12-03 18:26:47 +00:00
|
|
|
</fragment>
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/skillsFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.skills.SkillsFragment"
|
2019-08-24 11:00:20 +00:00
|
|
|
android:label="@string/sidebar_skills">
|
2019-02-28 13:21:14 +00:00
|
|
|
|
|
|
|
|
</fragment>
|
2018-12-03 18:26:47 +00:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/statsFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.StatsFragment"
|
2019-02-28 13:21:14 +00:00
|
|
|
android:label="@string/stats">
|
|
|
|
|
<deepLink app:uri="habitica.com/user/stats" />
|
|
|
|
|
</fragment>
|
2018-12-03 18:26:47 +00:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/tavernFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.social.TavernFragment"
|
2019-08-24 11:00:20 +00:00
|
|
|
android:label="@string/sidebar_tavern">
|
2019-02-28 13:21:14 +00:00
|
|
|
<deepLink app:uri="habitica.com/tavern" />
|
|
|
|
|
</fragment>
|
2018-12-03 18:26:47 +00:00
|
|
|
<fragment
|
2021-02-04 17:21:04 +00:00
|
|
|
android:id="@+id/guildOverviewFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.social.guilds.GuildOverviewFragment"
|
2019-08-24 11:00:20 +00:00
|
|
|
android:label="@string/sidebar_guilds" >
|
2019-02-28 13:21:14 +00:00
|
|
|
<deepLink app:uri="habitica.com/groups/myGuilds" />
|
2018-12-03 18:26:47 +00:00
|
|
|
<action
|
|
|
|
|
android:id="@+id/openGuildDetail"
|
2019-05-02 10:53:27 +00:00
|
|
|
app:destination="@id/guildFragment" />
|
2018-12-03 18:26:47 +00:00
|
|
|
<action
|
|
|
|
|
android:id="@+id/openPublicGuilds"
|
|
|
|
|
app:destination="@id/publicGuildsFragment" />
|
|
|
|
|
</fragment>
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/challengesOverviewFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.social.challenges.ChallengesOverviewFragment"
|
2019-08-24 11:00:20 +00:00
|
|
|
android:label="@string/sidebar_challenges" >
|
2019-02-28 13:21:14 +00:00
|
|
|
<deepLink app:uri="habitica.com/challenges/myChallenges" />
|
|
|
|
|
<deepLink app:uri="habitica.com/challenges/findChallenges" />
|
2018-12-07 17:54:14 +00:00
|
|
|
<action
|
|
|
|
|
android:id="@+id/openChallengeDetail"
|
|
|
|
|
app:destination="@id/challengeDetailFragment" />
|
|
|
|
|
</fragment>
|
2018-12-03 18:26:47 +00:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/avatarOverviewFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.inventory.customization.AvatarOverviewFragment"
|
2019-08-24 11:00:20 +00:00
|
|
|
android:label="@string/sidebar_avatar" >
|
2018-12-03 18:26:47 +00:00
|
|
|
<action
|
|
|
|
|
android:id="@+id/openAvatarDetail"
|
|
|
|
|
app:destination="@id/avatarCustomizationFragment" />
|
2020-03-20 16:37:29 +00:00
|
|
|
<action
|
|
|
|
|
android:id="@+id/openAvatarEquipment"
|
|
|
|
|
app:destination="@id/avatarEquipmentFragment" />
|
2018-12-03 18:26:47 +00:00
|
|
|
</fragment>
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/itemsFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.inventory.items.ItemsFragment"
|
2019-02-28 13:21:14 +00:00
|
|
|
android:label="@string/sidebar_items">
|
|
|
|
|
<deepLink app:uri="habitica.com/inventory/items" />
|
2019-06-12 16:00:41 +00:00
|
|
|
<argument
|
|
|
|
|
android:name="itemType"
|
|
|
|
|
app:argType="string"
|
2020-01-13 16:05:54 +00:00
|
|
|
android:defaultValue="eggs"
|
2019-06-12 16:00:41 +00:00
|
|
|
app:nullable="true" />
|
2019-02-28 13:21:14 +00:00
|
|
|
</fragment>
|
2018-12-03 18:26:47 +00:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/stableFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.inventory.stable.StableFragment"
|
2019-08-24 11:00:20 +00:00
|
|
|
android:label="@string/sidebar_stable" >
|
2019-02-28 13:21:14 +00:00
|
|
|
<deepLink app:uri="habitica.com/inventory/stable" />
|
2018-12-03 18:26:47 +00:00
|
|
|
<action
|
|
|
|
|
android:id="@+id/openPetDetail"
|
|
|
|
|
app:destination="@id/petDetailRecyclerFragment" />
|
|
|
|
|
<action
|
|
|
|
|
android:id="@+id/openMountDetail"
|
|
|
|
|
app:destination="@id/mountDetailRecyclerFragment" />
|
|
|
|
|
</fragment>
|
2019-09-26 12:35:02 +00:00
|
|
|
<activity
|
|
|
|
|
android:id="@+id/subscriptionPurchaseActivity"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.activities.GemPurchaseActivity"
|
|
|
|
|
android:label="@string/gem_purchase_toolbartitle" >
|
|
|
|
|
<argument
|
|
|
|
|
android:name="openSubscription"
|
|
|
|
|
app:argType="boolean"
|
|
|
|
|
android:defaultValue="true" />
|
|
|
|
|
</activity>
|
2018-12-03 18:26:47 +00:00
|
|
|
<activity
|
|
|
|
|
android:id="@+id/gemPurchaseActivity"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.activities.GemPurchaseActivity"
|
2019-09-26 12:35:02 +00:00
|
|
|
android:label="@string/gem_purchase_toolbartitle">
|
|
|
|
|
<argument
|
|
|
|
|
android:name="openSubscription"
|
|
|
|
|
app:argType="boolean"
|
|
|
|
|
android:defaultValue="false" />
|
|
|
|
|
</activity>
|
2019-10-07 16:35:08 +00:00
|
|
|
<activity
|
|
|
|
|
android:id="@+id/giftGemsActivity"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.activities.GiftGemsActivity"
|
|
|
|
|
android:label="@string/gift_gems" >
|
|
|
|
|
<argument
|
|
|
|
|
android:name="userID"
|
|
|
|
|
app:argType="string"
|
|
|
|
|
app:nullable="true" />
|
|
|
|
|
<argument
|
|
|
|
|
android:name="username"
|
|
|
|
|
app:argType="string"
|
|
|
|
|
app:nullable="true" />
|
|
|
|
|
</activity>
|
|
|
|
|
<activity
|
|
|
|
|
android:id="@+id/giftSubscriptionActivity"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.activities.GiftSubscriptionActivity"
|
|
|
|
|
android:label="@string/gift_subscription" >
|
|
|
|
|
<argument
|
|
|
|
|
android:name="userID"
|
|
|
|
|
app:argType="string"
|
|
|
|
|
app:nullable="true" />
|
|
|
|
|
<argument
|
|
|
|
|
android:name="username"
|
|
|
|
|
app:argType="string"
|
|
|
|
|
app:nullable="true" />
|
|
|
|
|
</activity>
|
2018-12-03 18:26:47 +00:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/newsFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.NewsFragment"
|
2019-08-24 11:00:20 +00:00
|
|
|
android:label="@string/sidebar_news" />
|
2018-12-03 18:26:47 +00:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/FAQOverviewFragment"
|
2020-03-18 14:18:59 +00:00
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.support.FAQOverviewFragment"
|
2020-03-18 14:33:40 +00:00
|
|
|
android:label="@string/habitica_questions">
|
2019-02-28 13:21:14 +00:00
|
|
|
<deepLink app:uri="habitica.com/static/faq" />
|
2020-04-03 13:36:37 +00:00
|
|
|
<action
|
|
|
|
|
android:id="@+id/openFAQDetail"
|
|
|
|
|
app:destination="@id/FAQDetailFragment" />
|
|
|
|
|
</fragment>
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/FAQDetailFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.support.FAQDetailFragment"
|
|
|
|
|
android:label="@string/sidebar_help" >
|
|
|
|
|
<argument
|
|
|
|
|
android:name="position"
|
2020-09-22 14:10:15 +00:00
|
|
|
app:argType="integer"
|
|
|
|
|
android:defaultValue="0"/>
|
|
|
|
|
<argument
|
|
|
|
|
android:name="question"
|
|
|
|
|
app:argType="string"
|
|
|
|
|
app:nullable="true"/>
|
|
|
|
|
<argument
|
|
|
|
|
android:name="answer"
|
|
|
|
|
app:argType="string"
|
|
|
|
|
app:nullable="true"/>
|
2018-12-03 18:26:47 +00:00
|
|
|
</fragment>
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/aboutFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.AboutFragment"
|
2019-08-24 11:00:20 +00:00
|
|
|
android:label="@string/sidebar_about" />
|
2018-12-03 18:26:47 +00:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/inboxFragment"
|
2019-08-25 11:59:11 +00:00
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.social.InboxOverviewFragment"
|
2019-08-24 11:00:20 +00:00
|
|
|
android:label="@string/sidebar_inbox" >
|
2018-12-03 18:26:47 +00:00
|
|
|
<action
|
2018-12-07 17:54:14 +00:00
|
|
|
android:id="@+id/openInboxDetail"
|
2018-12-03 18:26:47 +00:00
|
|
|
app:destination="@id/inboxMessageListFragment" />
|
|
|
|
|
</fragment>
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/guildFragment"
|
2021-02-04 17:21:04 +00:00
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.social.guilds.GuildFragment"
|
2018-12-03 18:26:47 +00:00
|
|
|
android:label="@string/guild" >
|
2019-02-28 13:21:14 +00:00
|
|
|
<deepLink app:uri="habitica.com/groups/guild/{groupID}" />
|
2018-12-03 18:26:47 +00:00
|
|
|
<argument
|
|
|
|
|
android:name="groupID"
|
|
|
|
|
app:argType="string" />
|
|
|
|
|
<argument
|
|
|
|
|
android:name="isMember"
|
2019-02-28 13:21:14 +00:00
|
|
|
app:argType="boolean"
|
|
|
|
|
android:defaultValue="false"/>
|
2019-06-12 16:00:41 +00:00
|
|
|
<argument
|
|
|
|
|
android:name="tabToOpen"
|
|
|
|
|
app:argType="integer"
|
|
|
|
|
android:defaultValue="0"/>
|
2018-12-03 18:26:47 +00:00
|
|
|
</fragment>
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/publicGuildsFragment"
|
2021-02-04 17:21:04 +00:00
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.social.guilds.GuildListFragment"
|
2018-12-03 18:26:47 +00:00
|
|
|
android:label="@string/public_guilds" >
|
|
|
|
|
<action
|
|
|
|
|
android:id="@+id/openGuildDetail"
|
|
|
|
|
app:destination="@id/guildFragment" />
|
|
|
|
|
</fragment>
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/avatarCustomizationFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.inventory.customization.AvatarCustomizationFragment"
|
2019-08-24 11:00:20 +00:00
|
|
|
android:label="@string/sidebar_avatar" >
|
2018-12-03 18:26:47 +00:00
|
|
|
<argument
|
|
|
|
|
android:name="type"
|
|
|
|
|
app:argType="string" />
|
2020-03-20 16:37:29 +00:00
|
|
|
<argument
|
|
|
|
|
android:name="category"
|
|
|
|
|
app:argType="string" />
|
|
|
|
|
</fragment>
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/avatarEquipmentFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.inventory.customization.AvatarEquipmentFragment"
|
|
|
|
|
android:label="@string/sidebar_avatar" >
|
|
|
|
|
<argument
|
|
|
|
|
android:name="type"
|
|
|
|
|
app:argType="string" />
|
2018-12-03 18:26:47 +00:00
|
|
|
<argument
|
|
|
|
|
android:name="category"
|
|
|
|
|
app:argType="string" />
|
|
|
|
|
</fragment>
|
|
|
|
|
<activity
|
|
|
|
|
android:id="@+id/prefsActivity"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.activities.PrefsActivity"
|
2019-01-03 06:12:24 +00:00
|
|
|
android:label="@string/app_settings"
|
2019-02-28 13:21:14 +00:00
|
|
|
tools:layout="@layout/activity_prefs">
|
|
|
|
|
</activity>
|
2018-12-03 18:26:47 +00:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/inboxMessageListFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.social.InboxMessageListFragment"
|
2019-01-03 06:12:24 +00:00
|
|
|
android:label="@string/inbox" >
|
2018-12-03 18:26:47 +00:00
|
|
|
<argument
|
|
|
|
|
android:name="userID"
|
|
|
|
|
app:argType="string" />
|
2018-12-07 17:54:14 +00:00
|
|
|
<argument
|
|
|
|
|
android:name="username"
|
2019-04-17 13:41:41 +00:00
|
|
|
app:argType="string"
|
|
|
|
|
app:nullable="true" />
|
2018-12-03 18:26:47 +00:00
|
|
|
</fragment>
|
2019-03-08 18:51:20 +00:00
|
|
|
<activity
|
|
|
|
|
android:id="@+id/notificationsActivity"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.activities.NotificationsActivity"
|
|
|
|
|
android:label="@string/notifications">
|
|
|
|
|
</activity>
|
2018-12-03 18:26:47 +00:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/petDetailRecyclerFragment"
|
2020-07-28 10:31:36 +00:00
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.inventory.stable.PetDetailRecyclerFragment">
|
2018-12-03 18:26:47 +00:00
|
|
|
<argument
|
|
|
|
|
android:name="type"
|
|
|
|
|
app:argType="string" />
|
|
|
|
|
<argument
|
|
|
|
|
android:name="group"
|
|
|
|
|
app:argType="string" />
|
2019-10-01 17:55:52 +00:00
|
|
|
<argument
|
|
|
|
|
android:name="color"
|
|
|
|
|
app:argType="string"
|
|
|
|
|
app:nullable="true" />
|
2018-12-03 18:26:47 +00:00
|
|
|
</fragment>
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/mountDetailRecyclerFragment"
|
2020-07-28 10:31:36 +00:00
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.inventory.stable.MountDetailRecyclerFragment">
|
2018-12-03 18:26:47 +00:00
|
|
|
<argument
|
|
|
|
|
android:name="type"
|
|
|
|
|
app:argType="string" />
|
|
|
|
|
<argument
|
|
|
|
|
android:name="group"
|
|
|
|
|
app:argType="string" />
|
2019-10-01 17:55:52 +00:00
|
|
|
<argument
|
|
|
|
|
android:name="color"
|
|
|
|
|
app:argType="string"
|
|
|
|
|
app:nullable="true" />
|
2018-12-03 18:26:47 +00:00
|
|
|
</fragment>
|
2018-12-07 17:54:14 +00:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/challengeDetailFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.social.challenges.ChallengeDetailFragment"
|
2019-02-28 13:21:14 +00:00
|
|
|
android:label="@string/challenge">
|
|
|
|
|
<deepLink app:uri="habitica.com/challenges/{challengeID}" />
|
2018-12-07 17:54:14 +00:00
|
|
|
<argument
|
|
|
|
|
android:name="challengeID"
|
|
|
|
|
app:argType="string" />
|
|
|
|
|
</fragment>
|
2019-02-28 13:21:14 +00:00
|
|
|
<activity
|
|
|
|
|
android:id="@+id/fullProfileActivity"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.activities.FullProfileActivity"
|
|
|
|
|
android:label="FullProfileActivity">
|
|
|
|
|
<argument
|
|
|
|
|
android:name="userID"
|
|
|
|
|
app:argType="string" />
|
|
|
|
|
</activity>
|
2019-05-31 11:41:05 +00:00
|
|
|
<activity
|
|
|
|
|
android:id="@+id/guidelinesActivity"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.activities.GuidelinesActivity" />
|
2019-03-05 12:14:42 +00:00
|
|
|
<activity
|
|
|
|
|
android:id="@+id/groupFormActivity"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.activities.GroupFormActivity"
|
|
|
|
|
android:label="GroupFormActivity" />
|
2019-04-18 09:54:32 +00:00
|
|
|
<activity
|
|
|
|
|
android:id="@+id/classSelectionActivity"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.activities.ClassSelectionActivity"
|
|
|
|
|
android:label="ClassSelectionActivity" >
|
|
|
|
|
<argument
|
|
|
|
|
android:name="isInitialSelection"
|
|
|
|
|
app:argType="boolean"
|
|
|
|
|
android:defaultValue="false" />
|
|
|
|
|
<argument
|
|
|
|
|
android:name="className"
|
|
|
|
|
app:argType="string"
|
|
|
|
|
android:defaultValue="warrior" />
|
|
|
|
|
</activity>
|
|
|
|
|
<activity
|
|
|
|
|
android:id="@+id/reportMessageActivity"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.activities.ReportMessageActivity"
|
|
|
|
|
android:label="ReportMessageActivity" >
|
|
|
|
|
<argument
|
|
|
|
|
android:name="text"
|
|
|
|
|
app:argType="string" />
|
|
|
|
|
<argument
|
|
|
|
|
android:name="profileName"
|
|
|
|
|
app:argType="string" />
|
|
|
|
|
<argument
|
|
|
|
|
android:name="messageID"
|
|
|
|
|
app:argType="string" />
|
|
|
|
|
</activity>
|
|
|
|
|
<action
|
|
|
|
|
android:id="@+id/action_global_reportMessageActivity"
|
|
|
|
|
app:destination="@id/reportMessageActivity" />
|
|
|
|
|
<action
|
|
|
|
|
android:id="@+id/action_global_classSelectionActivity"
|
|
|
|
|
app:destination="@id/classSelectionActivity" />
|
2019-04-29 15:04:29 +00:00
|
|
|
<action
|
|
|
|
|
android:id="@+id/openProfileActivity"
|
|
|
|
|
app:destination="@id/fullProfileActivity" />
|
2019-05-27 11:21:25 +00:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/achievementsFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.AchievementsFragment"
|
|
|
|
|
android:label="@string/sidebar_achievements" >
|
|
|
|
|
<argument
|
|
|
|
|
android:name="userID"
|
|
|
|
|
app:argType="string"
|
|
|
|
|
app:nullable="true" />
|
|
|
|
|
</fragment>
|
2020-02-14 17:31:56 +00:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/marketFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.inventory.shops.MarketFragment"
|
|
|
|
|
android:label="@string/market" />
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/questShopFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.inventory.shops.QuestShopFragment"
|
|
|
|
|
android:label="@string/questShop" />
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/seasonalShopFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.inventory.shops.SeasonalShopFragment"
|
|
|
|
|
android:label="@string/seasonalShop" />
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/timeTravelersShopFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.inventory.shops.TimeTravelersShopFragment"
|
|
|
|
|
android:label="@string/timeTravelers" />
|
2020-03-18 14:18:59 +00:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/supportMainFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.support.SupportMainFragment"
|
2020-03-18 14:33:40 +00:00
|
|
|
android:label="@string/support" >
|
2020-03-18 14:18:59 +00:00
|
|
|
<action
|
|
|
|
|
android:id="@+id/showFAQFragment"
|
|
|
|
|
app:destination="@id/FAQOverviewFragment" />
|
|
|
|
|
</fragment>
|
|
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/bugFixFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.support.BugFixFragment"
|
2020-03-18 14:33:40 +00:00
|
|
|
android:label="@string/bugs_fixes" />
|
2020-06-10 14:33:17 +00:00
|
|
|
<activity
|
|
|
|
|
android:id="@+id/adventureGuideActivity"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.activities.AdventureGuideActivity"
|
|
|
|
|
android:label="" />
|
2020-09-01 10:53:46 +00:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/promoInfoFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.PromoInfoFragment"
|
2020-09-15 07:28:34 +00:00
|
|
|
android:label="" />
|
2021-01-27 14:19:34 +00:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/teamBoardFragment"
|
|
|
|
|
android:name="com.habitrpg.android.habitica.ui.fragments.tasks.TeamBoardFragment"
|
|
|
|
|
android:label="TeamBoardFragment" >
|
|
|
|
|
<argument
|
|
|
|
|
android:name="teamID"
|
|
|
|
|
app:argType="string" />
|
|
|
|
|
</fragment>
|
2018-12-03 18:26:47 +00:00
|
|
|
</navigation>
|