Skip to content
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@

Gradle
```
implementation 'com.simprints:libsimprints:2023.2.2'
implementation 'com.simprints:libsimprints:2023.4.1'
```

Maven
```
<dependency>
<groupId>com.simprints</groupId>
<artifactId>libsimprints</artifactId>
<version>2023.2.2</version>
<version>2023.4.1</version>
<type>pom</type>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repositories {
mavenCentral()
}

project.version = "2023.2.2"
project.version = "2023.4.1"

android {
compileSdkVersion 33
Expand Down
5 changes: 1 addition & 4 deletions src/main/java/com/simprints/libsimprints/SimHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down