Skip to content

Commit

Permalink
Bump version to 5.43.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-signal committed Jul 11, 2022
1 parent 088ce00 commit efb8236
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Expand Up @@ -57,8 +57,8 @@ ktlint {
version = "0.43.2"
}

def canonicalVersionCode = 1085
def canonicalVersionName = "5.42.7"
def canonicalVersionCode = 1086
def canonicalVersionName = "5.43.0"

def postFixSize = 100
def abiPostFix = ['universal' : 0,
Expand Down
Expand Up @@ -874,7 +874,6 @@ public Single<ServiceResponse<IdentityCheckResponse>> performIdentityCheck(@Nonn
Single<ServiceResponse<IdentityCheckResponse>> requestSingle = Single.fromCallable(() -> {
Response response = getServiceConnection(PROFILE_BATCH_CHECK_PATH, "POST", jsonRequestBody(JsonUtil.toJson(request)), Collections.emptyMap(), unidentifiedAccess, false);
String body = response.body() != null ? response.body().string() : "";
Log.e("CODY", "body: " + body);
return responseMapper.map(response.code(), body, response::header, unidentifiedAccess.isPresent());
});

Expand Down

0 comments on commit efb8236

Please sign in to comment.