Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: [ANDROSDK-1942] update docs with new version #2246

Merged
merged 2 commits into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 14 additions & 13 deletions docs/content/developer/compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@

Compatibility table between DHIS2 Android SDK library, DHIS2 core and Android SDK API.

| SDK | DHIS2 core | Android SDK | Rule engine |
|--------|--------------|-|-|
| 1.10.X | 2.30 -> 2.41 | 21 - 34 | 2.0.47 - 2.0.48 |
| 1.9.X | 2.30 -> 2.40 | 21 - 34 | 2.0.47 - 2.0.48 |
| 1.8.X | 2.30 -> 2.40 | 21 - 33 | 2.0.47 - 2.0.48 |
| 1.7.X | 2.30 -> 2.39 | 21 - 31 | 2.0.42 - 2.0.43 |
| 1.6.X | 2.30 -> 2.38 | 21 - 31 | 2.0.34 - 2.0.35 |
| 1.5.X | 2.29 -> 2.37 | 19 - 29 | 2.0.25 - 2.0.27 |
| 1.4.X | 2.29 -> 2.36 | 19 - 29 | 2.0.17 - 2.0.20 |
| 1.3.X | 2.29 -> 2.35 | 19 - 29 | 2.0.10 - 2.0.15 |
| 1.2.X | 2.29 -> 2.34 | 19 - 28 | - |
| 1.1.X | 2.29 -> 2.34 | 19 - 28 | - |
| 1.0.X | 2.29 -> 2.33 | 19 - 28 | - |
| SDK | DHIS2 core | Android SDK | Rule engine |
|--------|--------------|-------------|-----------------|
| 1.11.X | 2.30 -> 2.41 | 21 - 34 | 2.0.47 - 2.0.48 |
| 1.10.X | 2.30 -> 2.41 | 21 - 34 | 2.0.47 - 2.0.48 |
| 1.9.X | 2.30 -> 2.40 | 21 - 34 | 2.0.47 - 2.0.48 |
| 1.8.X | 2.30 -> 2.40 | 21 - 33 | 2.0.47 - 2.0.48 |
| 1.7.X | 2.30 -> 2.39 | 21 - 31 | 2.0.42 - 2.0.43 |
| 1.6.X | 2.30 -> 2.38 | 21 - 31 | 2.0.34 - 2.0.35 |
| 1.5.X | 2.29 -> 2.37 | 19 - 29 | 2.0.25 - 2.0.27 |
| 1.4.X | 2.29 -> 2.36 | 19 - 29 | 2.0.17 - 2.0.20 |
| 1.3.X | 2.29 -> 2.35 | 19 - 29 | 2.0.10 - 2.0.15 |
| 1.2.X | 2.29 -> 2.34 | 19 - 28 | - |
| 1.1.X | 2.29 -> 2.34 | 19 - 28 | - |
| 1.0.X | 2.29 -> 2.33 | 19 - 28 | - |
4 changes: 1 addition & 3 deletions docs/content/developer/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Include dependency in build.gradle.

```gradle
dependencies {
implementation "org.hisp.dhis:android-core:1.10.1"
implementation "org.hisp.dhis:android-core:1.11.0"
...
}
```
Expand All @@ -26,8 +26,6 @@ Check [compatibility here](#android_sdk_compatibility).

## D2 initialization { #android_sdk_initialization }

<!--TODO-->

In order to start using the SDK, the first step is to initialize a `D2` object. The helper class `D2Manager` offers static methods to setup and initialize the `D2` instance. Also, it ensures that `D2` is a singleton across the application.

The minimum configuration that needs to be passed to the `D2Manager` is the following:
Expand Down