Swift-Firebase-VIPER-Architecture GitHub Details, Stars and Alternatives | OpenRepoFinder
ashishagradeve / repository
Swift-Firebase-VIPER-Architecture
This repository contains a detailed sample app that implements VIPER architecture in iOS using libraries and frameworks like Firebase-facebook-login,Mobile veriifcation
A transparent discovery signal based on current public GitHub metadata.
Recent activity35% weight
10
Community adoption25% weight
7
Maintenance state20% weight
100
License clarity10% weight
0
Project information10% weight
75
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
README preview
Swift-Firebase-VIPER-Architecture
This repository contains a detailed sample app that implements VIPER architecture in iOS using libraries and frameworks like Firebase-facebook-login,Mobile veriifcation
Just fork, clone, build, run and learn VIPER architecture for IOS.
open Swift-Firebase-VIPER-Architecture.xcworkspace
Before you begin
Add Firebase to your iOS project. Include the following pods in your Podfile:
pod 'Firebase/Auth'
If you haven't yet connected your app to your Firebase project, do so from the Firebase console.
On the Facebook for Developers site, get the App ID and an App Secret for your app.
Enable Facebook Login:
a. In the Firebase console, open the Auth section.
b. On the Sign in method tab, enable the Facebook sign-in method and specify the App ID and App Secret you got from Facebook.
c. Then, make sure your OAuth redirect URI (e.g. my-app-12345.firebaseapp.com/__/auth/handler) is listed as one of your OAuth redirect URIs in your Facebook app's settings page on the Facebook for Developers site in the Product Settings > Facebook Login config.
Enable Phone Number sign-in for your Firebase project
To sign in users by SMS, you must first enable the Phone Number sign-in method for your Firebase project:
In the Firebase console, open the Authentication section.
On the Sign-in Method page, enable the Phone Number sign-in method.
Set up reCAPTCHA verification
To enable the Firebase SDK to use reCAPTCHA verification:
Add custom URL schemes to your Xcode project:
a. Open your project configuration: double-click the project name in the left tree view. Select your app from the TARGETS section, then select the Info tab, and expand the URL Types section.
b. Click the + button, and add a URL scheme for your reversed client ID. To find this value, open theGoogleService-Info.plist configuration file, and look for the REVERSED_CLIENT_ID key. Copy the value of that key, and paste it into the URL Schemes box on the configuration page. Leave the other fields blank.
When completed, your config should look something similar to the following (but with your application-specific values):
ALGORITHMICALLY RELATED
Similar Open-Source Projects
Selected from shared topics, language and repository description—not editorial ratings.
This repository contains a simple iOS app demonstrating how to implement Firebase Authentication using the new Swift async/await syntax, while following the Model-View-Presenter (MVP) architecture pattern. The app allows users to sign up and sign in using their email and password, powered by Firebase Authentication.