Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
paulb777 committed Oct 27, 2024
1 parent 43bc447 commit 4c44769
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
#import "FirebaseAppCheck/Sources/Core/FIRAppCheckToken+Internal.h"
#import "FirebaseAppCheck/Sources/Core/FIRHeartbeatLogger+AppCheck.h"

@import FirebaseCoreExtension;

NS_ASSUME_NONNULL_BEGIN

@interface FIRAppAttestProvider ()
Expand Down
1 change: 0 additions & 1 deletion FirebaseAppDistribution.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ iOS SDK for App Distribution for Firebase.
base_dir = "FirebaseAppDistribution/Sources/"
s.source_files = [
base_dir + '**/*.{c,h,m,mm}',
'FirebaseCore/Extension/*.h',
'FirebaseInstallations/Source/Library/Private/*.h',
]
s.public_header_files = base_dir + 'Public/FirebaseAppDistribution/*.h'
Expand Down
3 changes: 3 additions & 0 deletions FirebaseDynamicLinks/Tests/Unit/FIRDynamicLinksTest.m
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
#import "FirebaseDynamicLinks/Sources/Utilities/FDLUtilities.h"
#import "Interop/Analytics/Public/FIRAnalyticsInterop.h"

@import FirebaseCore;
@import FirebaseCoreExtension;

static NSString *const kAPIKey = @"myAPIKey";
static NSString *const kStructuredLinkFmtFreeform = @"%@://google/link/%@";
static NSString *const kStructuredLinkFmtDeepLink = @"%@://google/link/?deep_link_id=%@";
Expand Down
2 changes: 0 additions & 2 deletions FirebaseInAppMessaging.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ See more product details at https://firebase.google.com/products/in-app-messagin
base_dir + "Swift/Source/**/*.swift",
'Interop/Analytics/Public/*.h',
'FirebaseABTesting/Sources/Private/*.h',
'FirebaseCore/Extension/*.h',
'FirebaseInstallations/Source/Library/Private/*.h',
]

Expand All @@ -59,7 +58,6 @@ See more product details at https://firebase.google.com/products/in-app-messagin
base_dir + "Swift/Source/**/*.swift",
'Interop/Analytics/Public/*.h',
'FirebaseABTesting/Sources/Private/*.h',
'FirebaseCore/Extension/*.h',
'FirebaseInstallations/Source/Library/Private/*.h',
]

Expand Down
1 change: 1 addition & 0 deletions FirebaseMLModelDownloader/Apps/Sample/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ source 'https://cdn.cocoapods.org/'
pod 'FirebaseCore', :path => '../../../'
pod 'FirebaseCoreInternal', :path => '../../../'
pod 'FirebaseCoreExtension', :path => '../../../'
pod 'FirebaseInstallations', :path => '../../../'
pod 'FirebaseMLModelDownloader', :path => '../../../'
pod 'TensorFlowLiteSwift'

Expand Down
5 changes: 5 additions & 0 deletions FirebasePerformance/Tests/Unit/FPRClientTest.m
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@

#import <XCTest/XCTest.h>

@import FirebaseCore;
@import FirebaseCoreExtension;
@import FirebaseCoreInternal;
#if SWIFT_PACKAGE
@import FirebaseCoreInternalObjC;
#endif

#import "FirebasePerformance/Sources/Configurations/FPRConfigurations+Private.h"
#import "FirebasePerformance/Sources/FPRClient+Private.h"
Expand Down

0 comments on commit 4c44769

Please sign in to comment.