Skip to content

Commit 712cd7a

Browse files
committed
fixes
1 parent c951434 commit 712cd7a

File tree

3 files changed

+25
-21
lines changed

3 files changed

+25
-21
lines changed

FirebaseCore/Extension/FIRAppInternal.h

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,27 @@ extern NSString *const kFIRAppNameKey;
4040
extern NSString *const kFIRGoogleAppIDKey;
4141
extern NSString *const kFirebaseCoreErrorDomain;
4242

43+
/**
44+
* Keys for the strings in the plist file.
45+
*/
46+
extern NSString *const kFIRAPIKey;
47+
extern NSString *const kFIRTrackingID;
48+
extern NSString *const kFIRGoogleAppID;
49+
extern NSString *const kFIRClientID;
50+
extern NSString *const kFIRGCMSenderID;
51+
extern NSString *const kFIRAndroidClientID;
52+
extern NSString *const kFIRDatabaseURL;
53+
extern NSString *const kFIRStorageBucket;
54+
extern NSString *const kFIRBundleID;
55+
extern NSString *const kFIRProjectID;
56+
57+
/**
58+
* Keys for the plist file name
59+
*/
60+
extern NSString *const kServiceInfoFileName;
61+
62+
extern NSString *const kServiceInfoFileType;
63+
4364
/**
4465
* The format string for the `UserDefaults` key used for storing the data collection enabled flag.
4566
* This includes formatting to append the `FirebaseApp`'s name.

FirebaseCore/Sources/FIROptionsInternal.h

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -16,27 +16,6 @@
1616

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

19-
/**
20-
* Keys for the strings in the plist file.
21-
*/
22-
extern NSString *const kFIRAPIKey;
23-
extern NSString *const kFIRTrackingID;
24-
extern NSString *const kFIRGoogleAppID;
25-
extern NSString *const kFIRClientID;
26-
extern NSString *const kFIRGCMSenderID;
27-
extern NSString *const kFIRAndroidClientID;
28-
extern NSString *const kFIRDatabaseURL;
29-
extern NSString *const kFIRStorageBucket;
30-
extern NSString *const kFIRBundleID;
31-
extern NSString *const kFIRProjectID;
32-
33-
/**
34-
* Keys for the plist file name
35-
*/
36-
extern NSString *const kServiceInfoFileName;
37-
38-
extern NSString *const kServiceInfoFileType;
39-
4019
/**
4120
* This header file exposes the initialization of FirebaseOptions to internal use.
4221
*/

FirebaseMessaging/Tests/UnitTests/FIRMessagingTokenInfoTest.m

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@
3232
static NSString *const kIID = @"eMP633ZkDYA";
3333
static BOOL const kAPNSSandbox = NO;
3434

35+
@interface FIROptions ()
36+
+ (NSDictionary *)defaultOptionsDictionary;
37+
@end
38+
3539
@interface FIRMessagingTokenInfoTest : XCTestCase
3640

3741
@property(nonatomic, strong) NSData *APNSDeviceToken;

0 commit comments

Comments
 (0)