Skip to content

Commit

Permalink
Merge branch 'develop' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
tal-mi committed May 18, 2022
2 parents 25f4b30 + 88130d4 commit 11fc17c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,10 @@ Developer Preview 0.1.4
# 0.1.5
Developer Preview 0.1.5

* Added mobile SSO support using CLP.
* Added mobile SSO support using CLP.

# 0.1.6

Developer Preview 0.1.6

* Bug fix - Android setSession. Wrong SessonInfo propagation.
Original file line number Diff line number Diff line change
Expand Up @@ -410,8 +410,8 @@ class GigyaSDKWrapper<T : GigyaAccount>(application: Application, accountObj: Cl
val argumentMap: MutableMap<String, Any>? = arguments as MutableMap<String, Any>?
if (argumentMap != null) {
val sessionInfo = SessionInfo(
argumentMap["sessionToken"] as String,
argumentMap["sessionSecret"] as String,
argumentMap["sessionToken"] as String,
(argumentMap["expires_in"] as Double).toLong()
)
sdk.setSession(sessionInfo)
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: gigya_flutter_plugin
description: SAP Gigya Flutter plugin
version: 0.1.5
version: 0.1.6
homepage: https://github.com/SAP/gigya-flutter-plugin

environment:
Expand Down

0 comments on commit 11fc17c

Please sign in to comment.