Skip to content

Commit 11fc17c

Browse files
committed
Merge branch 'develop' into main
2 parents 25f4b30 + 88130d4 commit 11fc17c

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,10 @@ Developer Preview 0.1.4
7171
# 0.1.5
7272
Developer Preview 0.1.5
7373

74-
* Added mobile SSO support using CLP.
74+
* Added mobile SSO support using CLP.
75+
76+
# 0.1.6
77+
78+
Developer Preview 0.1.6
79+
80+
* Bug fix - Android setSession. Wrong SessonInfo propagation.

android/src/main/kotlin/com/sap/gigya_flutter_plugin/GigyaSDKWrapper.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,8 +410,8 @@ class GigyaSDKWrapper<T : GigyaAccount>(application: Application, accountObj: Cl
410410
val argumentMap: MutableMap<String, Any>? = arguments as MutableMap<String, Any>?
411411
if (argumentMap != null) {
412412
val sessionInfo = SessionInfo(
413-
argumentMap["sessionToken"] as String,
414413
argumentMap["sessionSecret"] as String,
414+
argumentMap["sessionToken"] as String,
415415
(argumentMap["expires_in"] as Double).toLong()
416416
)
417417
sdk.setSession(sessionInfo)

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: gigya_flutter_plugin
22
description: SAP Gigya Flutter plugin
3-
version: 0.1.5
3+
version: 0.1.6
44
homepage: https://github.com/SAP/gigya-flutter-plugin
55

66
environment:

0 commit comments

Comments
 (0)