Rename project

This commit is contained in:
2022-12-06 23:02:29 -04:00
parent 9d4da6a410
commit 71f1309ba2
16 changed files with 26 additions and 28 deletions

View File

@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ui.completed.CompletedFragment">
tools:context="ca.unb.lantau.ui.completed.CompletedFragment">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/compressed_recycler_view"

View File

@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ui.settings.SettingsFragment">
tools:context="ca.unb.lantau.ui.settings.SettingsFragment">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/compressing_recycler_view"

View File

@ -3,7 +3,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ui.settings.SettingsFragment">
tools:context="ca.unb.lantau.ui.settings.SettingsFragment">
<ScrollView
android:layout_width="match_parent"

View File

@ -8,19 +8,19 @@
<fragment
android:id="@+id/navigation_completed"
android:name="com.example.myapplication.ui.completed.CompletedFragment"
android:name="ca.unb.lantau.ui.completed.CompletedFragment"
android:label="@string/title_completed"
tools:layout="@layout/fragment_completed" />
<fragment
android:id="@+id/navigation_compressing"
android:name="com.example.myapplication.ui.compressing.CompressingFragment"
android:name="ca.unb.lantau.ui.compressing.CompressingFragment"
android:label="@string/title_compressing"
tools:layout="@layout/fragment_compressing" />
<fragment
android:id="@+id/navigation_settings"
android:name="com.example.myapplication.ui.settings.SettingsFragment"
android:name="ca.unb.lantau.ui.settings.SettingsFragment"
android:label="@string/title_settings"
tools:layout="@layout/fragment_settings" />