Skip to content

Commit 468fb08

Browse files
committed
Fix header imports
1 parent 97d6ea8 commit 468fb08

36 files changed

Lines changed: 299 additions & 182 deletions

FirebaseAnonymousAuthUI.podspec

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'FirebaseAnonymousAuthUI'
3+
s.version = '11.0.0'
4+
s.summary = 'Provides anonymous auth support for FirebaseAuthUI.'
5+
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
6+
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
7+
s.source = { :git => 'https://github.com/firebase/FirebaseUI-iOS.git', :tag => 'v' + s.version.to_s}
8+
s.author = 'Firebase'
9+
s.platform = :ios
10+
s.ios.deployment_target = '10.0'
11+
s.ios.framework = 'UIKit'
12+
s.static_framework = true
13+
s.requires_arc = true
14+
s.cocoapods_version = '>= 1.8.0'
15+
s.pod_target_xcconfig = {
16+
'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"',
17+
}
18+
19+
s.public_header_files = 'FirebaseAnonymousAuthUI/Sources/Public/*.h'
20+
s.source_files = 'FirebaseAnonymousAuthUI/Sources/**/*.{h,m}'
21+
s.dependency 'FirebaseAuthUI'
22+
s.resource_bundle = {
23+
'FirebaseAnonymousAuthUI' => [
24+
'FirebaseAnonymousAuthUI/Sources/{Resources,Strings}/*.{png,lproj}'
25+
]
26+
}
27+
end

FirebaseAnonymousAuthUI/FirebaseAnonymousAuthUITests/FirebaseAnonymousAuthUITests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#import <XCTest/XCTest.h>
1919

2020
#import <FirebaseAuth/FirebaseAuth.h>
21-
#import <FirebaseUI/FirebaseAuthUI.h>
21+
#import <FirebaseAuthUI/FirebaseAuthUI.h>
2222

2323
#import "FUIAnonymousAuth.h"
2424

FirebaseAuthUI.podspec

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'FirebaseAuthUI'
3+
s.version = '11.0.0'
4+
s.summary = 'A prebuilt authentication UI flow for Firebase Auth.'
5+
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
6+
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
7+
s.source = { :git => 'https://github.com/firebase/FirebaseUI-iOS.git', :tag => 'v' + s.version.to_s}
8+
s.author = 'Firebase'
9+
s.platform = :ios
10+
s.ios.deployment_target = '10.0'
11+
s.ios.framework = 'UIKit'
12+
s.static_framework = true
13+
s.requires_arc = true
14+
s.cocoapods_version = '>= 1.8.0'
15+
s.pod_target_xcconfig = {
16+
'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"',
17+
}
18+
19+
s.public_header_files = 'FirebaseAuthUI/Sources/Public/*.h'
20+
s.source_files = 'FirebaseAuthUI/Sources/**/*.{h,m}'
21+
s.dependency 'Firebase/Auth', '>= 7.2.0'
22+
s.dependency 'GoogleUtilities/UserDefaults'
23+
s.resource_bundle = {
24+
'FirebaseAuthUI' => ['FirebaseAuthUI/Sources/{Resources,Strings}/*.{xib,png,lproj}']
25+
}
26+
27+
end

FirebaseAuthUI/Sources/Public/FirebaseAuthUI.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ FOUNDATION_EXPORT const unsigned char FirebaseAuthUIVersionString[];
2626
#import "FUIAccountSettingsViewController.h"
2727

2828
#import "FUIAuth.h"
29+
#import "FUIAuth_Internal.h"
2930
#import "FUIAuthBaseViewController.h"
31+
#import "FUIAuthBaseViewController_Internal.h"
3032
#import "FUIAuthErrorUtils.h"
3133
#import "FUIAuthPickerViewController.h"
3234
#import "FUIAuthProvider.h"

FirebaseDatabaseUI.podspec

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'FirebaseDatabaseUI'
3+
s.version = '11.0.0'
4+
s.summary = 'Prebuilt data sources and UI bindings for Firebase Database.'
5+
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
6+
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
7+
s.source = { :git => 'https://github.com/firebase/FirebaseUI-iOS.git', :tag => 'v' + s.version.to_s}
8+
s.author = 'Firebase'
9+
s.platform = :ios
10+
s.ios.deployment_target = '10.0'
11+
s.ios.framework = 'UIKit'
12+
s.requires_arc = true
13+
s.cocoapods_version = '>= 1.8.0'
14+
s.pod_target_xcconfig = {
15+
'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"',
16+
}
17+
18+
s.public_header_files = 'FirebaseDatabaseUI/Sources/Public/*.h'
19+
s.source_files = 'FirebaseDatabaseUI/Sources/**/*.{h,m}'
20+
s.dependency 'Firebase/Database'
21+
22+
end

