Skip to content

Commit c88ddba

Browse files
authored
[NO TICKET] Updates for SDK v0.4.0 (#5)
* Updates for sdk v040 * Updated gradle dependency version in README
1 parent 41eb4fe commit c88ddba

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.idea/codeStyles/Project.xml

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ This quick start guide is geared towards participants in our closed beta program
1616
The CommonHealth Client SDK consists of two modules: commonhealthclient and common. Commonhealthclient contains the bulk of functionality for the SDK, while common types shared between the CommonHealth application and the CommonHealth Client SDK. You'll need to add the following to your application's list of dependencies:
1717

1818
```
19-
implementation "org.thecommonsproject.commonhealth:common:0.3.0"
20-
implementation "org.thecommonsproject.commonhealth:commonhealthclient:0.3.0"
19+
implementation "org.thecommonsproject.commonhealth:common:0.4.0"
20+
implementation "org.thecommonsproject.commonhealth:commonhealthclient:0.4.0"
2121
```
2222

2323
The artifacts currently reside in our organization's bintray repo, but at some point these will be migrated to jcenter. In the mean time, you'll need to add the following maven repository to your list of repositories, typically defined in the project's `gradle.build` file:
@@ -282,6 +282,9 @@ See `ResourceListFragment` for an example implementation of the data query build
282282

283283
Registering with CommonHealth is not required to begin testing integrations with CommonHealth. However, if you have a client application that you would like to use in production environments, you'll need to register the application with CommonHealth. This is similar to registering an OAuth client, where you would specify information such as required scope, authorization redirect URI, etc. Please reach out to info [at] commonhealth.org for more information.
284284

285+
## Upgrading from v0.3.0 to v0.4.0
286+
No functional changes to the API were introduced in `v0.4.0`.
287+
285288
## Upgrading from v0.2.0 to v0.3.0
286289
`v0.3.0` introduced a number of changes:
287290

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ ext {
3737

3838
// Sdk and tools
3939
// Support library and architecture components support minSdk 14 and above.
40-
minSdkVersion = 23
40+
minSdkVersion = 24
4141
targetSdkVersion = 28
4242
compileSdkVersion = 28
4343

44-
commonHealthVersion = '0.3.0'
44+
commonHealthVersion = '0.4.0'
4545

4646
appCompatVersion = '1.1.0'
4747
androidXVersion = '1.1.0'

0 commit comments

Comments
 (0)