Skip to content

Commit aef1ac6

Browse files
committed
Fix sample build
1 parent f0c96f5 commit aef1ac6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

FirebaseRemoteConfig/Tests/Sample/RemoteConfigSampleApp/ViewController.m

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
#import <FirebaseRemoteConfig/FirebaseRemoteConfig.h>
2222
#import "../../../Sources/Private/FIRRemoteConfig_Private.h"
2323
#import "FRCLog.h"
24+
25+
@import FirebaseRemoteConfig;
2426
@import FirebaseRemoteConfigInterop;
2527

2628
static NSString *const FIRPerfNamespace = @"fireperf";
@@ -137,9 +139,9 @@ - (void)viewDidLoad {
137139
if ([[update updatedKeys] containsObject:@"realtime_test_key"]) {
138140
[self presentViewController:alert animated:YES completion:nil];
139141
}
140-
NSString *updatedParams = [update updatedKeys];
142+
NSSet<NSString *> *updatedParams = [update updatedKeys];
141143
[[FRCLog sharedInstance]
142-
logToConsole:[NSString stringWithFormat:[updatedParams description]]];
144+
logToConsole:[NSString stringWithFormat:@"%@", [updatedParams description]]];
143145
[self apply];
144146
}
145147
}

0 commit comments

Comments
 (0)