adding pods method of package managing
This commit is contained in:
+350
@@ -0,0 +1,350 @@
|
||||
//
|
||||
// Copyright (c) 2016 Google Inc.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
//
|
||||
|
||||
#import "FirebaseFacebookAuthUI/Sources/Public/FirebaseFacebookAuthUI/FUIFacebookAuth.h"
|
||||
|
||||
#import <FirebaseAuthUI/FirebaseAuthUI.h>
|
||||
#import <FirebaseAuth/FirebaseAuth.h>
|
||||
|
||||
#if SWIFT_PACKAGE
|
||||
@import FBSDKCoreKit;
|
||||
@import FBSDKLoginKit;
|
||||
#else
|
||||
#import <FBSDKCoreKit/FBSDKCoreKit.h>
|
||||
#import <FBSDKLoginKit/FBSDKLoginKit.h>
|
||||
#endif // SWIFT_PACKAGE
|
||||
|
||||
/** @var kTableName
|
||||
@brief The name of the strings table to search for localized strings.
|
||||
*/
|
||||
static NSString *const kTableName = @"FirebaseFacebookAuthUI";
|
||||
|
||||
/** @var kBundleName
|
||||
@brief The name of the bundle to search for resources.
|
||||
*/
|
||||
#if SWIFT_PACKAGE
|
||||
static NSString *const kBundleName = @"FirebaseUI_FirebaseFacebookAuthUI";
|
||||
#else
|
||||
static NSString *const kBundleName = @"FirebaseFacebookAuthUI";
|
||||
#endif // SWIFT_PACKAGE
|
||||
|
||||
/** @var kSignInWithFacebook
|
||||
@brief The string key for localized button text.
|
||||
*/
|
||||
static NSString *const kSignInWithFacebook = @"SignInWithFacebook";
|
||||
|
||||
/** @var kFacebookAppId
|
||||
@brief The string key used to read Facebook App Id from Info.plist.
|
||||
*/
|
||||
static NSString *const kFacebookAppId = @"FacebookAppID";
|
||||
|
||||
/** @var kFacebookDisplayName
|
||||
@brief The string key used to read Facebook App Name from Info.plist.
|
||||
*/
|
||||
static NSString *const kFacebookDisplayName = @"FacebookDisplayName";
|
||||
|
||||
@interface FUIFacebookAuth () <FUIAuthProvider>
|
||||
|
||||
/** @property authUI
|
||||
@brief FUIAuth instance of the application.
|
||||
*/
|
||||
@property(nonatomic, strong) FUIAuth *authUI;
|
||||
|
||||
/** @property providerForEmulator
|
||||
@brief The OAuth provider to be used when the emulator is enabled.
|
||||
*/
|
||||
@property(nonatomic, strong) FIROAuthProvider *providerForEmulator;
|
||||
|
||||
@end
|
||||
|
||||
@implementation FUIFacebookAuth {
|
||||
|
||||
/** @var _pendingSignInCallback
|
||||
@brief The callback which should be invoked when the sign in flow completes (or is cancelled.)
|
||||
*/
|
||||
FUIAuthProviderSignInCompletionBlock _pendingSignInCallback;
|
||||
|
||||
/** @var _presentingViewController
|
||||
@brief The presenting view controller for interactive sign-in.
|
||||
*/
|
||||
UIViewController *_presentingViewController;
|
||||
|
||||
/** @var _email
|
||||
@brief The email address associated with this account.
|
||||
*/
|
||||
NSString *_email;
|
||||
}
|
||||
|
||||
+ (NSBundle *)bundle {
|
||||
return [FUIAuthUtils bundleNamed:kBundleName
|
||||
inFrameworkBundle:[NSBundle bundleForClass:[self class]]];
|
||||
}
|
||||
|
||||
- (instancetype)initWithAuthUI:(FUIAuth *)authUI
|
||||
permissions:(NSArray *)permissions {
|
||||
self = [super init];
|
||||
if (self != nil) {
|
||||
_authUI = authUI;
|
||||
_scopes = permissions;
|
||||
[self configureProvider];
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
||||
- (instancetype)initWithAuthUI:(FUIAuth *)authUI {
|
||||
return [self initWithAuthUI:authUI permissions:@[ @"email" ]];
|
||||
}
|
||||
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Wdeprecated-implementations"
|
||||
- (instancetype)initWithPermissions:(NSArray *)permissions {
|
||||
self = [super init];
|
||||
if (self != nil) {
|
||||
_scopes = permissions;
|
||||
[self configureProvider];
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
||||
- (instancetype)init {
|
||||
return [self initWithPermissions:@[ @"email" ]];
|
||||
}
|
||||
#pragma clang diagnostic pop
|
||||
|
||||
|
||||
#pragma mark - FUIAuthProvider
|
||||
|
||||
- (nullable NSString *)providerID {
|
||||
return FIRFacebookAuthProviderID;
|
||||
}
|
||||
|
||||
- (nullable NSString *)accessToken {
|
||||
if (self.authUI.isEmulatorEnabled) {
|
||||
return nil;
|
||||
}
|
||||
return [FBSDKAccessToken currentAccessToken].tokenString;
|
||||
}
|
||||
|
||||
/** @fn idToken:
|
||||
@brief Facebook doesn't provide User Id Token during sign in flow
|
||||
*/
|
||||
- (nullable NSString *)idToken {
|
||||
return nil;
|
||||
}
|
||||
|
||||
- (NSString *)shortName {
|
||||
return @"Facebook";
|
||||
}
|
||||
|
||||
- (NSString *)signInLabel {
|
||||
return FUILocalizedStringFromTableInBundle(kSignInWithFacebook,
|
||||
kTableName,
|
||||
[FUIFacebookAuth bundle]);
|
||||
}
|
||||
|
||||
- (UIImage *)icon {
|
||||
return [FUIAuthUtils imageNamed:@"ic_facebook" fromBundle:[FUIFacebookAuth bundle]];
|
||||
}
|
||||
|
||||
- (UIColor *)buttonBackgroundColor {
|
||||
return [UIColor colorWithRed:59.0f/255.0f green:89.0f/255.0f blue:152.0f/255.0f alpha:1.0f];
|
||||
}
|
||||
|
||||
- (UIColor *)buttonTextColor {
|
||||
return [UIColor whiteColor];
|
||||
}
|
||||
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Wdeprecated-implementations"
|
||||
- (void)signInWithEmail:(nullable NSString *)email
|
||||
presentingViewController:(nullable UIViewController *)presentingViewController
|
||||
completion:(nullable FUIAuthProviderSignInCompletionBlock)completion {
|
||||
[self signInWithDefaultValue:email
|
||||
presentingViewController:presentingViewController
|
||||
completion:completion];
|
||||
}
|
||||
#pragma clang diagnostic pop
|
||||
|
||||
- (void)signInWithDefaultValue:(nullable NSString *)defaultValue
|
||||
presentingViewController:(nullable UIViewController *)presentingViewController
|
||||
completion:(nullable FUIAuthProviderSignInCompletionBlock)completion {
|
||||
_pendingSignInCallback = completion;
|
||||
_presentingViewController = presentingViewController;
|
||||
|
||||
if (self.authUI.isEmulatorEnabled) {
|
||||
[self signInWithOAuthProvider:self.providerForEmulator
|
||||
presentingViewController:presentingViewController
|
||||
completion:completion];
|
||||
return;
|
||||
}
|
||||
|
||||
[_loginManager logInWithPermissions:_scopes
|
||||
fromViewController:presentingViewController
|
||||
handler:^(FBSDKLoginManagerLoginResult *result,
|
||||
NSError *error) {
|
||||
if (error) {
|
||||
NSError *newError =
|
||||
[FUIAuthErrorUtils providerErrorWithUnderlyingError:error
|
||||
providerID:FIRFacebookAuthProviderID];
|
||||
[self completeSignInFlowWithAccessToken:nil error:newError];
|
||||
} else if (result.isCancelled) {
|
||||
NSError *newError = [FUIAuthErrorUtils userCancelledSignInError];
|
||||
[self completeSignInFlowWithAccessToken:nil error:newError];
|
||||
} else {
|
||||
// Retrieve email.
|
||||
[[[FBSDKGraphRequest alloc] initWithGraphPath:@"me" parameters:@{ @"fields" : @"email" }] startWithCompletion:^(id<FBSDKGraphRequestConnecting> connection,
|
||||
id result,
|
||||
NSError *error) {
|
||||
self->_email = result[@"email"];
|
||||
}];
|
||||
[self completeSignInFlowWithAccessToken:result.token.tokenString
|
||||
error:nil];
|
||||
}
|
||||
}];
|
||||
}
|
||||
|
||||
- (void)signInWithOAuthProvider:(FIROAuthProvider *)oauthProvider
|
||||
presentingViewController:(nullable UIViewController *)presentingViewController
|
||||
completion:(nullable FUIAuthProviderSignInCompletionBlock)completion {
|
||||
oauthProvider.scopes = self.scopes;
|
||||
|
||||
[oauthProvider getCredentialWithUIDelegate:nil
|
||||
completion:^(FIRAuthCredential *_Nullable credential,
|
||||
NSError *_Nullable error) {
|
||||
if (error) {
|
||||
[FUIAuthBaseViewController showAlertWithMessage:error.localizedDescription
|
||||
presentingViewController:presentingViewController];
|
||||
if (completion) {
|
||||
completion(nil, error, nil, nil);
|
||||
}
|
||||
return;
|
||||
}
|
||||
if (completion) {
|
||||
UIActivityIndicatorView *activityView =
|
||||
[FUIAuthBaseViewController addActivityIndicator:presentingViewController.view];
|
||||
[activityView startAnimating];
|
||||
FIRAuthResultCallback result = ^(FIRUser *_Nullable user,
|
||||
NSError *_Nullable error) {
|
||||
[activityView stopAnimating];
|
||||
[activityView removeFromSuperview];
|
||||
};
|
||||
completion(credential, nil, result, nil);
|
||||
}
|
||||
}];
|
||||
}
|
||||
|
||||
- (NSString *)email {
|
||||
return _email;
|
||||
}
|
||||
|
||||
- (void)signOut {
|
||||
if (self.authUI.isEmulatorEnabled) {
|
||||
return;
|
||||
}
|
||||
[_loginManager logOut];
|
||||
}
|
||||
|
||||
- (BOOL)handleOpenURL:(NSURL *)URL sourceApplication:(NSString *)sourceApplication {
|
||||
if (self.authUI.isEmulatorEnabled) {
|
||||
return NO;
|
||||
}
|
||||
return [[FBSDKApplicationDelegate sharedInstance] application:[UIApplication sharedApplication]
|
||||
openURL:URL
|
||||
sourceApplication:sourceApplication
|
||||
annotation:nil];
|
||||
}
|
||||
|
||||
#pragma mark -
|
||||
|
||||
/** @fn completeSignInFlowWithAccessToken:error:
|
||||
@brief Called with the result of a Facebook sign-in attempt. Invokes and clears any pending
|
||||
sign in callback block.
|
||||
@param accessToken The Facebook access token, if successful.
|
||||
@param error An error which occurred during the sign-in attempt.
|
||||
*/
|
||||
- (void)completeSignInFlowWithAccessToken:(nullable NSString *)accessToken
|
||||
error:(nullable NSError *)error {
|
||||
if (error) {
|
||||
[self callbackWithCredential:nil error:error result:nil];
|
||||
return;
|
||||
}
|
||||
// Assume accessToken cannot be nil if there's no error.
|
||||
NSString *_Nonnull token = (id _Nonnull)accessToken;
|
||||
FIRAuthCredential *credential = [FIRFacebookAuthProvider credentialWithAccessToken:token];
|
||||
UIActivityIndicatorView *activityView =
|
||||
[FUIAuthBaseViewController addActivityIndicator:_presentingViewController.view];
|
||||
[activityView startAnimating];
|
||||
[self callbackWithCredential:credential error:nil result:^(FIRUser *_Nullable user,
|
||||
NSError *_Nullable error) {
|
||||
[activityView stopAnimating];
|
||||
[activityView removeFromSuperview];
|
||||
}];
|
||||
}
|
||||
|
||||
/** @fn callbackWithCredential:error:
|
||||
@brief Ends the sign-in flow by cleaning up and calling back with given credential or error.
|
||||
@param credential The credential to pass back, if any.
|
||||
@param error The error to pass back, if any.
|
||||
@param result The result of sign-in operation using provided @c FIRAuthCredential object.
|
||||
@see @c FIRAuth.signInWithCredential:completion:
|
||||
*/
|
||||
- (void)callbackWithCredential:(nullable FIRAuthCredential *)credential
|
||||
error:(nullable NSError *)error
|
||||
result:(nullable FIRAuthResultCallback)result {
|
||||
FUIAuthProviderSignInCompletionBlock callback = _pendingSignInCallback;
|
||||
_pendingSignInCallback = nil;
|
||||
if (callback) {
|
||||
callback(credential, error, result, nil);
|
||||
}
|
||||
}
|
||||
|
||||
/** @fn callbackWithCredential:error:
|
||||
@brief Validates that Facebook SDK data was filled in Info.plist and creates Facebook login manager
|
||||
*/
|
||||
- (void)configureProvider {
|
||||
NSBundle *bundle = [NSBundle mainBundle];
|
||||
NSString *facebookAppId = [bundle objectForInfoDictionaryKey:kFacebookAppId];
|
||||
NSString *facebookDisplayName = [bundle objectForInfoDictionaryKey:kFacebookDisplayName];
|
||||
|
||||
if (facebookAppId == nil || facebookDisplayName == nil) {
|
||||
// Executes in test targets only.
|
||||
bundle = [FUIFacebookAuth bundle];
|
||||
facebookAppId = facebookAppId ?: [bundle objectForInfoDictionaryKey:kFacebookAppId];
|
||||
facebookDisplayName = facebookDisplayName ?:
|
||||
[bundle objectForInfoDictionaryKey:kFacebookDisplayName];
|
||||
}
|
||||
|
||||
if (!(facebookAppId && facebookDisplayName)) {
|
||||
[NSException raise:NSInternalInconsistencyException
|
||||
format:@"Please set FacebookAppID, FacebookDisplayName, and\nURL types > Url "
|
||||
@"Schemes in `Supporting Files/Info.plist` according to "
|
||||
@"https://developers.facebook.com/docs/ios/getting-started"];
|
||||
}
|
||||
|
||||
if (self.authUI.isEmulatorEnabled) {
|
||||
_providerForEmulator = [FIROAuthProvider providerWithProviderID:self.providerID];
|
||||
} else {
|
||||
_loginManager = [self createLoginManager];
|
||||
}
|
||||
}
|
||||
|
||||
#pragma mark - Private methods
|
||||
|
||||
- (FBSDKLoginManager *)createLoginManager {
|
||||
return [[FBSDKLoginManager alloc] init];
|
||||
}
|
||||
|
||||
@end
|
||||
+81
@@ -0,0 +1,81 @@
|
||||
//
|
||||
// Copyright (c) 2016 Google Inc.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
//
|
||||
|
||||
@class FBSDKLoginManager;
|
||||
|
||||
#if SWIFT_PACKAGE
|
||||
#import <FirebaseAuthUI/FirebaseAuthUI.h>
|
||||
#else
|
||||
#import <FirebaseAuthUI/FirebaseAuthUI.h>
|
||||
#endif // SWIFT_PACKAGE
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
/** @class FUIFacebookAuth
|
||||
@brief AuthUI components for Facebook Login.
|
||||
*/
|
||||
@interface FUIFacebookAuth : NSObject <FUIAuthProvider>
|
||||
{
|
||||
@protected
|
||||
/** @var _loginManager
|
||||
@brief The Facebook login manager.
|
||||
*/
|
||||
FBSDKLoginManager *_loginManager;
|
||||
|
||||
}
|
||||
|
||||
/** @property scopes
|
||||
@brief The scopes to use with Facebook Login.
|
||||
@remarks Defaults to using "email" scopes.
|
||||
*/
|
||||
@property(nonatomic, readonly, copy) NSArray<NSString *> *scopes;
|
||||
|
||||
/** @property buttonAlignment
|
||||
@brief The alignment of the icon and text of the button.
|
||||
*/
|
||||
@property(nonatomic, readwrite) FUIButtonAlignment buttonAlignment;
|
||||
|
||||
/** @fn initWithAuthUI
|
||||
@brief Convenience initializer. Uses a default permission of `@[ "email" ]`.
|
||||
@param authUI The @c FUIAuth instance that manages this provider.
|
||||
*/
|
||||
- (instancetype)initWithAuthUI:(FUIAuth *)authUI;
|
||||
|
||||
/** @fn initWithAuthUI:permissions:
|
||||
@brief Designated initializer.
|
||||
@param authUI The @c FUIAuth instance that manages this provider.
|
||||
@param permissions The permissions of the app. This array must be an array of specific string values
|
||||
as defined in https://developers.facebook.com/docs/facebook-login/permissions/
|
||||
*/
|
||||
- (instancetype)initWithAuthUI:(FUIAuth *)authUI
|
||||
permissions:(NSArray *)permissions NS_DESIGNATED_INITIALIZER;
|
||||
|
||||
/** @fn init
|
||||
@brief Conevenience initializer. Uses a default permission of `@[ "email" ]`.
|
||||
*/
|
||||
- (instancetype)init
|
||||
__attribute__((deprecated("Instead use initWithAuthUI:")));
|
||||
|
||||
/** @fn initWithPermissions:
|
||||
@param permissions The permissions of the app. This array must be an array of specific string values
|
||||
as defined in https://developers.facebook.com/docs/facebook-login/permissions/
|
||||
*/
|
||||
- (instancetype)initWithPermissions:(NSArray *)permissions
|
||||
__attribute__((deprecated("Instead use initWithAuthUI:permissions:"))) NS_DESIGNATED_INITIALIZER;
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
//
|
||||
// Copyright (c) 2016 Google Inc.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
//! Project version number for FirebaseFacebookAuthUI.
|
||||
FOUNDATION_EXPORT double FirebaseFacebookAuthUIVersionNumber;
|
||||
|
||||
//! Project version string for FirebaseFacebookAuthUI.
|
||||
FOUNDATION_EXPORT const unsigned char FirebaseFacebookAuthUIVersionString[];
|
||||
|
||||
#import "FUIFacebookAuth.h"
|
||||
|
||||
|
||||
|
||||
BIN
Binary file not shown.
|
After Width: | Height: | Size: 187 B |
BIN
Binary file not shown.
|
After Width: | Height: | Size: 268 B |
BIN
Binary file not shown.
|
After Width: | Height: | Size: 348 B |
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "تسجيل الدخول عبر Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Вход с Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Facebook দিয়ে সাইন-ইন করুন";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Inicia la sessió amb Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Přihlaste se přes Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Log ind med Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Über Facebook anmelden";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Über Facebook anmelden";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Über Facebook anmelden";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Σύνδεση μέσω Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Sign in with Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Sign in with Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Sign in with Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Sign in with Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Sign in with Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Sign in with Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Sign in with Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Sign in with Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Acceder con Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Acceder con Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Acceder con Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Acceder con Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Acceder con Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Acceder con Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Acceder con Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Acceder con Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Acceder con Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Acceder con Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Acceder con Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Acceder con Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Acceder con Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Acceder con Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Acceder con Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Acceder con Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Acceder con Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Acceder con Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Acceder con Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Acceder con Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Iniciar sesión con Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "ورود به سیستم با Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Kirjaudu Facebook-tilillä";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Mag-sign in sa Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Se connecter avec Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Se connecter avec Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Über Facebook anmelden";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Facebook વડે સાઇન ઇન કરો";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "כניסה באמצעות Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Facebook से प्रवेश करें";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Prijava putem Facebooka";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Bejelentkezés Facebook-fiókkal";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Login dengan Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Accedi con Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Facebook でログイン";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Facebook ಮೂಲಕ ಸೈನ್ ಇನ್ ಮಾಡಿ";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Facebook으로 로그인";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Se connecter avec Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Prisijungti per „Facebook“";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Pierakstīties ar Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Facebookने साइन इन करा";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Log masuk dengan Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Logg på med Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Inloggen met Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Logg på med Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Zaloguj się przez Facebooka";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Fazer login com o Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Iniciar sessão com o Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Fazer login com o Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Conectați-vă cu Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Войти через аккаунт Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Prihlásiť sa cez Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Prijava z računom za Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Prijavi me pomoću Facebook-a";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Пријави ме помоћу Facebook-а";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Logga in med Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Facebook மூலம் உள்நுழைக";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "ลงชื่อเข้าใช้ด้วย Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Facebook ile oturum aç";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Увійти через Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Facebook کے ساتھ سائن ان کریں";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "Đăng nhập bằng Facebook";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "使用 Facebook 帐号登录";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "使用 Facebook 帳戶登入";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "使用 Facebook 帳戶登入";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Facebook. */
|
||||
"SignInWithFacebook" = "使用 Facebook 帐号登录";
|
||||
Generated
+202
@@ -0,0 +1,202 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright [yyyy] [name of copyright owner]
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
Generated
+156
@@ -0,0 +1,156 @@
|
||||
# FirebaseUI for iOS — UI Bindings for Firebase
|
||||
|
||||
          
|
||||
|
||||
FirebaseUI is an open-source library for iOS that allows you to quickly connect common UI elements to the [Firebase](https://firebase.google.com?utm_source=FirebaseUI-iOS) database for data storage, allowing views to be updated in realtime as they change, and providing simple interfaces for common tasks like displaying lists or collections of items.
|
||||
|
||||
Additionally, FirebaseUI simplifies Firebase authentication by providing easy to use auth methods that integrate with common identity providers like Facebook, Twitter, and Google as well as allowing developers to use a built in headful UI for ease of development.
|
||||
|
||||
FirebaseUI clients are also available for [Android](https://github.com/firebase/FirebaseUI-Android) and [web](https://github.com/firebase/firebaseui-web).
|
||||
|
||||

|
||||
|
||||
## Installing FirebaseUI for iOS
|
||||
|
||||
FirebaseUI supports iOS 10.0+ and Xcode 11+. We recommend using [CocoaPods](https://cocoapods.org/pods/FirebaseUI), add
|
||||
the following to your `Podfile`:
|
||||
|
||||
```ruby
|
||||
pod 'FirebaseUI', '~> 8.0' # Pull in all Firebase UI features
|
||||
```
|
||||
|
||||
If you don't want to use all of FirebaseUI, there are multiple subspecs which can selectively install subsets of the full feature set:
|
||||
|
||||
```ruby
|
||||
# Only pull in Firestore features
|
||||
pod 'FirebaseUI/Firestore', '~> 8.0'
|
||||
|
||||
# Only pull in Database features
|
||||
pod 'FirebaseUI/Database', '~> 8.0'
|
||||
|
||||
# Only pull in Storage features
|
||||
pod 'FirebaseUI/Storage', '~> 8.0'
|
||||
|
||||
# Only pull in Auth features
|
||||
pod 'FirebaseUI/Auth', '~> 8.0'
|
||||
|
||||
# Only pull in Facebook login features
|
||||
pod 'FirebaseUI/Facebook', '~> 8.0'
|
||||
|
||||
# Only pull in Google login features
|
||||
pod 'FirebaseUI/Google', '~> 8.0'
|
||||
|
||||
# Only pull in Phone Auth login features
|
||||
pod 'FirebaseUI/Phone', '~> 8.0'
|
||||
```
|
||||
|
||||
If you're including FirebaseUI in a Swift project, make sure you also have:
|
||||
|
||||
```ruby
|
||||
platform :ios, '10.0'
|
||||
use_frameworks!
|
||||
```
|
||||
|
||||
Otherwise, you can include the FirebaseUI Xcode project from this repo in
|
||||
your project. You also need to
|
||||
[add the Firebase framework](https://firebase.google.com/docs/ios/setup)
|
||||
to your project.
|
||||
|
||||
## Documentation
|
||||
|
||||
The READMEs for components of FirebaseUI can be found in their respective
|
||||
project folders.
|
||||
|
||||
- [Auth](Auth/README.md)
|
||||
- [PhoneAuth](PhoneAuth/README.md)
|
||||
- [Database](Database/README.md)
|
||||
- [Firestore](Firestore/README.md)
|
||||
- [Storage](Storage/README.md)
|
||||
|
||||
## Local Setup
|
||||
|
||||
If you'd like to contribute to FirebaseUI for iOS, you'll need to run the
|
||||
following commands to get your environment set up:
|
||||
|
||||
```bash
|
||||
$ git clone https://github.com/firebase/FirebaseUI-iOS.git
|
||||
$ cd FirebaseUI-iOS
|
||||
$ cd Auth # or PhoneAuth, Database, etc
|
||||
$ pod install
|
||||
```
|
||||
|
||||
Alternatively you can use `pod try FirebaseUI` to install the Objective-C or Swift sample projects.
|
||||
|
||||
## Sample Project Configuration
|
||||
|
||||
You'll have to configure your Xcode project in order to run the samples.
|
||||
|
||||
1. Your Xcode project should contain a `GoogleService-Info.plist`, downloaded from [Firebase console](https://console.firebase.google.com) when you add your app to a Firebase project.<br>
|
||||
Copy the `GoogleService-Info.plist` into the sample project folder (`samples/obj-c/GoogleService-Info.plist` or `samples/swift/GoogleService-Info.plist`).
|
||||
|
||||
1. Update URL Types.<br>
|
||||
Go to `Project Settings -> Info tab -> Url Types` and update values for:
|
||||
+ `REVERSED_CLIENT_ID` (get value from `GoogleService-Info.plist`)
|
||||
+ `fb{your-app-id}` (put Facebook App Id)
|
||||
|
||||
1. Update `Info.plist` with Facebook configuration values
|
||||
+ `FacebookAppID -> {your-app-id}` (put Facebook App Id)
|
||||
|
||||
1. Enable Keychain Sharing.<br>
|
||||
Facebook SDK requires keychain sharing.<br>
|
||||
This can be done here: `Project Settings -> Capabilities -> KeyChain Sharing -> ON`
|
||||
|
||||
1. Don't forget to configure your Firebase App Database using [Firebase console](https://console.firebase.google.com).<br>
|
||||
Database should contain appropriate read/write permissions and folders (`objc_demo-chat` and `swift_demo-chat` respectively)
|
||||
|
||||
1. In Order to use `Phone Auth` provider you should [Configure Push Notifications](#configure-apple-push-notifications)
|
||||
|
||||
#### Configure Apple Push Notifications
|
||||
|
||||
##### Enable silent push notifications in Xcode
|
||||
|
||||
* `Push Notification` - Under `Capabilities` tab in your app target choose `Push Notifications` and put the switch to the `On` position.
|
||||
* `Background Mode` - Under `Capabilities` tab in your app target choose `Background Modes` put the switch to the `On` position. In the list of available modes select `Background fetch` and `Remote notifications` (If available).
|
||||
|
||||
##### Upload APNS Certificate to Firebase
|
||||
|
||||
1. Create your `Provisioning APNS SSL Certificates` by following the steps on the following link.
|
||||
https://firebase.google.com/docs/cloud-messaging/ios/certs
|
||||
|
||||
1. Upload your `APNS Certificate` to Firebase:
|
||||
+ Inside your project in the Firebase console, select the gear icon, select `Project Settings`, and then select the `Cloud Messaging` tab.
|
||||
+ Select the `Upload Certificate` button for your development certificate, your production certificate, or both. At least one is required.
|
||||
+ For each certificate, select the `.p12 file`, and provide the password, if any. Make sure the `bundle ID` for this certificate matches the `bundle ID` of your app. Select `Save`.
|
||||
|
||||
## Contributing to FirebaseUI
|
||||
|
||||
### Contributor License Agreements
|
||||
|
||||
We'd love to accept your sample apps and patches! Before we can take them, we
|
||||
have to jump a couple of legal hurdles.
|
||||
|
||||
Please fill out either the individual or corporate Contributor License Agreement
|
||||
(CLA).
|
||||
|
||||
* If you are an individual writing original source code and you're sure you
|
||||
own the intellectual property, then you'll need to sign an [individual CLA]
|
||||
(https://developers.google.com/open-source/cla/individual).
|
||||
* If you work for a company that wants to allow you to contribute your work,
|
||||
then you'll need to sign a [corporate CLA]
|
||||
(https://developers.google.com/open-source/cla/corporate).
|
||||
|
||||
Follow either of the two links above to access the appropriate CLA and
|
||||
instructions for how to sign and return it. Once we receive it, we'll be able to
|
||||
accept your pull requests.
|
||||
|
||||
### Contribution Process
|
||||
|
||||
1. Submit an issue describing your proposed change to the repo in question.
|
||||
1. The repo owner will respond to your issue promptly.
|
||||
1. If your proposed change is accepted, and you haven't already done so, sign a
|
||||
Contributor License Agreement (see details above).
|
||||
1. Fork the desired repo, develop and test your code changes.
|
||||
1. Ensure that your code adheres to the existing style of the library to which
|
||||
you are contributing.
|
||||
1. Ensure that your code has an appropriate set of unit tests which all pass.
|
||||
1. Submit a pull request
|
||||
Reference in New Issue
Block a user