adding pods method of package managing
This commit is contained in:
@@ -0,0 +1,313 @@
|
||||
//
|
||||
// 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 "FirebaseGoogleAuthUI/Sources/Public/FirebaseGoogleAuthUI/FUIGoogleAuth.h"
|
||||
|
||||
#import <FirebaseAuth/FirebaseAuth.h>
|
||||
#import <FirebaseCore/FirebaseCore.h>
|
||||
#import <GoogleSignIn/GoogleSignIn.h>
|
||||
#import <FirebaseAuthUI/FirebaseAuthUI.h>
|
||||
|
||||
/** @var kTableName
|
||||
@brief The name of the strings table to search for localized strings.
|
||||
*/
|
||||
static NSString *const kTableName = @"FirebaseGoogleAuthUI";
|
||||
|
||||
/** @var kBundleName
|
||||
@brief The name of the bundle to search for resources.
|
||||
*/
|
||||
#if SWIFT_PACKAGE
|
||||
static NSString *const kBundleName = @"FirebaseUI_FirebaseGoogleAuthUI";
|
||||
#else
|
||||
static NSString *const kBundleName = @"FirebaseGoogleAuthUI";
|
||||
#endif // SWIFT_PACKAGE
|
||||
|
||||
/** @var kSignInWithGoogle
|
||||
@brief The string key for localized button text.
|
||||
*/
|
||||
static NSString *const kSignInWithGoogle = @"SignInWithGoogle";
|
||||
|
||||
@interface FUIGoogleAuth ()
|
||||
|
||||
/** @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 FUIGoogleAuth {
|
||||
/** @var _email
|
||||
@brief The email address associated with this account.
|
||||
*/
|
||||
NSString *_email;
|
||||
}
|
||||
|
||||
+ (NSBundle *)bundle {
|
||||
return [FUIAuthUtils bundleNamed:kBundleName
|
||||
inFrameworkBundle:[NSBundle bundleForClass:[self class]]];
|
||||
}
|
||||
|
||||
+ (NSArray<NSString *> *)defaultScopes {
|
||||
return @[kGoogleUserInfoEmailScope, kGoogleUserInfoProfileScope];
|
||||
}
|
||||
|
||||
- (instancetype)initWithAuthUI:(FUIAuth *)authUI {
|
||||
return [self initWithAuthUI:authUI scopes:@[kGoogleUserInfoEmailScope, kGoogleUserInfoProfileScope]];
|
||||
}
|
||||
|
||||
- (instancetype)initWithAuthUI:(FUIAuth *)authUI scopes:(NSArray<NSString *> *)scopes {
|
||||
self = [super init];
|
||||
if (self) {
|
||||
_authUI = authUI;
|
||||
_scopes = [scopes copy];
|
||||
if (_authUI.isEmulatorEnabled) {
|
||||
_providerForEmulator = [FIROAuthProvider providerWithProviderID:self.providerID];
|
||||
}
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Wdeprecated-implementations"
|
||||
- (instancetype)init {
|
||||
return [self initWithScopes:[[self class] defaultScopes]];
|
||||
}
|
||||
|
||||
- (instancetype)initWithScopes:(NSArray *)scopes {
|
||||
self = [super init];
|
||||
if (self) {
|
||||
_scopes = [scopes copy];
|
||||
}
|
||||
return self;
|
||||
}
|
||||
#pragma clang diagnostic pop
|
||||
|
||||
- (GIDSignIn *)googleSignIn {
|
||||
return GIDSignIn.sharedInstance;
|
||||
}
|
||||
|
||||
- (NSString *)clientID {
|
||||
return self.authUI.auth.app.options.clientID;
|
||||
}
|
||||
|
||||
#pragma mark - FUIAuthProvider
|
||||
|
||||
- (nullable NSString *)providerID {
|
||||
return FIRGoogleAuthProviderID;
|
||||
}
|
||||
|
||||
- (nullable NSString *)accessToken {
|
||||
if (self.authUI.isEmulatorEnabled) {
|
||||
return nil;
|
||||
}
|
||||
return [self googleSignIn].currentUser.authentication.accessToken;
|
||||
}
|
||||
|
||||
- (nullable NSString *)idToken {
|
||||
if (self.authUI.isEmulatorEnabled) {
|
||||
return nil;
|
||||
}
|
||||
return [self googleSignIn].currentUser.authentication.idToken;
|
||||
}
|
||||
|
||||
- (NSString *)shortName {
|
||||
return @"Google";
|
||||
}
|
||||
|
||||
- (NSString *)signInLabel {
|
||||
return FUILocalizedStringFromTableInBundle(kSignInWithGoogle,
|
||||
kTableName,
|
||||
[FUIGoogleAuth bundle]);
|
||||
}
|
||||
|
||||
- (UIImage *)icon {
|
||||
return [FUIAuthUtils imageNamed:@"ic_google" fromBundle:[FUIGoogleAuth bundle]];
|
||||
}
|
||||
|
||||
- (UIColor *)buttonBackgroundColor {
|
||||
return [UIColor whiteColor];
|
||||
}
|
||||
|
||||
- (UIColor *)buttonTextColor {
|
||||
return [UIColor colorWithWhite:0 alpha:0.54f];
|
||||
}
|
||||
|
||||
#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 {
|
||||
|
||||
if (self.authUI.isEmulatorEnabled) {
|
||||
[self signInWithOAuthProvider:self.providerForEmulator
|
||||
presentingViewController:presentingViewController
|
||||
completion:completion];
|
||||
return;
|
||||
}
|
||||
|
||||
GIDSignIn *signIn = [self googleSignIn];
|
||||
NSString *clientID = [self clientID];
|
||||
|
||||
if (!clientID) {
|
||||
[NSException raise:NSInternalInconsistencyException
|
||||
format:@"OAuth client ID not found. Please make sure Google Sign-In is enabled in "
|
||||
@"the Firebase console. You may have to download a new GoogleService-Info.plist file after "
|
||||
@"enabling Google Sign-In."];
|
||||
}
|
||||
|
||||
GIDConfiguration *config = [[GIDConfiguration alloc] initWithClientID:clientID];
|
||||
|
||||
FUIAuthProviderSignInCompletionBlock callback = ^(FIRAuthCredential *_Nullable credential,
|
||||
NSError *_Nullable error,
|
||||
_Nullable FIRAuthResultCallback result,
|
||||
NSDictionary *_Nullable userInfo) {
|
||||
if (completion) {
|
||||
completion(credential, error, result, userInfo);
|
||||
}
|
||||
};
|
||||
|
||||
[signIn signInWithConfiguration:config
|
||||
presentingViewController:presentingViewController
|
||||
hint:defaultValue
|
||||
callback:^(GIDGoogleUser *user, NSError *error) {
|
||||
[self handleSignInWithUser:user
|
||||
error:error
|
||||
presentingViewController:presentingViewController
|
||||
callback:callback];
|
||||
}];
|
||||
}
|
||||
|
||||
- (void)signInWithOAuthProvider:(FIROAuthProvider *)oauthProvider
|
||||
presentingViewController:(nullable UIViewController *)presentingViewController
|
||||
completion:(nullable FUIAuthProviderSignInCompletionBlock)completion {
|
||||
oauthProvider.scopes = [[self class] defaultScopes];
|
||||
|
||||
[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);
|
||||
}
|
||||
}];
|
||||
}
|
||||
|
||||
- (void)requestScopesWithPresentingViewController:(UIViewController *)presentingViewController
|
||||
completion:(FUIAuthProviderSignInCompletionBlock)completion {
|
||||
GIDSignIn *signIn = [self googleSignIn];
|
||||
[signIn addScopes:self.scopes presentingViewController:presentingViewController
|
||||
callback:^(GIDGoogleUser *user, NSError *error) {
|
||||
[self handleSignInWithUser:user
|
||||
error:error
|
||||
presentingViewController:presentingViewController
|
||||
callback:^(FIRAuthCredential *credential,
|
||||
NSError *error,
|
||||
FIRAuthResultCallback result,
|
||||
NSDictionary<NSString *,id> *userInfo) {
|
||||
if (completion != nil) {
|
||||
completion(credential, error, result, userInfo);
|
||||
}
|
||||
}];
|
||||
}];
|
||||
}
|
||||
|
||||
- (void)signOut {
|
||||
if (self.authUI.isEmulatorEnabled) {
|
||||
return;
|
||||
}
|
||||
GIDSignIn *signIn = [self googleSignIn];
|
||||
[signIn signOut];
|
||||
}
|
||||
|
||||
- (BOOL)handleOpenURL:(NSURL *)URL sourceApplication:(NSString *)sourceApplication {
|
||||
if (self.authUI.isEmulatorEnabled) {
|
||||
return NO;
|
||||
}
|
||||
GIDSignIn *signIn = [self googleSignIn];
|
||||
return [signIn handleURL:URL];
|
||||
}
|
||||
|
||||
- (NSString *)email {
|
||||
return _email;
|
||||
}
|
||||
|
||||
- (void)handleSignInWithUser:(GIDGoogleUser *)user
|
||||
error:(NSError *)error
|
||||
presentingViewController:(UIViewController *)presentingViewController
|
||||
callback:(FUIAuthProviderSignInCompletionBlock)callback {
|
||||
if (error) {
|
||||
if (error.code == kGIDSignInErrorCodeCanceled) {
|
||||
NSError *newError = [FUIAuthErrorUtils userCancelledSignInError];
|
||||
if (callback) {
|
||||
callback(nil, newError, nil, nil);
|
||||
}
|
||||
} else {
|
||||
NSError *newError =
|
||||
[FUIAuthErrorUtils providerErrorWithUnderlyingError:error
|
||||
providerID:FIRGoogleAuthProviderID];
|
||||
if (callback) {
|
||||
callback(nil, newError, nil, nil);
|
||||
}
|
||||
}
|
||||
return;
|
||||
}
|
||||
_email = user.profile.email;
|
||||
UIActivityIndicatorView *activityView =
|
||||
[FUIAuthBaseViewController addActivityIndicator:presentingViewController.view];
|
||||
[activityView startAnimating];
|
||||
FIRAuthCredential *credential =
|
||||
[FIRGoogleAuthProvider credentialWithIDToken:user.authentication.idToken
|
||||
accessToken:user.authentication.accessToken];
|
||||
FIRAuthResultCallback result = ^(FIRUser *_Nullable user,
|
||||
NSError *_Nullable error) {
|
||||
[activityView stopAnimating];
|
||||
[activityView removeFromSuperview];
|
||||
};
|
||||
if (callback) {
|
||||
callback(credential, error, result, nil);
|
||||
}
|
||||
}
|
||||
|
||||
@end
|
||||
Generated
+100
@@ -0,0 +1,100 @@
|
||||
//
|
||||
// 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 <FirebaseAuthUI/FirebaseAuthUI.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
/** @var kGoogleGamesScope
|
||||
@brief The OAuth scope string for the "Games" scope.
|
||||
*/
|
||||
static NSString *const kGoogleGamesScope = @"https://www.googleapis.com/auth/games";
|
||||
|
||||
/** @var kGooglePlusMeScope
|
||||
@brief The OAuth scope string for the "plus.me" scope.
|
||||
*/
|
||||
static NSString *const kGooglePlusMeScope = @"https://www.googleapis.com/auth/plus.me";
|
||||
|
||||
/** @var kGooglePlusMeScope
|
||||
@brief The OAuth scope string for the user's email scope.
|
||||
*/
|
||||
static NSString *const kGoogleUserInfoEmailScope = @"https://www.googleapis.com/auth/userinfo.email";
|
||||
|
||||
/** @var kGooglePlusMeScope
|
||||
@brief The OAuth scope string for the basic G+ profile information scope.
|
||||
*/
|
||||
static NSString *const kGoogleUserInfoProfileScope = @"https://www.googleapis.com/auth/userinfo.profile";
|
||||
|
||||
/** @class FUIGoogleAuth
|
||||
@brief AuthUI components for Google Sign In.
|
||||
*/
|
||||
@interface FUIGoogleAuth : NSObject <FUIAuthProvider>
|
||||
|
||||
/** @property scopes
|
||||
@brief The scopes to use with Google Sign In.
|
||||
@remarks Defaults to using email and profile scopes. For a list of all scopes
|
||||
see https://developers.google.com/identity/protocols/googlescopes.
|
||||
Starting with GoogleSignIn 6.0, scopes are no longer granted upon first authentication and
|
||||
should be requested lazily.
|
||||
*/
|
||||
@property(nonatomic, copy, readonly) 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. Calls designated init with default
|
||||
scopes of "email" and "profile".
|
||||
@param authUI The @c FUIAuth instance that manages this provider.
|
||||
*/
|
||||
- (instancetype)initWithAuthUI:(FUIAuth *)authUI;
|
||||
|
||||
/** @fn initWithAuthUI:scopes:
|
||||
@brief Designated initializer.
|
||||
@param authUI The @c FUIAuth instance that manages this provider.
|
||||
@param scopes The user account scopes required by the app. A list of possible scopes can be
|
||||
found at https://developers.google.com/identity/protocols/googlescopes.
|
||||
Starting with GoogleSignIn 6.0, scopes are no longer granted upon first authentication and
|
||||
should be requested lazily.
|
||||
*/
|
||||
- (instancetype)initWithAuthUI:(FUIAuth *)authUI
|
||||
scopes:(NSArray <NSString *> *)scopes NS_DESIGNATED_INITIALIZER;
|
||||
|
||||
/** @fn init
|
||||
@brief Convenience initializer. Calls designated init with default
|
||||
scopes of "email" and "profile".
|
||||
*/
|
||||
- (instancetype)init
|
||||
__attribute__((deprecated("Instead use initWithAuthUI:")));
|
||||
|
||||
/** @fn initWithScopes:
|
||||
@param scopes The user account scopes required by the app. A list of possible scopes can be
|
||||
found at https://developers.google.com/identity/protocols/googlescopes
|
||||
*/
|
||||
- (instancetype)initWithScopes:(NSArray <NSString *> *)scopes
|
||||
__attribute__((deprecated("Instead use initWithAuthUI:permissions:"))) NS_DESIGNATED_INITIALIZER;
|
||||
|
||||
/** @fn requestScopesWithPresentingViewController:completion:
|
||||
@brief Requests the scopes in the `scopes` array.
|
||||
*/
|
||||
- (void)requestScopesWithPresentingViewController:(UIViewController *)presentingViewController
|
||||
completion:(FUIAuthProviderSignInCompletionBlock)completion;
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
//
|
||||
// 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 FirebaseGoogleAuthUI.
|
||||
FOUNDATION_EXPORT double FirebaseGoogleAuthUIVersionNumber;
|
||||
|
||||
//! Project version string for FirebaseGoogleAuthUI.
|
||||
FOUNDATION_EXPORT const unsigned char FirebaseGoogleAuthUIVersionString[];
|
||||
|
||||
#import "FUIGoogleAuth.h"
|
||||
BIN
Binary file not shown.
|
After Width: | Height: | Size: 549 B |
BIN
Binary file not shown.
|
After Width: | Height: | Size: 999 B |
BIN
Binary file not shown.
|
After Width: | Height: | Size: 1.4 KiB |
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/ar.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "تسجيل الدخول عبر Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/bg.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Вход с Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/bn.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Google দিয়ে সাইন-ইন করুন";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/ca.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Inicia la sessió amb Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/cs.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Přihlaste se účtem Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/da.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Log ind med Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Über Google anmelden";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Über Google anmelden";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/de.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Über Google anmelden";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/el.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Σύνδεση μέσω Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Sign in with Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Sign in with Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Sign in with Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Sign in with Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Sign in with Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Sign in with Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Sign in with Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/en.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Sign in with Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Acceder con Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Acceder con Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Acceder con Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Acceder con Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Acceder con Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Acceder con Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Acceder con Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Acceder con Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Acceder con Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Acceder con Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Acceder con Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Acceder con Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Acceder con Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Acceder con Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Acceder con Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Acceder con Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Acceder con Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Acceder con Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Acceder con Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Acceder con Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/es.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Iniciar sesión con Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/fa.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "ورود به سیستم با Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/fi.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Kirjaudu Google-tilillä";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Mag-sign in sa Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Se connecter avec Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/fr.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Se connecter avec Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Über Google anmelden";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/gu.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Google વડે સાઇન ઇન કરો";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/he.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "כניסה באמצעות Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/hi.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Google से प्रवेश करें";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/hr.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Prijava putem Googlea";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/hu.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Bejelentkezés Google-fiókkal";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/id.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Login dengan Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/it.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Accedi con Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/ja.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Google でログイン";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/kn.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Google ಮೂಲಕ ಸೈನ್ ಇನ್ ಮಾಡಿ";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/ko.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Google 계정으로 로그인";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/ln.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Se connecter avec Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/lt.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Prisijungti per „Google“";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/lv.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Pierakstīties ar Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/mr.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Googleने साइन इन करा";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/ms.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Log masuk dengan Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/nb.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Logg på med Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/nl.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Inloggen met Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Logg på med Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/pl.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Zaloguj się przez Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Fazer login com o Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Iniciar sessão com o Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/pt.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Fazer login com o Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/ro.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Conectați-vă cu Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/ru.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Войти через аккаунт Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/sk.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Prihlásiť sa cez Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/sl.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Prijava z Google Računom";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Prijavi me pomoću Google-a";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/sr.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Пријави ме помоћу Google-а";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/sv.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Logga in med Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/ta.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Google மூலம் உள்நுழைக";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/th.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "ลงชื่อเข้าใช้ด้วย Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/tr.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Google ile oturum aç";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/uk.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Увійти через Google";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/ur.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Google کے ساتھ سائن ان کریں";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/vi.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "Đăng nhập bằng Google";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "使用 Google 帐号登录";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "使用 Google 帳戶登入";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "使用 Google 帳戶登入";
|
||||
Pods/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI/Sources/Strings/zh.lproj/FirebaseGoogleAuthUI.strings
Generated
+2
@@ -0,0 +1,2 @@
|
||||
/* The text of the button used to sign-in with Google. */
|
||||
"SignInWithGoogle" = "使用 Google 帐号登录";
|
||||
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