Skip to content

Commit

Permalink
Merge pull request #1974 from dhis2/androsdk-1692
Browse files Browse the repository at this point in the history
fix: [ANDROSDK-1692] Remove analytics settings with missing visualizations
  • Loading branch information
vgarciabnz authored Jun 9, 2023
2 parents 125da2d + 2038303 commit 715f6e7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions core/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
# Properties which are consumed by plugins/gradle-mvn-push.gradle plugin.
# They are used for publishing artifact to snapshot repository.

VERSION_NAME=1.8.1
VERSION_CODE=281
VERSION_NAME=1.8.1.1
VERSION_CODE=282

GROUP=org.hisp.dhis

Expand Down
3 changes: 3 additions & 0 deletions core/src/main/assets/migrations/147.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Missing Visualization (ANDROSDK-1692)

DELETE FROM AnalyticsDhisVisualization where uid NOT IN (SELECT uid FROM Visualization);
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

class BaseDatabaseOpenHelper {

static final int VERSION = 146;
static final int VERSION = 147;

private final AssetManager assetManager;
private final int targetVersion;
Expand Down
2 changes: 1 addition & 1 deletion 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.8.1"
implementation "org.hisp.dhis:android-core:1.8.1.1"
...
}
```
Expand Down

0 comments on commit 715f6e7

Please sign in to comment.