Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
paulb777 committed Oct 1, 2024
1 parent c951434 commit 712cd7a
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 21 deletions.
21 changes: 21 additions & 0 deletions FirebaseCore/Extension/FIRAppInternal.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,27 @@ extern NSString *const kFIRAppNameKey;
extern NSString *const kFIRGoogleAppIDKey;
extern NSString *const kFirebaseCoreErrorDomain;

/**
* Keys for the strings in the plist file.
*/
extern NSString *const kFIRAPIKey;
extern NSString *const kFIRTrackingID;
extern NSString *const kFIRGoogleAppID;
extern NSString *const kFIRClientID;
extern NSString *const kFIRGCMSenderID;
extern NSString *const kFIRAndroidClientID;
extern NSString *const kFIRDatabaseURL;
extern NSString *const kFIRStorageBucket;
extern NSString *const kFIRBundleID;
extern NSString *const kFIRProjectID;

/**
* Keys for the plist file name
*/
extern NSString *const kServiceInfoFileName;

extern NSString *const kServiceInfoFileType;

/**
* The format string for the `UserDefaults` key used for storing the data collection enabled flag.
* This includes formatting to append the `FirebaseApp`'s name.
Expand Down
21 changes: 0 additions & 21 deletions FirebaseCore/Sources/FIROptionsInternal.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,6 @@

#import "FirebaseCore/Sources/Public/FirebaseCore/FIROptions.h"

/**
* Keys for the strings in the plist file.
*/
extern NSString *const kFIRAPIKey;
extern NSString *const kFIRTrackingID;
extern NSString *const kFIRGoogleAppID;
extern NSString *const kFIRClientID;
extern NSString *const kFIRGCMSenderID;
extern NSString *const kFIRAndroidClientID;
extern NSString *const kFIRDatabaseURL;
extern NSString *const kFIRStorageBucket;
extern NSString *const kFIRBundleID;
extern NSString *const kFIRProjectID;

/**
* Keys for the plist file name
*/
extern NSString *const kServiceInfoFileName;

extern NSString *const kServiceInfoFileType;

/**
* This header file exposes the initialization of FirebaseOptions to internal use.
*/
Expand Down
4 changes: 4 additions & 0 deletions FirebaseMessaging/Tests/UnitTests/FIRMessagingTokenInfoTest.m
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@
static NSString *const kIID = @"eMP633ZkDYA";
static BOOL const kAPNSSandbox = NO;

@interface FIROptions ()
+ (NSDictionary *)defaultOptionsDictionary;
@end

@interface FIRMessagingTokenInfoTest : XCTestCase

@property(nonatomic, strong) NSData *APNSDeviceToken;
Expand Down

0 comments on commit 712cd7a

Please sign in to comment.