From 23a6984391e916e0f967436801ddf194fd849f43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emre=20=C5=9EURK?= Date: Fri, 6 Nov 2020 20:48:02 +0300 Subject: [PATCH] Update README Giving appID is a must. Otherwise, the app crashes when calling logout function. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b4bdb95..fe70a6d 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,7 @@ class ViewController: UIViewController, LoginCoordinatorDelegate { lazy var loginCoordinator: LoginCoordinator = { let loginVC = LoginCoordinator( self) loginVC.delegate = self + loginVC.appID = "00000" return loginVC }()