Skip to content

Commit

Permalink
Merge pull request #111 from google/jt/update-readme
Browse files Browse the repository at this point in the history
Update README.md with project status
  • Loading branch information
jingtang10 committed Nov 5, 2020
2 parents d9dbd59 + 0608dcf commit 244b2a5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions README.md
@@ -1,7 +1,9 @@
# fhir-engine
# Android FHIR SDK (WIP)

FHIR Engine is an Android library that manages FHIR resources natively on Android. It also supports
the evaluation of CQL using [cql-engine](https://github.com/DBCG/cql_engine).
Android FHIR SDK is an Android library that manages FHIR resources natively on Android. It also
supports the evaluation of CQL using [cql-engine](https://github.com/DBCG/cql_engine).

**This is a prototype for developers ONLY and is NOT production-ready. Do NOT use in production.**

## Usage

Expand Down
Expand Up @@ -79,7 +79,7 @@ class PatientListActivity : AppCompatActivity() {
}

// Click handler to help display the details about the patients from the list.
private fun onPatientItemClicked(patientItem: PatientListViewModel.PatientItem): Unit {
private fun onPatientItemClicked(patientItem: PatientListViewModel.PatientItem) {
val intent = Intent(this.applicationContext,
PatientDetailActivity::class.java).apply {
putExtra(PatientDetailFragment.ARG_ITEM_ID, patientItem.id)
Expand Down

0 comments on commit 244b2a5

Please sign in to comment.