Skip to content

Commit 1ffe913

Browse files
committed
Merge branch 'master' of github.com:firebase/FirebaseUI-iOS
2 parents c180b69 + 5e77c22 commit 1ffe913

37 files changed

+930
-273
lines changed

CONTRIBUTING.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,26 @@ need to be sure of various other things—for instance that you'll tell us if yo
1212
know that your code infringes on other people's patents. You don't have to sign
1313
the CLA until after you've submitted your code for review and a member has
1414
approved it, but you must do it before we can put your code into our codebase.
15+
16+
### Adding new features
17+
1518
Before you start working on a larger contribution, you should get in touch with
1619
us first through the issue tracker with your idea so that we can help out and
1720
possibly guide you. Coordinating up front makes it much easier to avoid
1821
frustration later on.
1922

23+
If this has been discussed in an issue, make sure to mention the issue number.
24+
If not, go file an issue about this to make sure this is a desirable change.
25+
26+
If this is a new feature please co-ordinate with someone on [FirebaseUI-Android](https://github.com/firebase/FirebaseUI-Android)
27+
to make sure that we can implement this on both platforms and maintain feature parity.
28+
Feature parity (where it makes sense) is a strict requirement for feature development in FirebaseUI.
29+
2030
### Code reviews
2131

2232
All submissions, including submissions by project members, require review. We
23-
use Github pull requests for this purpose.
33+
use Github pull requests for this purpose. We adhere to the
34+
[Google Objective-C style guide](https://google.github.io/styleguide/objcguide.xml).
2435

2536
### The small print
2637

FirebaseAuthUI/FirebaseAuthUI.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ FOUNDATION_EXPORT double FirebaseAuthUIVersionNumber;
2222
//! Project version string for FirebaseAuthUI.
2323
FOUNDATION_EXPORT const unsigned char FirebaseAuthUIVersionString[];
2424

25-
#import <FirebaseAuthUI/FIRAuthPickerViewController.h>
26-
#import <FirebaseAuthUI/FIRAuthProviderUI.h>
27-
#import <FirebaseAuthUI/FIRAuthUI.h>
28-
#import <FirebaseAuthUI/FIRAuthUIBaseViewController.h>
29-
#import <FirebaseAuthUI/FIRAuthUIErrorUtils.h>
25+
#import <FIRAuthPickerViewController.h>
26+
#import <FIRAuthProviderUI.h>
27+
#import <FIRAuthUI.h>
28+
#import <FIRAuthUIBaseViewController.h>
29+
#import <FIRAuthUIErrorUtils.h>
3030

FirebaseFacebookAuthUI/FIRFacebookAuthUI.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// limitations under the License.
1515
//
1616

17-
@import FirebaseAuthUI;
17+
#import <FIRAuthUI.h>
1818

1919
NS_ASSUME_NONNULL_BEGIN
2020

FirebaseFacebookAuthUI/FIRFacebookAuthUI.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#import <FirebaseAuth/FIRUserInfo.h>
2121
#import <FBSDKCoreKit/FBSDKCoreKit.h>
2222
#import <FBSDKLoginKit/FBSDKLoginKit.h>
23+
#import <FIRAuthUIErrorUtils.h>
2324

2425
/** @var kBundleFileName
2526
@brief The name of the bundle containing Facebook auth provider assets/resources.

FirebaseGoogleAuthUI/FIRGoogleAuthUI.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// limitations under the License.
1515
//
1616

17-
@import FirebaseAuthUI;
17+
#import <FIRAuthUI.h>
1818

1919
NS_ASSUME_NONNULL_BEGIN
2020

FirebaseGoogleAuthUI/FIRGoogleAuthUI.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
#import <GoogleSignIn/GoogleSignIn.h>
2020
#import <FirebaseAuth/FIRGoogleAuthProvider.h>
2121
#import <FirebaseAuth/FIRUserInfo.h>
22+
#import <FIRAuthUIErrorUtils.h>
2223

2324
/** @var kGoogleGamesScope
2425
@brief The OAuth scope string for the "Games" scope.

FirebaseUI_dev.podspec

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
1818
end
1919

2020
s.subspec 'Database' do |database|
21-
database.source_files = "FirebaseUI/{Database,Util}/**/*.{h,m}"
21+
database.source_files = "FirebaseDatabaseUI/*.{h,m}"
2222
database.dependency 'Firebase/Database', '~> 3.0'
2323
database.ios.framework = 'FirebaseDatabase'
2424
database.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"${PODS_ROOT}/FirebaseDatabase/Frameworks"','HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/Firebase/**"' }
@@ -31,22 +31,22 @@ Pod::Spec.new do |s|
3131
end
3232

3333
s.subspec 'AuthBase' do |authbase|
34-
authbase.source_files = "FirebaseUI/Auth/AuthUI/Source/*.{h,m}"
35-
authbase.resources = "FirebaseUI/Auth/AuthUI/{Resources,Strings}/*", "FirebaseUI/Auth/AuthUI/Source/*.xib"
34+
authbase.source_files = "FirebaseAuthUI/*.{h,m}"
35+
authbase.resources = "FirebaseAuthUI/{Resources,Strings}/*", "FirebaseAuthUI/*.xib"
3636
authbase.dependency 'Firebase/Analytics', '~> 3.0'
3737
authbase.dependency 'Firebase/Auth', '~> 3.0'
3838
end
3939

4040
s.subspec 'Facebook' do |facebook|
41-
facebook.source_files = "FirebaseUI/Auth/AuthProviderUI/Facebook/Source/*.{h,m}"
42-
facebook.resources = "FirebaseUI/Auth/AuthProviderUI/Facebook/{Resources,Strings}/*", "FirebaseUI/Auth/AuthProviderUI/Facebook/Source/*.xib"
41+
facebook.source_files = "FirebaseFacebookAuthUI/*.{h,m}"
42+
facebook.resources = "FirebaseFacebookAuthUI/{Resources,Strings}/*", "FirebaseFacebookAuthUI/*.xib"
4343
facebook.dependency 'FirebaseUI/AuthBase'
4444
facebook.dependency 'FBSDKLoginKit', '~> 4.0'
4545
end
4646

4747
s.subspec 'Google' do |google|
48-
google.source_files = "FirebaseUI/Auth/AuthProviderUI/Google/Source/*.{h,m}"
49-
google.resources = "FirebaseUI/Auth/AuthProviderUI/Google/{Resources,Strings}/*", "FirebaseUI/Auth/AuthProviderUI/Google/Source/*.xib"
48+
google.source_files = "FirebaseGoogleAuthUI/*.{h,m}"
49+
google.resources = "FirebaseGoogleAuthUI/{Resources,Strings}/*", "FirebaseGoogleAuthUI/*.xib"
5050
google.dependency 'FirebaseUI/AuthBase'
5151
google.dependency 'GoogleSignIn', '~> 4.0'
5252
end

examples/FirebaseUIChat/FirebaseUIChat/Base.lproj/Main.storyboard

Lines changed: 0 additions & 72 deletions
This file was deleted.

examples/FirebaseUIChat/FirebaseUIChat/ViewController.m

Lines changed: 0 additions & 133 deletions
This file was deleted.
File renamed without changes.

0 commit comments

Comments
 (0)