Skip to content
This repository was archived by the owner on Aug 25, 2023. It is now read-only.

Commit 3a6af0c

Browse files
authored
Merge pull request #27 from BLOCKvIO/release-prep
update readme
2 parents 645e9a6 + 521fe3f commit 3a6af0c

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

BLOCKv.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Pod::Spec.new do |s|
77
s.name = 'BLOCKv'
8-
s.version = '0.9.9'
8+
s.version = '0.9.10'
99
s.summary = 'The BLOCKv SDK allows you to easily integrate your apps into the BLOCKv Platform.'
1010
s.homepage = 'https://blockv.io'
1111
s.license = { :type => 'BLOCKv AG', :file => 'LICENSE' }

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pod 'BLOCKv'
2525

2626
Within the `AppDelegate` be sure to set the App ID.
2727

28-
```Swift
28+
```swift
2929
class AppDelegate: UIResponder, UIApplicationDelegate {
3030

3131
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
@@ -39,6 +39,12 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
3939
} else {
4040
// show authentication ui
4141
}
42+
43+
// Handle user re-authentication
44+
BLOCKv.onLogout = {
45+
// show authentication ui
46+
}
47+
4248
return true
4349
}
4450
}

0 commit comments

Comments
 (0)