Skip to content

Commit ebe6365

Browse files
authored
Installations - new public header structure (#6174)
1 parent 54c9f52 commit ebe6365

18 files changed

+16
-18
lines changed

FirebaseInstallations.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Pod::Spec.new do |s|
3333
'GoogleUtilities/UserDefaults/Private/*.h',
3434
]
3535
s.public_header_files = [
36-
base_dir + 'Library/Public/*.h',
36+
base_dir + 'Library/Public/FirebaseInstallations/*.h',
3737
base_dir + 'Library/Private/*.h',
3838
]
3939
s.private_header_files = base_dir + 'Library/Private/*.h'

FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h

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

1717
#import <Foundation/Foundation.h>
1818

19-
#import "FirebaseInstallations/Source/Library/Public/FIRInstallationsErrors.h"
19+
#import "FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsErrors.h"
2020

2121
@class FIRInstallationsHTTPError;
2222

FirebaseInstallations/Source/Library/FIRInstallations.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
#import "FirebaseInstallations/Source/Library/Public/FIRInstallations.h"
17+
#import "FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallations.h"
1818

1919
#if __has_include(<FBLPromises/FBLPromises.h>)
2020
#import <FBLPromises/FBLPromises.h>
@@ -31,7 +31,7 @@
3131
#import "FirebaseInstallations/Source/Library/FIRInstallationsLogger.h"
3232
#import "FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h"
3333
#import "FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h"
34-
#import "FirebaseInstallations/Source/Library/Public/FIRInstallationsVersion.h"
34+
#import "FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsVersion.h"
3535

3636
NS_ASSUME_NONNULL_BEGIN
3737

FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.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 "FirebaseInstallations/Source/Library/Public/FIRInstallationsAuthTokenResult.h"
17+
#import "FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsAuthTokenResult.h"
1818

1919
NS_ASSUME_NONNULL_BEGIN
2020

FirebaseInstallations/Source/Library/FIRInstallationsVersion.m

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 "FirebaseInstallations/Source/Library/Public/FIRInstallationsVersion.h"
17+
#import "FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsVersion.h"
1818

1919
// Convert the macro to a string
2020
#define STR(x) STR_EXPAND(x)

FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m

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

1717
#import "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h"
1818

19-
#import "FirebaseInstallations/Source/Library/Public/FIRInstallationsVersion.h"
19+
#import "FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsVersion.h"
2020

2121
#if __has_include(<FBLPromises/FBLPromises.h>)
2222
#import <FBLPromises/FBLPromises.h>

FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,4 @@
1616
// Installations Public headers. Any package manager complexity should be
1717
// handled here.
1818

19-
#if SWIFT_PACKAGE
20-
@import FirebaseInstallations;
21-
#else
2219
#import <FirebaseInstallations/FirebaseInstallations.h>
23-
#endif

0 commit comments

Comments
 (0)