-
Notifications
You must be signed in to change notification settings - Fork 488
create sample chat app #89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
be2654c
create sample app
morganchen12 daf1b38
add empty auth screen, change bundle id
morganchen12 76fbc72
add README to sample project
morganchen12 f24fd61
fiddle with comments
morganchen12 8a3afa3
fix licensing header
morganchen12 6ddfd42
move cell layout logic out of controller, thank god
morganchen12 099f866
move boilerplate to where no one will look
morganchen12 899df6e
update comments on data source event listener
morganchen12 56c67d9
use swift subscript instead of nsstring substring
morganchen12 2776a84
deintegrate pods
morganchen12 d556156
use auth state change listener instead of completion closure
morganchen12 8d32a5a
remove reference to GoogleService-Info.plist
morganchen12 6735c7d
amend readme
morganchen12 666d473
add more stuff to samples readme
morganchen12 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| target 'uidemo' do | ||
| use_frameworks! | ||
|
|
||
| pod 'FirebaseUI' | ||
|
|
||
| target 'uidemoTests' do | ||
| inherit! :search_paths | ||
| end | ||
|
|
||
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| Swift Samples | ||
| ----- | ||
|
|
||
| This directory contains a collection of swift code samples. | ||
|
|
||
| In order to run the project you'll need a valid app in Firebase and | ||
| the `GoogleService-Info.plist` file for that project. Drag the plist into the | ||
| project root and the project should build correctly. Find more instructions | ||
| and download a plist file from the [Firebase console](https://console.firebase.google.com). | ||
|
|
||
| ###Chat Sample | ||
|
|
||
| This sample uses [anonymous authentication](https://firebase.google.com/docs/auth/ios/anonymous-auth), | ||
| so make sure anonymous auth is enabled in Firebase console. | ||
|
|
||
| ###Auth Sample | ||
|
|
||
| This sample uses [email/password](https://firebase.google.com/docs/auth/ios/password-auth), | ||
| [Google](https://firebase.google.com/docs/auth/ios/google-signin), | ||
| and [Facebook](https://firebase.google.com/docs/auth/ios/facebook-login) | ||
| auth, so make sure those are enabled in Firebase console. | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Include a little bit more setup instructions (e.g. go to console.firebase.google.com, setup a app with bundle id , enable any auth providers required etc. )