Initial commit: TetriStats Application with score tracking, conversion, and statistics for multiple Tetris games

This commit is contained in:
cmclark00 2025-03-20 01:14:21 -04:00
commit ca8b4fd77b
78 changed files with 2587 additions and 0 deletions

View file

@ -0,0 +1,25 @@
<?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/mobile_navigation"
app:startDestination="@+id/navigation_entry">
<fragment
android:id="@+id/navigation_entry"
android:name="com.accidentalproductions.tetristats.ui.entry.EntryFragment"
android:label="Enter Score"
tools:layout="@layout/fragment_entry" />
<fragment
android:id="@+id/navigation_history"
android:name="com.accidentalproductions.tetristats.ui.history.HistoryFragment"
android:label="Score History"
tools:layout="@layout/fragment_history" />
<fragment
android:id="@+id/navigation_stats"
android:name="com.accidentalproductions.tetristats.ui.stats.StatsFragment"
android:label="Statistics"
tools:layout="@layout/fragment_stats" />
</navigation>