Skip to content

Commit

Permalink
Merge pull request #6 from Kurgat094/features/familyplanning
Browse files Browse the repository at this point in the history
Family planning form
  • Loading branch information
DavidSaruni authored Jan 22, 2025
2 parents 8ea68ba + 0d8e6ae commit 845bf4c
Show file tree
Hide file tree
Showing 84 changed files with 5,822 additions and 129 deletions.
26 changes: 26 additions & 0 deletions .idea/appInsightsSettings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.6.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
implementation 'androidx.compose.ui:ui-desktop:1.7.0'
implementation 'androidx.activity:activity:1.9.3'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
Expand All @@ -84,8 +86,8 @@ dependencies {
/*FHIR */
// implementation("com.google.android.fhir:engine:0.1.0-beta02")
implementation("com.google.android.fhir:engine:0.1.0-beta01")
implementation("com.google.android.fhir:data-capture:0.1.0-beta05")
// implementation("com.google.android.fhir:data-capture:1.0.0")
// implementation("com.google.android.fhir:data-capture:0.1.0-beta05")
implementation("com.google.android.fhir:data-capture:1.0.0")
// implementation("com.google.android.fhir:data-capture:0.1.0-beta03")
// implementation 'ca.uhn.hapi.fhir:hapi-fhir-client:5.6.2'

Expand Down
27 changes: 27 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,33 @@
android:usesCleartextTraffic="true"
android:windowSoftInputMode="adjustPan"
tools:replace="android:allowBackup">
<activity
android:name=".pnc.ChildViewActivity"
android:exported="false" />
<activity
android:name=".pnc.inactivated_polio_vaccine.InactivatedPolioVaccineView"
android:exported="false" />
<activity
android:name=".pnc.inactivated_polio_vaccine.InactivatedPolioVaccine"
android:exported="false" />
<activity
android:name=".pnc.inactivated_polio_vaccine.InactivatedPolioVaccineEdit"
android:exported="false" />
<activity
android:name=".pnc.child_civil_registration.ChildCivilRegistrationView"
android:exported="false" />
<activity
android:name=".pnc.child_civil_registration.ChildCivilRegistration"
android:exported="false" />
<activity
android:name=".pnc.child_civil_registration.ChildCivilRegistrationEdit"
android:exported="false" />
<activity
android:name=".pnc.child_civil_registration.CivilRegistrationDetails"
android:exported="false"/>
<activity
android:name=".pnc.ChildEdit"
android:exported="false" />
<activity
android:name=".pnc.ChildAdd"
android:exported="false" />
Expand Down
Loading

0 comments on commit 845bf4c

Please sign in to comment.