From f93ec0372e2f3e569f563fdfb05ba4cf70cdec4c Mon Sep 17 00:00:00 2001 From: Sergejs Luhmirins Date: Wed, 13 Dec 2023 09:39:21 +0200 Subject: [PATCH 1/2] Do not require context for confirm identity call in SimHelper --- src/main/java/com/simprints/libsimprints/SimHelper.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/main/java/com/simprints/libsimprints/SimHelper.java b/src/main/java/com/simprints/libsimprints/SimHelper.java index 13a28c8..554a8a7 100644 --- a/src/main/java/com/simprints/libsimprints/SimHelper.java +++ b/src/main/java/com/simprints/libsimprints/SimHelper.java @@ -131,14 +131,11 @@ public Intent identify(@NonNull String moduleId, @NonNull Metadata metadata) { /** * Sends which GUID was confirmed in a session back to SimprintsId. * - * @param context context of the host app. * @param sessionId identifies the identification session. * @param selectedGuid the GUID that was confirmed in the host app. * @return a new confirm indentity {@link Intent}. */ - public Intent confirmIdentity(@NonNull Context context, - @NonNull String sessionId, - @Nullable String selectedGuid) { + public Intent confirmIdentity(@NonNull String sessionId, @Nullable String selectedGuid) { Intent intent = new Intent(Constants.SIMPRINTS_SELECT_GUID_INTENT); intent.putExtra(Constants.SIMPRINTS_PROJECT_ID, projectId); intent.putExtra(Constants.SIMPRINTS_SESSION_ID, sessionId); From 78127fe1f3b58af3848a9158a90bc3c63b73d3ef Mon Sep 17 00:00:00 2001 From: Sergejs Luhmirins Date: Wed, 13 Dec 2023 09:41:08 +0200 Subject: [PATCH 2/2] Bump version to 2023.4.1 --- README.md | 4 ++-- build.gradle | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2e4cab5..927834e 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Gradle ``` -implementation 'com.simprints:libsimprints:2023.2.2' +implementation 'com.simprints:libsimprints:2023.4.1' ``` Maven @@ -17,7 +17,7 @@ Maven com.simprints libsimprints - 2023.2.2 + 2023.4.1 pom ``` diff --git a/build.gradle b/build.gradle index b453e85..8c795b5 100644 --- a/build.gradle +++ b/build.gradle @@ -16,7 +16,7 @@ repositories { mavenCentral() } -project.version = "2023.2.2" +project.version = "2023.4.1" android { compileSdkVersion 33