codelab-friendlychat-ios
codelab-friendlychat-ios copied to clipboard
In sheet 4. Create Firebase console Project. when i Configure Firebase in AppDelegate. so many error. for example line 24 -> mistake message (Cannot find type 'GIDSignInDelegate' in scope) line...
The Firebase iOS Swift codelab doesn't work with the current release of Xcode, as support for Swift 3 has been removed. Errors are mostly related to name changes. To reproduce,...
The use of UITextField for displaying chat messages has a disadvantage of showing the messages in single line.
When I try adding a photo to the message, I get this long error every time. ``` 2021-03-31 09:32:28.108494-0400 FriendlyChatSwift[35385:1121969] [db] _LSSchemaConfigureForStore failed with error Error Domain=NSOSStatusErrorDomain Code=-10817 "(null)" UserInfo={_LSFunction=_LSSchemaConfigureForStore,...
Again, correct code found in the final swift project folder. Copied below: ``` func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [UIImagePickerController.InfoKey : Any]) { picker.dismiss(animated: true, completion:nil) guard let uid =...
Some errors arising when using latest GoogleSignIn version (5.0.2) So downgraded to version 4.4.0 after some stackoverflow research... ... leads to new build errors with the unsupported lines in Appdelegate.swift...
For https://codelabs.developers.google.com/codelabs/firebase-ios-swift/#4, under step 5 **SignInViewController.swfit** section, the following code `GIDSignIn.sharedInstance().uiDelegate = self GIDSignIn.sharedInstance().signInSilently()` should be `GIDSignIn.sharedInstance().presentingViewController = self GIDSignIn.sharedInstance().restorePreviousSignIn()` Reference: https://developers.google.com/identity/sign-in/ios/quick-migration-guide
When I follow https://codelabs.developers.google.com/codelabs/firebase-ios-swift there are few issues: 1) In step 4. Create Firebase console Project in section Connect your iOS app, you can't use Bundle id "com.google.firebase.codelab.FriendlyChatSwift", because Apple...