Skip to content

Commit

Permalink
HAPP-1904
Browse files Browse the repository at this point in the history
- updated login error text
- updated target SDK version to 34
- updated play core SDK version to support android 34
- fixed issue of quick link tile after deleting all data from app.
- fixed enter vaccination information screen navigation.
  • Loading branch information
PINAKIN-KANSARA-EY committed Jul 11, 2024
1 parent 46033a9 commit f5161d6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 22 deletions.
21 changes: 20 additions & 1 deletion app/src/main/res/navigation/health_pass.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,29 @@
<action
android:id="@+id/action_addCardOptionFragment_to_onBoardingFragment"
app:destination="@id/onBoardingFragment" />

<action
android:id="@+id/action_addCardOptionFragment_to_fetchVaccineRecord"
app:destination="@id/fetchVaccineRecordFragment" />
</fragment>

<fragment
android:id="@+id/fetchVaccineRecordFragment"
android:name="ca.bc.gov.bchealth.ui.healthpass.add.FetchVaccineRecordFragment"
tools:layout="@layout/fragment_fetch_vaccine_record">
<action
android:id="@+id/action_fetchVaccineRecordFragment_to_vaccineRecordDetailFragment"
app:destination="@id/vaccineRecordDetailFragment" />
</fragment>

<fragment
android:id="@+id/vaccineRecordDetailFragment"
android:name="ca.bc.gov.bchealth.ui.healthrecord.vaccine.VaccineRecordDetailFragment"
android:label="fragment_vaccine_record_detail"
tools:layout="@layout/fragment_vaccine_record_detail">
<argument
android:name="patientId"
app:argType="long" />
</fragment>
<dialog
android:id="@+id/expandQRFragment"
android:name="ca.bc.gov.bchealth.ui.healthpass.ExpandQRFragment"
Expand Down
22 changes: 1 addition & 21 deletions app/src/main/res/navigation/health_records.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@
android:id="@+id/healthRecordFragment"
android:name="ca.bc.gov.bchealth.ui.healthrecord.HealthRecordFragment"
android:label="HealthRecordFragment" >
<action
android:id="@+id/action_healthRecordFragment_to_vaccineRecordDetailFragment"
app:destination="@id/vaccineRecordDetailFragment" />

<action
android:id="@+id/action_healthRecordFragment_to_medicationDetailFragment"
app:destination="@id/medicationDetailsFragment" />
Expand Down Expand Up @@ -53,24 +51,6 @@
android:label="AddHealthRecordsFragment"
tools:layout="@layout/scene_health_records_add" />

<fragment
android:id="@+id/fetchVaccineRecordFragment"
android:name="ca.bc.gov.bchealth.ui.healthpass.add.FetchVaccineRecordFragment"
tools:layout="@layout/fragment_fetch_vaccine_record">
<action
android:id="@+id/action_fetchVaccineRecordFragment_to_vaccineRecordDetailFragment"
app:destination="@id/vaccineRecordDetailFragment" />
</fragment>

<fragment
android:id="@+id/vaccineRecordDetailFragment"
android:name="ca.bc.gov.bchealth.ui.healthrecord.vaccine.VaccineRecordDetailFragment"
android:label="fragment_vaccine_record_detail"
tools:layout="@layout/fragment_vaccine_record_detail">
<argument
android:name="patientId"
app:argType="long" />
</fragment>
<fragment
android:id="@+id/medicationDetailsFragment"
android:name="ca.bc.gov.bchealth.ui.healthrecord.medication.MedicationDetailsFragment"
Expand Down

0 comments on commit f5161d6

Please sign in to comment.