diff --git a/.gradle/9.3.1/executionHistory/executionHistory.bin b/.gradle/9.3.1/executionHistory/executionHistory.bin index 8189b0a..34d6ef5 100644 Binary files a/.gradle/9.3.1/executionHistory/executionHistory.bin and b/.gradle/9.3.1/executionHistory/executionHistory.bin differ diff --git a/.gradle/9.3.1/executionHistory/executionHistory.lock b/.gradle/9.3.1/executionHistory/executionHistory.lock index 5791ba0..a4d92cb 100644 Binary files a/.gradle/9.3.1/executionHistory/executionHistory.lock and b/.gradle/9.3.1/executionHistory/executionHistory.lock differ diff --git a/.gradle/9.3.1/fileHashes/fileHashes.bin b/.gradle/9.3.1/fileHashes/fileHashes.bin index 547884d..5b3593c 100644 Binary files a/.gradle/9.3.1/fileHashes/fileHashes.bin and b/.gradle/9.3.1/fileHashes/fileHashes.bin differ diff --git a/.gradle/9.3.1/fileHashes/fileHashes.lock b/.gradle/9.3.1/fileHashes/fileHashes.lock index 70288d2..c707c88 100644 Binary files a/.gradle/9.3.1/fileHashes/fileHashes.lock and b/.gradle/9.3.1/fileHashes/fileHashes.lock differ diff --git a/.gradle/9.3.1/fileHashes/resourceHashesCache.bin b/.gradle/9.3.1/fileHashes/resourceHashesCache.bin index 6339601..a1946a7 100644 Binary files a/.gradle/9.3.1/fileHashes/resourceHashesCache.bin and b/.gradle/9.3.1/fileHashes/resourceHashesCache.bin differ diff --git a/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/.gradle/buildOutputCleanup/buildOutputCleanup.lock index 9c58bcd..d4b059c 100644 Binary files a/.gradle/buildOutputCleanup/buildOutputCleanup.lock and b/.gradle/buildOutputCleanup/buildOutputCleanup.lock differ diff --git a/app/build/generated/data_binding_base_class_source_out/debug/out/com/example/cuida/databinding/FragmentMedicationBinding.java b/app/build/generated/data_binding_base_class_source_out/debug/out/com/example/cuida/databinding/FragmentMedicationBinding.java index 4b630b7..51f67b2 100644 --- a/app/build/generated/data_binding_base_class_source_out/debug/out/com/example/cuida/databinding/FragmentMedicationBinding.java +++ b/app/build/generated/data_binding_base_class_source_out/debug/out/com/example/cuida/databinding/FragmentMedicationBinding.java @@ -27,15 +27,19 @@ public final class FragmentMedicationBinding implements ViewBinding { @NonNull public final RecyclerView recyclerMedication; + @NonNull + public final TextView textEmptyMedications; + @NonNull public final TextView textTitle; private FragmentMedicationBinding(@NonNull ConstraintLayout rootView, @NonNull FloatingActionButton fabAddMedication, @NonNull RecyclerView recyclerMedication, - @NonNull TextView textTitle) { + @NonNull TextView textEmptyMedications, @NonNull TextView textTitle) { this.rootView = rootView; this.fabAddMedication = fabAddMedication; this.recyclerMedication = recyclerMedication; + this.textEmptyMedications = textEmptyMedications; this.textTitle = textTitle; } @@ -78,6 +82,12 @@ public final class FragmentMedicationBinding implements ViewBinding { break missingId; } + id = R.id.text_empty_medications; + TextView textEmptyMedications = ViewBindings.findChildViewById(rootView, id); + if (textEmptyMedications == null) { + break missingId; + } + id = R.id.text_title; TextView textTitle = ViewBindings.findChildViewById(rootView, id); if (textTitle == null) { @@ -85,7 +95,7 @@ public final class FragmentMedicationBinding implements ViewBinding { } return new FragmentMedicationBinding((ConstraintLayout) rootView, fabAddMedication, - recyclerMedication, textTitle); + recyclerMedication, textEmptyMedications, textTitle); } String missingId = rootView.getResources().getResourceName(id); throw new NullPointerException("Missing required view with ID: ".concat(missingId)); diff --git a/app/build/generated/data_binding_base_class_source_out/debug/out/com/example/cuida/databinding/FragmentScheduleAppointmentBinding.java b/app/build/generated/data_binding_base_class_source_out/debug/out/com/example/cuida/databinding/FragmentScheduleAppointmentBinding.java index 92e2f07..3e5c054 100644 --- a/app/build/generated/data_binding_base_class_source_out/debug/out/com/example/cuida/databinding/FragmentScheduleAppointmentBinding.java +++ b/app/build/generated/data_binding_base_class_source_out/debug/out/com/example/cuida/databinding/FragmentScheduleAppointmentBinding.java @@ -4,6 +4,7 @@ package com.example.cuida.databinding; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; +import android.widget.AutoCompleteTextView; import android.widget.Button; import android.widget.DatePicker; import android.widget.LinearLayout; @@ -34,14 +35,19 @@ public final class FragmentScheduleAppointmentBinding implements ViewBinding { @NonNull public final RecyclerView recyclerTimeSlots; + @NonNull + public final AutoCompleteTextView spinnerDoctor; + private FragmentScheduleAppointmentBinding(@NonNull LinearLayout rootView, @NonNull Button btnConfirmAppointment, @NonNull DatePicker datePicker, - @NonNull TextInputEditText editReason, @NonNull RecyclerView recyclerTimeSlots) { + @NonNull TextInputEditText editReason, @NonNull RecyclerView recyclerTimeSlots, + @NonNull AutoCompleteTextView spinnerDoctor) { this.rootView = rootView; this.btnConfirmAppointment = btnConfirmAppointment; this.datePicker = datePicker; this.editReason = editReason; this.recyclerTimeSlots = recyclerTimeSlots; + this.spinnerDoctor = spinnerDoctor; } @Override @@ -95,8 +101,14 @@ public final class FragmentScheduleAppointmentBinding implements ViewBinding { break missingId; } + id = R.id.spinner_doctor; + AutoCompleteTextView spinnerDoctor = ViewBindings.findChildViewById(rootView, id); + if (spinnerDoctor == null) { + break missingId; + } + return new FragmentScheduleAppointmentBinding((LinearLayout) rootView, btnConfirmAppointment, - datePicker, editReason, recyclerTimeSlots); + datePicker, editReason, recyclerTimeSlots, spinnerDoctor); } String missingId = rootView.getResources().getResourceName(id); throw new NullPointerException("Missing required view with ID: ".concat(missingId)); diff --git a/app/build/intermediates/apk/debug/app-debug.apk b/app/build/intermediates/apk/debug/app-debug.apk deleted file mode 100644 index 8cb6dd2..0000000 Binary files a/app/build/intermediates/apk/debug/app-debug.apk and /dev/null differ diff --git a/app/build/intermediates/apk/debug/output-metadata.json b/app/build/intermediates/apk/debug/output-metadata.json deleted file mode 100644 index 8e19f53..0000000 --- a/app/build/intermediates/apk/debug/output-metadata.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "version": 3, - "artifactType": { - "type": "APK", - "kind": "Directory" - }, - "applicationId": "com.example.cuida", - "variantName": "debug", - "elements": [ - { - "type": "SINGLE", - "filters": [], - "attributes": [], - "versionCode": 1, - "versionName": "1.0", - "outputFile": "app-debug.apk" - } - ], - "elementType": "File", - "minSdkVersionForDexing": 24 -} \ No newline at end of file diff --git a/app/build/intermediates/apk_ide_redirect_file/debug/createDebugApkListingFileRedirect/redirect.txt b/app/build/intermediates/apk_ide_redirect_file/debug/createDebugApkListingFileRedirect/redirect.txt index 54b8921..8ed2aa0 100644 --- a/app/build/intermediates/apk_ide_redirect_file/debug/createDebugApkListingFileRedirect/redirect.txt +++ b/app/build/intermediates/apk_ide_redirect_file/debug/createDebugApkListingFileRedirect/redirect.txt @@ -1,2 +1,2 @@ #- File Locator - -listingFile=../../../apk/debug/output-metadata.json +listingFile=../../../../outputs/apk/debug/output-metadata.json diff --git a/app/build/intermediates/compile_and_runtime_r_class_jar/debug/processDebugResources/R.jar b/app/build/intermediates/compile_and_runtime_r_class_jar/debug/processDebugResources/R.jar index 021874f..9f3e82e 100644 Binary files a/app/build/intermediates/compile_and_runtime_r_class_jar/debug/processDebugResources/R.jar and b/app/build/intermediates/compile_and_runtime_r_class_jar/debug/processDebugResources/R.jar differ diff --git a/app/build/intermediates/data_binding_base_class_log_artifact/debug/dataBindingGenBaseClassesDebug/out/com.example.cuida-binding_classes.json b/app/build/intermediates/data_binding_base_class_log_artifact/debug/dataBindingGenBaseClassesDebug/out/com.example.cuida-binding_classes.json index bfe93db..455e72b 100644 Binary files a/app/build/intermediates/data_binding_base_class_log_artifact/debug/dataBindingGenBaseClassesDebug/out/com.example.cuida-binding_classes.json and b/app/build/intermediates/data_binding_base_class_log_artifact/debug/dataBindingGenBaseClassesDebug/out/com.example.cuida-binding_classes.json differ diff --git a/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_home-layout.xml b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_home-layout.xml index 951119a..db5e0ca 100644 --- a/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_home-layout.xml +++ b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_home-layout.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_medication-layout.xml b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_medication-layout.xml index a176f6a..fda8f50 100644 --- a/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_medication-layout.xml +++ b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_medication-layout.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_profile-layout.xml b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_profile-layout.xml index fe19e40..0aca893 100644 --- a/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_profile-layout.xml +++ b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_profile-layout.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_schedule_appointment-layout.xml b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_schedule_appointment-layout.xml index 49b4bd3..5efecfe 100644 --- a/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_schedule_appointment-layout.xml +++ b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/fragment_schedule_appointment-layout.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/item_appointment-layout.xml b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/item_appointment-layout.xml index f312328..f2aae81 100644 --- a/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/item_appointment-layout.xml +++ b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/item_appointment-layout.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/item_medication-layout.xml b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/item_medication-layout.xml index 5f192ff..a0ed262 100644 --- a/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/item_medication-layout.xml +++ b/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/item_medication-layout.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_home-layout.xml b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_home-layout.xml index 951119a..db5e0ca 100644 --- a/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_home-layout.xml +++ b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_home-layout.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_medication-layout.xml b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_medication-layout.xml index a176f6a..fda8f50 100644 --- a/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_medication-layout.xml +++ b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_medication-layout.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_profile-layout.xml b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_profile-layout.xml index fe19e40..0aca893 100644 --- a/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_profile-layout.xml +++ b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_profile-layout.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_schedule_appointment-layout.xml b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_schedule_appointment-layout.xml index 49b4bd3..5efecfe 100644 --- a/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_schedule_appointment-layout.xml +++ b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/fragment_schedule_appointment-layout.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/item_appointment-layout.xml b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/item_appointment-layout.xml index f312328..f2aae81 100644 --- a/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/item_appointment-layout.xml +++ b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/item_appointment-layout.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/item_medication-layout.xml b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/item_medication-layout.xml index 5f192ff..a0ed262 100644 --- a/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/item_medication-layout.xml +++ b/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/item_medication-layout.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex index efd7d77..ac15df5 100644 Binary files a/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/1/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/1/classes.dex index 0251d22..03db338 100644 Binary files a/app/build/intermediates/dex/debug/mergeProjectDexDebug/1/classes.dex and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/1/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/10/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/10/classes.dex index 67e8891..cb2e4dd 100644 Binary files a/app/build/intermediates/dex/debug/mergeProjectDexDebug/10/classes.dex and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/10/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex index dfaea7d..db4fbf4 100644 Binary files a/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/4/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/4/classes.dex index 31cf3f8..5d476dc 100644 Binary files a/app/build/intermediates/dex/debug/mergeProjectDexDebug/4/classes.dex and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/4/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex index 2db0045..dfd2a85 100644 Binary files a/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/6/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/6/classes.dex index bb69922..4938d8d 100644 Binary files a/app/build/intermediates/dex/debug/mergeProjectDexDebug/6/classes.dex and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/6/classes.dex differ diff --git a/app/build/intermediates/dex_archive_input_jar_hashes/debug/dexBuilderDebug/out b/app/build/intermediates/dex_archive_input_jar_hashes/debug/dexBuilderDebug/out index e576a00..619204d 100644 Binary files a/app/build/intermediates/dex_archive_input_jar_hashes/debug/dexBuilderDebug/out and b/app/build/intermediates/dex_archive_input_jar_hashes/debug/dexBuilderDebug/out differ diff --git a/app/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json b/app/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json index f62bbc1..8d69cfb 100644 Binary files a/app/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json and b/app/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json differ diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties b/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties index c752df2..dd1037c 100644 --- a/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties @@ -1,4 +1,4 @@ -#Wed Mar 11 09:14:23 WET 2026 +#Wed Mar 11 10:13:14 WET 2026 com.example.cuida.app-main-56\:/drawable-v26/ic_launcher_final.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable-v26_ic_launcher_final.xml.flat com.example.cuida.app-main-56\:/drawable/btn_outline_error.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_btn_outline_error.xml.flat com.example.cuida.app-main-56\:/drawable/btn_outline_primary.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_btn_outline_primary.xml.flat diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/fragment_schedule_appointment.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/fragment_schedule_appointment.xml new file mode 100644 index 0000000..02924c3 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/fragment_schedule_appointment.xml @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + +