Skip to content

Commit 6a42a4c

Browse files
committed
fix chat demo project to use local development pods
1 parent 4c4075f commit 6a42a4c

File tree

11 files changed

+31
-93
lines changed

11 files changed

+31
-93
lines changed

FirebaseUI_dev.podspec

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

FirebaseUI_dev_auth.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
2-
s.name = 'FirebaseUI-auth'
3-
s.version = '0.5.4'
4-
s.summary = 'UI binding libraries for Firebase.'
2+
s.name = 'FirebaseAuthUI'
3+
s.version = '0.5.5'
4+
s.summary = 'UI Auth Base library for Firebase.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0' }
77
s.author = 'Firebase'

FirebaseUI_dev_db.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
2-
s.name = 'FirebaseUI-db'
3-
s.version = '0.5.4'
4-
s.summary = 'UI binding libraries for Firebase.'
2+
s.name = 'FirebaseDatabaseUI'
3+
s.version = '0.5.5'
4+
s.summary = 'Firebase Database UI binding library.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0' }
77
s.author = 'Firebase'

FirebaseUI_dev_fb.podspec

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
2-
s.name = 'FirebaseUI-fb'
3-
s.version = '0.5.4'
2+
s.name = 'FirebaseFacebookAuthUI'
3+
s.version = '0.5.5'
44
s.summary = 'UI binding libraries for Firebase.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0' }
@@ -12,17 +12,10 @@ Pod::Spec.new do |s|
1212
s.requires_arc = true
1313
s.default_subspecs = 'Facebook'
1414

15-
s.subspec 'AuthBase' do |authbase|
16-
authbase.source_files = "FirebaseAuthUI/*.{h,m}"
17-
authbase.resources = "FirebaseAuthUI/{Resources,Strings}/*", "FirebaseAuthUI/*.xib"
18-
authbase.dependency 'Firebase/Analytics', '~> 3.0'
19-
authbase.dependency 'Firebase/Auth', '~> 3.0'
20-
end
21-
2215
s.subspec 'Facebook' do |facebook|
2316
facebook.source_files = "FirebaseFacebookAuthUI/*.{h,m}"
2417
facebook.resources = "FirebaseFacebookAuthUI/{Resources,Strings}/*", "FirebaseFacebookAuthUI/*.xib"
25-
facebook.dependency 'FirebaseUI/AuthBase'
18+
facebook.dependency 'FirebaseAuthUI/AuthBase'
2619
facebook.dependency 'FBSDKLoginKit', '~> 4.0'
2720
end
2821

FirebaseUI_dev_ggl.podspec

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
2-
s.name = 'FirebaseUI-ggl'
3-
s.version = '0.5.4'
4-
s.summary = 'UI binding libraries for Firebase.'
2+
s.name = 'FirebaseGoogleAuthUI'
3+
s.version = '0.5.5'
4+
s.summary = 'Google UI binding library for Firebase.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0' }
77
s.author = 'Firebase'
@@ -15,15 +15,7 @@ Pod::Spec.new do |s|
1515
s.subspec 'Google' do |google|
1616
google.source_files = "FirebaseGoogleAuthUI/*.{h,m}"
1717
google.resources = "FirebaseGoogleAuthUI/{Resources,Strings}/*", "FirebaseGoogleAuthUI/*.xib"
18-
google.dependency 'FirebaseUI/AuthBase'
18+
google.dependency 'FirebaseAuthUI/AuthBase'
1919
google.dependency 'GoogleSignIn', '~> 4.0'
2020
end
21-
22-
s.subspec 'AuthBase' do |authbase|
23-
authbase.source_files = "FirebaseAuthUI/*.{h,m}"
24-
authbase.resources = "FirebaseAuthUI/{Resources,Strings}/*", "FirebaseAuthUI/*.xib"
25-
authbase.dependency 'Firebase/Analytics', '~> 3.0'
26-
authbase.dependency 'Firebase/Auth', '~> 3.0'
27-
end
28-
2921
end

samples/objc/FirebaseUIChat/AppDelegate.m

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@
1616

1717
#import "AppDelegate.h"
1818
@import Firebase;
19-
@import FirebaseAuthUI;
19+
// Uncomment when using frameworks
20+
//@import FirebaseAuthUI;
21+
#import <FirebaseAuthUI.h>
2022

2123
@implementation AppDelegate
2224

samples/objc/FirebaseUIChat/Samples/Auth/FIRAuthViewController.m

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@
1818

1919
#import "FIRAuthViewController.h"
2020
@import Firebase;
21-
@import FirebaseAuthUI;
21+
// Uncomment when using frameworks
22+
//@import FirebaseAuthUI;
23+
#import <FirebaseAuthUI.h>
2224

23-
// Uncomment when using frawemorks
25+
// Uncomment when using frameworks
2426
//@import FirebaseGoogleAuthUI;
2527
#import <FIRGoogleAuthUI.h>
26-
// Uncomment when using frawemorks
28+
// Uncomment when using frameworks
2729
//@import FirebaseFacebookAuthUI;
2830
#import <FIRFacebookAuthUI.h>
2931

samples/objc/FirebaseUIChat/Samples/Chat/MessageDataSource.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-
// Uncomment when using frawemorks
17+
// Uncomment when using frameworks
1818
//@import FirebaseDatabaseUI;
1919
#import <FirebaseTableViewDataSource.h>
2020

samples/objc/FirebaseUIChat/Samples/Chat/ViewController.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
@import UIKit;
1818
@import FirebaseDatabase;
1919

20-
// Uncomment when using frawemorks
20+
// Uncomment when using frameworks
2121
//@import FirebaseDatabaseUI;
2222
#import <FirebaseTableViewDataSource.h>
2323

samples/objc/FirebaseUIChat/Samples/Chat/ViewController.m

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

17-
@import FirebaseAuthUI;
17+
// Uncomment when using frameworks
18+
//@import FirebaseAuthUI;
19+
#import <FirebaseAuthUI.h>
20+
1821
#import "ViewController.h"
1922
#import "Message.h"
2023
#import "MessageTableViewCell.h"

0 commit comments

Comments
 (0)