Initial version uploaded to Play Store.

This commit is contained in:
2021-10-04 22:26:51 +01:00
parent ea0d6d5fa6
commit 00e7a7f392
40 changed files with 1302 additions and 793 deletions

View File

@@ -0,0 +1,41 @@
<?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"
android:id="@+id/nav_graph"
app:startDestination="@id/WelcomeFragment">
<fragment
android:id="@+id/WelcomeFragment"
android:name="org.vostan.banvor.WelcomeFragment"
android:label="@string/welcome_fragment_label"
tools:layout="@layout/fragment_welcome">
<action
android:id="@+id/action_WelcomeFragment_to_PuzzleListFragment"
app:destination="@id/PuzzleListFragment"
app:enterAnim="@anim/nav_default_enter_anim"
app:exitAnim="@anim/nav_default_exit_anim" />
<action
android:id="@+id/action_WelcomeFragment_to_PuzzleBoardFragment"
app:destination="@id/PuzzleBoardFragment" />
</fragment>
<fragment
android:id="@+id/PuzzleListFragment"
android:name="org.vostan.banvor.PuzzleListFragment"
android:label="fragment_puzzle_list"
tools:layout="@layout/fragment_puzzle_list">
<action
android:id="@+id/action_PuzzleListFragment_to_PuzzleBoardFragment"
app:destination="@id/PuzzleBoardFragment" />
</fragment>
<fragment
android:id="@+id/PuzzleBoardFragment"
android:name="org.vostan.banvor.PuzzleBoardFragment"
android:label="fragment_puzzle_board"
tools:layout="@layout/fragment_puzzle_board" >
<argument
android:name="level"
app:argType="integer"
android:defaultValue="1" />
</fragment>
</navigation>