Skip to content

Commit 4dfacbe

Browse files
committed
Version update 0.1.5
1 parent 3f7abd8 commit 4dfacbe

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,12 @@ Developer Preview 0.1.3
6363
* iOS: Fixed bug in link account.
6464

6565
# 0.1.4
66-
Developer Preview 0.1.3
66+
Developer Preview 0.1.4
6767

6868
* Updated Android Core SDK v5.1.6
6969
* Added setSession interface.
70+
71+
# 0.1.5
72+
Developer Preview 0.1.5
73+
74+
* Added mobile SSO support using CLP.

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,24 @@ Screen-Sets events (event, map).
161161
event - actual event name.
162162
map - event data map.
163163

164+
## Mobile SSO
165+
166+
The plugin supports the native SDK's "Single Sign On feature".
167+
[Andorid](https://sap.github.io/gigya-android-sdk/sdk-core/#sso-single-sign-on)
168+
[iOS](https://sap.github.io/gigya-swift-sdk/GigyaSwift/#sso-single-sign-on)
169+
170+
Please make sure to implement the nessesary steps described for each platform.
171+
172+
To initiate the flow run the following snippet.
173+
```
174+
GigyaSdk.instance.sso().then((result) {
175+
// Handle result here.
176+
setState(() { });
177+
}).catchError((error) {
178+
// Handle error here.
179+
});
180+
```
181+
164182
## Resolving interruptions
165183

166184
Much like the our core SDKs, resolving interruptions is available using the plugin.

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.4
3+
version: 0.1.5
44
homepage: https://github.com/SAP/gigya-flutter-plugin
55

66
environment:

0 commit comments

Comments
 (0)