FirebaseEmailAuthUI.podspec

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'FirebaseEmailAuthUI'
3+
s.version = '11.0.0'
4+
s.summary = 'An email authentication provider for FirebaseAuthUI.'
5+
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
6+
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
7+
s.source = { :git => 'https://github.com/firebase/FirebaseUI-iOS.git', :tag => 'v' + s.version.to_s}
8+
s.author = 'Firebase'
9+
s.platform = :ios
10+
s.ios.deployment_target = '10.0'
11+
s.ios.framework = 'UIKit'
12+
s.requires_arc = true
13+
s.cocoapods_version = '>= 1.8.0'
14+
s.pod_target_xcconfig = {
15+
'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"',
16+
}
17+
18+
s.public_header_files = 'FirebaseEmailAuthUI/Sources/Public/*.h'
19+
s.source_files = 'FirebaseEmailAuthUI/Sources/**/*.{h,m}'
20+
s.dependency 'FirebaseAuthUI'
21+
s.resource_bundle = {
22+
'FirebaseEmailAuthUI' => ['FirebaseEmailAuthUI/Sources/Resources/*.{xib,png}']
23+
}
24+
25+
end

FirebaseEmailAuthUI/FirebaseEmailAuthUITests/FirebaseEmailAuthUITests.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616

1717
#import "FUIEmailAuth.h"
1818
#import <FirebaseAuth/FirebaseAuth.h>
19-
#import <FirebaseUI/FUIAuthErrorUtils.h>
19+
#import <FirebaseAuthUI/FUIAuthErrorUtils.h>
2020
#import "FUIAuthUtils.h"
21-
#import <FirebaseUI/FUIAuth_Internal.h>
21+
#import <FirebaseAuthUI/FUIAuth_Internal.h>
2222
#import <FirebaseEmailAuthUI/FirebaseEmailAuthUI.h>
2323
#import <OCMock/OCMock.h>
2424
#import <XCTest/XCTest.h>

FirebaseEmailAuthUI/Sources/FUIEmailAuthStrings.h

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

17-
#if SWIFT_PACKAGE
18-
@import FirebaseAuthUI;
19-
#else
20-
#import <FirebaseUI/FirebaseAuthUI.h>
21-
#endif // SWIFT_PACKAGE
17+
#import <FirebaseAuthUI/FirebaseAuthUI.h>
2218

2319
NS_ASSUME_NONNULL_BEGIN
2420

FirebaseEmailAuthUI/Sources/FUIEmailAuth_Internal.h

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,7 @@
1616

1717
#import "FirebaseEmailAuthUI/Sources/Public/FUIEmailAuth.h"
1818

19-
#if SWIFT_PACKAGE
20-
@import FirebaseAuthUI;
21-
#else
22-
#import <FirebaseUI/FUIAuthBaseViewController_Internal.h>
23-
#endif
19+
#import <FirebaseAuthUI/FirebaseAuthUI.h>
2420

2521
NS_ASSUME_NONNULL_BEGIN
2622

FirebaseEmailAuthUI/Sources/FUIEmailEntryViewController.m

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,7 @@
1818

1919
#import <FirebaseAuth/FirebaseAuth.h>
2020

21-
#if SWIFT_PACKAGE
22-
@import FirebaseAuthUI;
23-
#else
24-
#import <FirebaseUI/FirebaseAuthUI.h>
25-
#import <FirebaseUI/FUIAuth_Internal.h>
26-
#import <FirebaseUI/FUIAuthBaseViewController_Internal.h>
27-
#endif // SWIFT_PACKAGE
21+
#import <FirebaseAuthUI/FirebaseAuthUI.h>
2822

2923
#import "FirebaseEmailAuthUI/Sources/Public/FUIEmailAuth.h"
3024
#import "FirebaseEmailAuthUI/Sources/FUIEmailAuth_Internal.h"

0 commit comments

Comments
 (0)