Skip to content

Commit

Permalink
release 0.2.43
Browse files Browse the repository at this point in the history
  • Loading branch information
bennsimon committed Nov 20, 2020
1 parent fe32004 commit 5706088
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions opensrp-giz-malawi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ android {
applicationId "org.smartregister.giz"
minSdkVersion androidMinSdkVersion
targetSdkVersion androidTargetSdkVersion
versionCode 32
versionName "0.2.41"
versionCode 33
versionName "0.2.43"
multiDexEnabled true
buildConfigField "long", "MAX_SERVER_TIME_DIFFERENCE", "1800000l"
buildConfigField "boolean", "TIME_CHECK", "false"
Expand Down Expand Up @@ -210,6 +210,7 @@ android {
packagingOptions {
exclude 'META-INF/LICENSE.md'
exclude 'META-INF/NOTICE.md'
exclude 'META-INF/DEPENDENCIES'
exclude 'hl7/fhir/core/package/StructureDefinition-de-CoverageEligibilityResponse.contained.json'
}

Expand Down Expand Up @@ -278,7 +279,7 @@ dependencies {
exclude group: 'io.ona.rdt-capture', module: 'lib'
}

api('org.smartregister:opensrp-client-core:2.2.5-SNAPSHOT@aar') {
api('org.smartregister:opensrp-client-core:3.2.1-v2-SNAPSHOT@aar') {
transitive = true
exclude group: 'id.zelory', module: 'compressor'
exclude group: 'com.github.bmelnychuk', module: 'atv'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
public class HIA2ReportsActivity extends AppCompatActivity {

public static final int REQUEST_CODE_GET_JSON = 3432;
public static final int MONTH_SUGGESTION_LIMIT = 12;
public static final int MONTH_SUGGESTION_LIMIT = 9;
public static final String FORM_KEY_CONFIRM = "confirm";
public static final DateFormat yyyyMMdd = new SimpleDateFormat("yyyy-MM-dd", Locale.ENGLISH);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,6 @@ public void onRegistrationSaved(boolean isEdit) {

@Override
public void registerViewConfigurations(List<String> viewIdentifiers) {
//Do nothing
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@ public void onRegistrationSaved(boolean isEdit) {

@Override
public void registerViewConfigurations(List<String> viewIdentifiers) {
//Do nothing
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ public void processClient(List<EventClient> eventClients) throws Exception {
if (eventType == null) {
continue;
}
long timeInMillis = System.currentTimeMillis();

if (eventType.equals(VaccineIntentService.EVENT_TYPE) || eventType
.equals(VaccineIntentService.EVENT_TYPE_OUT_OF_CATCHMENT)) {
Expand Down Expand Up @@ -204,7 +203,6 @@ public void processClient(List<EventClient> eventClients) throws Exception {
Timber.e(ex);
}
}
Timber.e("%s - time %s", eventType, (System.currentTimeMillis() - timeInMillis));
}

// Unsync events that are should not be in this device
Expand Down

0 comments on commit 5706088

Please sign in to comment.