Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions samples/swift/Podfile
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
22 changes: 22 additions & 0 deletions samples/swift/README.md
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
Copy link
Contributor

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. )

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.

Loading