Merge remote-tracking branch 'origin/v3' into v3
This commit is contained in:
commit
202ad29f1c
|
@ -34,8 +34,6 @@ NSDictionary *convertFIRRemoteConfigValueToNSDictionary(FIRRemoteConfigValue *va
|
|||
return @{@"stringValue": value.stringValue ?: [NSNull null], @"numberValue": value.numberValue ?: [NSNull null], @"dataValue": value.dataValue ? [value.dataValue base64EncodedStringWithOptions:0] : [NSNull null], @"boolValue": @(value.boolValue), @"source": convertFIRRemoteConfigSourceToNSString(value.source)};
|
||||
}
|
||||
|
||||
@interface RNFirebaseRemoteConfig ()
|
||||
|
||||
@property(nonatomic, readwrite, weak) FIRRemoteConfig *remoteConfig;
|
||||
|
||||
@end
|
||||
|
@ -137,6 +135,6 @@ RCT_EXPORT_METHOD(setDefaultsFromResource:
|
|||
@end
|
||||
|
||||
#else
|
||||
@implementation RNFirebaseConfig
|
||||
@implementation RNFirebaseRemoteConfig
|
||||
@end
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue