docstring_tokens
stringlengths
18
16.9k
code_tokens
stringlengths
75
1.81M
html_url
stringlengths
74
116
file_name
stringlengths
3
311
keep keep add keep
<mask> */ <mask> + (void)stopGCDTimer:(dispatch_source_t)timer; <mask> <mask> @end </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter timer: The dispatch handle received from startGCDTimerWithInterval. </s> add @param timer The dispatch handle received from startGCDTimerWithInterval. </s> add - (void)registerNotifications; </s> remove - Returns: The kSecClass value or nil. </s> add @return The kSecClass value or nil. </s> remove - Parameter delegate: The delegate registered with the service. </s> add @param delegate The delegate registered with the service. </s> remove - Parameter string: The string to be encoded. - Returns: The base-64 encoded string. </s> add @param string The string to be encoded. @return The base-64 encoded string. </s> add /*! @brief Truncated intput string after first 6 characters followed by ellipses @param inputString The input string. @return Truncated string. */ + (nullable NSString *)redact:(nullable NSString *)inputString; /*! @brief Form url encode the input string by applying application/x-www-form-urlencoded algorithm @param inputString The input string. @return The encoded string. */ + (NSString*)formUrlEncode:(NSString*)inputString;
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKUtility.h
keep add keep keep keep keep keep
<mask> #import "FBSDKUtility.h" <mask> <mask> #import "FBSDKInternalUtility.h" <mask> #import "FBSDKMacros.h" <mask> <mask> @implementation FBSDKUtility <mask> </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove #define FBSDK_VERSION_STRING @"4.34.0" #define FBSDK_TARGET_PLATFORM_VERSION @"v3.0" </s> add #define FBSDK_VERSION_STRING @"4.36.0" #define FBSDK_TARGET_PLATFORM_VERSION @"v3.1" </s> add /*! @brief String representing the set of characters that are allowed as is for the application/x-www-form-urlencoded encoding algorithm. */ static NSString *const kFormUrlEncodedAllowedCharacters = @" *-._0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; </s> add #define FBSDK_SERVER_CONFIGURATION_MANAGER_CACHE_TIMEOUT (60 * 60) </s> remove #define FBSDK_SERVER_CONFIGURATION_MANAGER_CACHE_TIMEOUT (60 * 60) </s> add </s> remove - Parameter url: the url representing the deferred App Link - Parameter error: the error during the request, if any </s> add @param url the url representing the deferred App Link @param error the error during the request, if any </s> remove - Parameter queryString: The query string value. - Returns: A dictionary with the key/value pairs. </s> add @param queryString The query string value. @return A dictionary with the key/value pairs.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKUtility.m
keep keep keep keep replace replace keep keep keep keep keep
<mask> // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. <mask> #ifndef FBSDKCodelessMacros_h <mask> #define FBSDKCodelessMacros_h <mask> <mask> #define FBSDK_SERVER_CONFIGURARION_CODELESS_EVENT_MAPPINGS_FIELD @"auto_event_mapping_ios" <mask> <mask> // keys for event binding path compoenent <mask> #define CODELESS_MAPPING_METHOD_KEY @"method" <mask> #define CODELESS_MAPPING_EVENT_NAME_KEY @"event_name" <mask> #define CODELESS_MAPPING_EVENT_TYPE_KEY @"event_type" <mask> #define CODELESS_MAPPING_APP_VERSION_KEY @"app_version" </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove #define GOOGLE_PREDICT_FALSE(x) (__builtin_expect(x, 0)) #define GOOGLE_PREDICT_TRUE(x) (__builtin_expect(!!(x), 1)) </s> add </s> remove #define GOOGLE_PREDICT_FALSE(x) (__builtin_expect(x, 0)) #define GOOGLE_PREDICT_TRUE(x) (__builtin_expect(!!(x), 1)) </s> add </s> remove #ifndef NDEBUG </s> add #if DCHECK_IS_ON() </s> remove #ifndef NDEBUG </s> add #if DCHECK_IS_ON() </s> add #endif #endif #ifndef GOOGLE_PREDICT_FALSE #if 1 #define GOOGLE_PREDICT_FALSE(x) (__builtin_expect(x, 0)) #else </s> add #endif #endif #ifndef GOOGLE_PREDICT_TRUE #if @ac_cv_have___builtin_expect@ #define GOOGLE_PREDICT_TRUE(x) (__builtin_expect(!!(x), 1)) #else
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/Codeless/FBSDKCodelessMacros.h
keep keep keep keep replace replace keep keep keep keep keep
<mask> UIViewController *rootVC = ((UIWindow *)obj).rootViewController; <mask> NSArray *subviews = [(UIWindow *)obj subviews]; <mask> for (UIView *child in subviews) { <mask> if (child != rootVC.view) { <mask> [children addObject:child]; <mask> } else if (child == rootVC.view) { <mask> if (rootVC) { <mask> [children addObject:rootVC]; <mask> } <mask> } <mask> } </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove for (NSObject *child in subviews) { [children addObject:child]; </s> add for (UIView *child in subviews) { UIViewController *vc = [FBSDKViewHierarchy getParentViewController:child]; if (vc && vc.view == child) { [children addObject:vc]; } else { [children addObject:child]; } </s> remove MutexLock l(&vmodule_lock); // protect whole read-modify-write for (const VModuleInfo* info = vmodule_list; info != NULL; info = info->next) { if (info->module_pattern == module_pattern) { if (!found) { </s> add { MutexLock l(&vmodule_lock); // protect whole read-modify-write for (const VModuleInfo* info = vmodule_list; info != NULL; info = info->next) { if (info->module_pattern == module_pattern) { if (!found) { result = info->vlog_level; found = true; } info->vlog_level = log_level; } else if (!found && SafeFNMatch_(info->module_pattern.c_str(), info->module_pattern.size(), module_pattern, pattern_len)) { </s> remove throw std::out_of_range("out of range in dynamic array"); </s> add std::__throw_out_of_range("out of range in dynamic array"); </s> remove ml_.capacity_ = kIsLittleEndian ? maxSmallSize << (8 * (sizeof(size_t) - sizeof(Char))) : maxSmallSize << 2; small_[0] = '\0'; FBSTRING_ASSERT(category() == Category::isSmall && size() == 0); </s> add setSmallSize(0); } FOLLY_MALLOC_NOINLINE void destroyMediumLarge() noexcept { auto const c = category(); FBSTRING_ASSERT(c != Category::isSmall); if (c == Category::isMedium) { free(ml_.data_); } else { RefCounted::decrementRefs(ml_.data_); } </s> remove throw std::out_of_range("sorted_vector_map::at"); </s> add std::__throw_out_of_range("sorted_vector_map::at"); </s> remove throw std::out_of_range("sorted_vector_map::at"); </s> add std::__throw_out_of_range("sorted_vector_map::at");
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/Codeless/FBSDKViewHierarchy.m
keep keep keep keep replace replace keep keep keep keep keep
<mask> } <mask> } <mask> } else if ([obj isKindOfClass:[UIView class]]) { <mask> NSArray *subviews = [[(UIView *)obj subviews] copy]; <mask> for (NSObject *child in subviews) { <mask> [children addObject:child]; <mask> } <mask> } else if ([obj isKindOfClass:[UINavigationController class]]) { <mask> UIViewController *vc = [(UINavigationController*)obj visibleViewController]; <mask> UIViewController *tc = [(UINavigationController*)obj topViewController]; <mask> NSArray *nextChildren = [FBSDKViewHierarchy getChildren:((UIViewController*)obj).view]; </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove [children addObject:child]; } else if (child == rootVC.view) { </s> add UIViewController *vc = [FBSDKViewHierarchy getParentViewController:child]; if (vc != nil && vc.view == child) { [children addObject:vc]; } else { [children addObject:child]; } } else { </s> remove } else if (!found && SafeFNMatch_(info->module_pattern.c_str(), info->module_pattern.size(), module_pattern, pattern_len)) { result = info->vlog_level; found = true; </s> add info->next = vmodule_list; vmodule_list = info; </s> remove MutexLock l(&vmodule_lock); // protect whole read-modify-write for (const VModuleInfo* info = vmodule_list; info != NULL; info = info->next) { if (info->module_pattern == module_pattern) { if (!found) { </s> add { MutexLock l(&vmodule_lock); // protect whole read-modify-write for (const VModuleInfo* info = vmodule_list; info != NULL; info = info->next) { if (info->module_pattern == module_pattern) { if (!found) { result = info->vlog_level; found = true; } info->vlog_level = log_level; } else if (!found && SafeFNMatch_(info->module_pattern.c_str(), info->module_pattern.size(), module_pattern, pattern_len)) { </s> remove throw std::out_of_range("out of range in dynamic array"); </s> add std::__throw_out_of_range("out of range in dynamic array"); </s> remove ml_.capacity_ = kIsLittleEndian ? maxSmallSize << (8 * (sizeof(size_t) - sizeof(Char))) : maxSmallSize << 2; small_[0] = '\0'; FBSTRING_ASSERT(category() == Category::isSmall && size() == 0); </s> add setSmallSize(0); } FOLLY_MALLOC_NOINLINE void destroyMediumLarge() noexcept { auto const c = category(); FBSTRING_ASSERT(c != Category::isSmall); if (c == Category::isMedium) { free(ml_.data_); } else { RefCounted::decrementRefs(ml_.data_); } </s> remove return category() == Category::isSmall ? smallSize() : ml_.size_; </s> add size_t ret = ml_.size_; /* static */ if (kIsLittleEndian) { // We can save a couple instructions, because the category is // small iff the last char, as unsigned, is <= maxSmallSize. typedef typename std::make_unsigned<Char>::type UChar; auto maybeSmallSize = size_t(maxSmallSize) - size_t(static_cast<UChar>(small_[maxSmallSize])); // With this syntax, GCC and Clang generate a CMOV instead of a branch. ret = (static_cast<ssize_t>(maybeSmallSize) >= 0) ? maybeSmallSize : ret; } else { ret = (category() == Category::isSmall) ? smallSize() : ret; } return ret;
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/Codeless/FBSDKViewHierarchy.m
keep keep keep add keep keep
<mask> accessToken:(FBSDKAccessToken *)accessToken; <mask> <mask> + (FBSDKAppEvents *)singleton; <mask> - (void)flushForReason:(FBSDKAppEventsFlushReason)flushReason; <mask> <mask> @end </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter accessToken: The optional access token to log the event as. </s> add @param accessToken The optional access token to log the event as. </s> add /** Get SHA256 hased string of NSString/NSData @param input The data that needs to be hashed, it could be NSString or NSData. */ + (NSString *)SHA256Hash:(NSObject *)input; </s> remove - Parameter timer: The dispatch handle received from startGCDTimerWithInterval. </s> add @param timer The dispatch handle received from startGCDTimerWithInterval. </s> remove - Returns: The kSecClass value or nil. </s> add @return The kSecClass value or nil. </s> remove - Parameter delegate: The delegate registered with the service. </s> add @param delegate The delegate registered with the service. </s> remove - Parameter string: The string to be encoded. - Returns: The base-64 encoded string. </s> add @param string The string to be encoded. @return The base-64 encoded string.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEvents+Internal.h
keep keep add keep keep keep keep
<mask> if (userID) { <mask> parameters[@"app_user_id"] = userID; <mask> } <mask> <mask> [FBSDKAppEventsDeviceInfo extendDictionaryWithDeviceInfo:parameters]; <mask> <mask> static dispatch_once_t fetchBundleOnce; </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove fbstring_detail::podCopy(data, data + effectiveSize, result->data_); </s> add if (FBSTRING_LIKELY(effectiveSize > 0)) { fbstring_detail::podCopy(data, data + effectiveSize, result->data_); } </s> remove static auto instance = detail::createGlobal<StaticMeta<Tag>, void>(); </s> add /* library-local */ static auto instance = detail::createGlobal<StaticMeta<Tag, AccessMode>, void>(); </s> remove static StaticMeta<Tag>& instance() { </s> add static StaticMeta<Tag, AccessMode>& instance() { </s> remove enum : size_t { lastChar = sizeof(MediumLarge) - 1, maxSmallSize = lastChar / sizeof(Char), maxMediumSize = 254 / sizeof(Char), // coincides with the small // bin size in dlmalloc categoryExtractMask = kIsLittleEndian ? sizeof(size_t) == 4 ? 0xC0000000 : size_t(0xC000000000000000) : 0x3, capacityExtractMask = kIsLittleEndian ? ~categoryExtractMask : 0x0 /*unused*/, }; </s> add constexpr static size_t lastChar = sizeof(MediumLarge) - 1; constexpr static size_t maxSmallSize = lastChar / sizeof(Char); constexpr static size_t maxMediumSize = 254 / sizeof(Char); constexpr static uint8_t categoryExtractMask = kIsLittleEndian ? 0xC0 : 0x3; constexpr static size_t kCategoryShift = (sizeof(size_t) - 1) * 8; constexpr static size_t capacityExtractMask = kIsLittleEndian ? ~(size_t(categoryExtractMask) << kCategoryShift) : 0x0 /* unused */; </s> add #ifdef _WIN32 #define fdopen _fdopen #endif </s> remove return category() == Category::isSmall ? smallSize() : ml_.size_; </s> add size_t ret = ml_.size_; /* static */ if (kIsLittleEndian) { // We can save a couple instructions, because the category is // small iff the last char, as unsigned, is <= maxSmallSize. typedef typename std::make_unsigned<Char>::type UChar; auto maybeSmallSize = size_t(maxSmallSize) - size_t(static_cast<UChar>(small_[maxSmallSize])); // With this syntax, GCC and Clang generate a CMOV instead of a branch. ret = (static_cast<ssize_t>(maybeSmallSize) >= 0) ? maybeSmallSize : ret; } else { ret = (category() == Category::isSmall) ? smallSize() : ret; } return ret;
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsUtility.m
keep keep keep keep replace replace keep keep keep keep keep
<mask> @interface FBSDKBase64 : NSObject <mask> <mask> /** <mask> Decodes a base-64 encoded string. <mask> - Parameter string: The base-64 encoded string. <mask> - Returns: NSData containing the decoded bytes. <mask> */ <mask> + (NSData *)decodeAsData:(NSString *)string; <mask> <mask> /** <mask> Decodes a base-64 encoded string into a string. </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter string: The base-64 encoded string. - Returns: NSString with the decoded UTF-8 value. </s> add @param string The base-64 encoded string. @return NSString with the decoded UTF-8 value. </s> remove - Parameter string: The string to be encoded. - Returns: The base-64 encoded string. </s> add @param string The string to be encoded. @return The base-64 encoded string. </s> remove - Parameter data: The data to be encoded. - Returns: The base-64 encoded string. </s> add @param data The data to be encoded. @return The base-64 encoded string. </s> add /*! @brief Truncated intput string after first 6 characters followed by ellipses @param inputString The input string. @return Truncated string. */ + (nullable NSString *)redact:(nullable NSString *)inputString; /*! @brief Form url encode the input string by applying application/x-www-form-urlencoded algorithm @param inputString The input string. @return The encoded string. */ + (NSString*)formUrlEncode:(NSString*)inputString; </s> remove - Parameter dictionary: The dictionary with key/value pairs for the query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: Query string representation of the parameters. </s> add @param dictionary The dictionary with key/value pairs for the query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return Query string representation of the parameters. </s> remove - Parameter value: The value to encode. - Returns: The encoded value. </s> add @param value The value to encode. @return The encoded value.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Base64/FBSDKBase64.h
keep keep keep keep replace replace keep keep keep keep keep
<mask> + (NSData *)decodeAsData:(NSString *)string; <mask> <mask> /** <mask> Decodes a base-64 encoded string into a string. <mask> - Parameter string: The base-64 encoded string. <mask> - Returns: NSString with the decoded UTF-8 value. <mask> */ <mask> + (NSString *)decodeAsString:(NSString *)string; <mask> <mask> /** <mask> Encodes data into a string. </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter string: The base-64 encoded string. - Returns: NSData containing the decoded bytes. </s> add @param string The base-64 encoded string. @return NSData containing the decoded bytes. </s> remove - Parameter data: The data to be encoded. - Returns: The base-64 encoded string. </s> add @param data The data to be encoded. @return The base-64 encoded string. </s> remove - Parameter string: The string to be encoded. - Returns: The base-64 encoded string. </s> add @param string The string to be encoded. @return The base-64 encoded string. </s> add /*! @brief Truncated intput string after first 6 characters followed by ellipses @param inputString The input string. @return Truncated string. */ + (nullable NSString *)redact:(nullable NSString *)inputString; /*! @brief Form url encode the input string by applying application/x-www-form-urlencoded algorithm @param inputString The input string. @return The encoded string. */ + (NSString*)formUrlEncode:(NSString*)inputString; </s> remove - Parameter value: The value to encode. - Returns: The encoded value. </s> add @param value The value to encode. @return The encoded value. </s> remove - Parameter value: The value to decode. - Returns: The decoded value. </s> add @param value The value to decode. @return The decoded value.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Base64/FBSDKBase64.h
keep keep keep keep replace replace keep keep keep keep keep
<mask> + (NSString *)decodeAsString:(NSString *)string; <mask> <mask> /** <mask> Encodes data into a string. <mask> - Parameter data: The data to be encoded. <mask> - Returns: The base-64 encoded string. <mask> */ <mask> + (NSString *)encodeData:(NSData *)data; <mask> <mask> /** <mask> Encodes string into a base-64 representation. </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter string: The string to be encoded. - Returns: The base-64 encoded string. </s> add @param string The string to be encoded. @return The base-64 encoded string. </s> remove - Parameter string: The base-64 encoded string. - Returns: NSString with the decoded UTF-8 value. </s> add @param string The base-64 encoded string. @return NSString with the decoded UTF-8 value. </s> remove - Parameter string: The base-64 encoded string. - Returns: NSData containing the decoded bytes. </s> add @param string The base-64 encoded string. @return NSData containing the decoded bytes. </s> remove - Parameter value: The value to encode. - Returns: The encoded value. </s> add @param value The value to encode. @return The encoded value. </s> remove - Parameter value: The value to decode. - Returns: The decoded value. </s> add @param value The value to decode. @return The decoded value. </s> add /** Get SHA256 hased string of NSString/NSData @param input The data that needs to be hashed, it could be NSString or NSData. */ + (NSString *)SHA256Hash:(NSObject *)input;
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Base64/FBSDKBase64.h
keep keep keep keep replace replace keep keep keep keep
<mask> + (NSString *)encodeData:(NSData *)data; <mask> <mask> /** <mask> Encodes string into a base-64 representation. <mask> - Parameter string: The string to be encoded. <mask> - Returns: The base-64 encoded string. <mask> */ <mask> + (NSString *)encodeString:(NSString *)string; <mask> <mask> @end </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter data: The data to be encoded. - Returns: The base-64 encoded string. </s> add @param data The data to be encoded. @return The base-64 encoded string. </s> remove - Parameter string: The base-64 encoded string. - Returns: NSString with the decoded UTF-8 value. </s> add @param string The base-64 encoded string. @return NSString with the decoded UTF-8 value. </s> remove - Parameter string: The base-64 encoded string. - Returns: NSData containing the decoded bytes. </s> add @param string The base-64 encoded string. @return NSData containing the decoded bytes. </s> remove - Parameter value: The value to encode. - Returns: The encoded value. </s> add @param value The value to encode. @return The encoded value. </s> add /** Get SHA256 hased string of NSString/NSData @param input The data that needs to be hashed, it could be NSString or NSData. */ + (NSString *)SHA256Hash:(NSObject *)input; </s> add /*! @brief Truncated intput string after first 6 characters followed by ellipses @param inputString The input string. @return Truncated string. */ + (nullable NSString *)redact:(nullable NSString *)inputString; /*! @brief Form url encode the input string by applying application/x-www-form-urlencoded algorithm @param inputString The input string. @return The encoded string. */ + (NSString*)formUrlEncode:(NSString*)inputString;
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Base64/FBSDKBase64.h
keep keep keep keep replace replace keep keep keep keep keep
<mask> + (NSString *)getDeviceInfo; <mask> <mask> /** <mask> Start the mDNS advertisement service for a device request <mask> - Parameter loginCode: The login code associated with the action for the device request. <mask> - Returns: True if the service broadcast was successfully started. <mask> */ <mask> + (BOOL)startAdvertisementService:(NSString *)loginCode withDelegate:(id<NSNetServiceDelegate>)delegate; <mask> <mask> /** <mask> Check if a service delegate is registered with particular advertisement service </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter delegate: The delegate to check if registered. - Parameter service: The advertisement service to check for. - Returns: True if the service is the one the delegate registered with. </s> add @param delegate The delegate to check if registered. @param service The advertisement service to check for. @return True if the service is the one the delegate registered with. </s> remove - Parameter delegate: The delegate registered with the service. </s> add @param delegate The delegate registered with the service. </s> remove - Returns: Promotion code string. </s> add @return Promotion code string. </s> remove - Parameter object: The transient object </s> add @param object The transient object </s> remove - Parameter connection: The request connection that successfully completed a network request - Parameter error: The `NSError` representing the network error that occurred, if any. May be nil </s> add @param connection The request connection that successfully completed a network request @param error The `NSError` representing the network error that occurred, if any. May be nil </s> remove - Parameter interval: The interval to fire the timer, in seconds. - Parameter block: The code block to execute when timer is fired. - Returns: The dispatch handle. </s> add @param interval The interval to fire the timer, in seconds. @param block The code block to execute when timer is fired. @return The dispatch handle.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDeviceRequestsHelper.h
keep keep keep keep replace replace replace keep keep keep keep keep
<mask> + (BOOL)startAdvertisementService:(NSString *)loginCode withDelegate:(id<NSNetServiceDelegate>)delegate; <mask> <mask> /** <mask> Check if a service delegate is registered with particular advertisement service <mask> - Parameter delegate: The delegate to check if registered. <mask> - Parameter service: The advertisement service to check for. <mask> - Returns: True if the service is the one the delegate registered with. <mask> */ <mask> + (BOOL)isDelegate:(id<NSNetServiceDelegate>)delegate forAdvertisementService:(NSNetService *)service; <mask> <mask> /** <mask> Stop the mDNS advertisement service for a device request </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter loginCode: The login code associated with the action for the device request. - Returns: True if the service broadcast was successfully started. </s> add @param loginCode The login code associated with the action for the device request. @return True if the service broadcast was successfully started. </s> remove - Parameter delegate: The delegate registered with the service. </s> add @param delegate The delegate registered with the service. </s> remove - Parameter error: the error to process. - Parameter request: the related request that may be reissued. - Parameter delegate: the delegate that will be retained until recovery is complete. </s> add @param error the error to process. @param request the related request that may be reissued. @param delegate the delegate that will be retained until recovery is complete. </s> remove - Parameter connection: The request connection that is starting a network request </s> add @param connection The request connection that is starting a network request </s> remove - Parameter object: The transient object </s> add @param object The transient object </s> remove - Parameter view: The tooltip view. - Parameter appIsEligible: The value fetched from the server identifying if the app </s> add @param view The tooltip view. @param appIsEligible The value fetched from the server identifying if the app
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDeviceRequestsHelper.h
keep keep keep keep replace keep keep keep keep
<mask> + (BOOL)isDelegate:(id<NSNetServiceDelegate>)delegate forAdvertisementService:(NSNetService *)service; <mask> <mask> /** <mask> Stop the mDNS advertisement service for a device request <mask> - Parameter delegate: The delegate registered with the service. <mask> */ <mask> + (void)cleanUpAdvertisementService:(id<NSNetServiceDelegate>)delegate; <mask> <mask> @end </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter delegate: The delegate to check if registered. - Parameter service: The advertisement service to check for. - Returns: True if the service is the one the delegate registered with. </s> add @param delegate The delegate to check if registered. @param service The advertisement service to check for. @return True if the service is the one the delegate registered with. </s> remove - Parameter loginCode: The login code associated with the action for the device request. - Returns: True if the service broadcast was successfully started. </s> add @param loginCode The login code associated with the action for the device request. @return True if the service broadcast was successfully started. </s> remove - Parameter error: the error to process. - Parameter request: the related request that may be reissued. - Parameter delegate: the delegate that will be retained until recovery is complete. </s> add @param error the error to process. @param request the related request that may be reissued. @param delegate the delegate that will be retained until recovery is complete. </s> remove - Parameter connection: The request connection that is starting a network request </s> add @param connection The request connection that is starting a network request </s> remove - Parameter object: The transient object </s> add @param object The transient object </s> remove - Parameter timer: The dispatch handle received from startGCDTimerWithInterval. </s> add @param timer The dispatch handle received from startGCDTimerWithInterval.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDeviceRequestsHelper.h
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> /** <mask> Load the kSecRandomDefault value from the Security Framework <mask> <mask> - Returns: The kSecRandomDefault value or nil. <mask> */ <mask> + (SecRandomRef)loadkSecRandomDefault; <mask> <mask> /** <mask> Load the kSecAttrAccessible value from the Security Framework </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Returns: The kSecAttrAccessible value or nil. </s> add @return The kSecAttrAccessible value or nil. </s> remove - Returns: The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. </s> add @return The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. </s> remove - Returns: The kSecAttrAccount value or nil. </s> add @return The kSecAttrAccount value or nil. </s> remove - Returns: The kSecReturnData value or nil. </s> add @return The kSecReturnData value or nil. </s> remove - Returns: The kSecMatchLimit value or nil. </s> add @return The kSecMatchLimit value or nil. </s> remove - Returns: The kSecMatchLimitOne value or nil. </s> add @return The kSecMatchLimitOne value or nil.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDynamicFrameworkLoader.h
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> /** <mask> Load the kSecAttrAccessible value from the Security Framework <mask> <mask> - Returns: The kSecAttrAccessible value or nil. <mask> */ <mask> + (CFTypeRef)loadkSecAttrAccessible; <mask> <mask> /** <mask> Load the kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value from the Security Framework </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Returns: The kSecRandomDefault value or nil. </s> add @return The kSecRandomDefault value or nil. </s> remove - Returns: The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. </s> add @return The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. </s> remove - Returns: The kSecAttrAccount value or nil. </s> add @return The kSecAttrAccount value or nil. </s> remove - Returns: The kSecReturnData value or nil. </s> add @return The kSecReturnData value or nil. </s> remove - Returns: The kSecMatchLimit value or nil. </s> add @return The kSecMatchLimit value or nil. </s> remove - Returns: The kSecMatchLimitOne value or nil. </s> add @return The kSecMatchLimitOne value or nil.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDynamicFrameworkLoader.h
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> /** <mask> Load the kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value from the Security Framework <mask> <mask> - Returns: The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. <mask> */ <mask> + (CFTypeRef)loadkSecAttrAccessibleAfterFirstUnlockThisDeviceOnly; <mask> <mask> /** <mask> Load the kSecAttrAccount value from the Security Framework </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Returns: The kSecAttrAccessible value or nil. </s> add @return The kSecAttrAccessible value or nil. </s> remove - Returns: The kSecAttrAccount value or nil. </s> add @return The kSecAttrAccount value or nil. </s> remove - Returns: The kSecReturnData value or nil. </s> add @return The kSecReturnData value or nil. </s> remove - Returns: The kSecMatchLimit value or nil. </s> add @return The kSecMatchLimit value or nil. </s> remove - Returns: The kSecMatchLimitOne value or nil. </s> add @return The kSecMatchLimitOne value or nil. </s> remove - Returns: The kSecAttrAccessGroup value or nil. </s> add @return The kSecAttrAccessGroup value or nil.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDynamicFrameworkLoader.h
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> /** <mask> Load the kSecAttrAccount value from the Security Framework <mask> <mask> - Returns: The kSecAttrAccount value or nil. <mask> */ <mask> + (CFTypeRef)loadkSecAttrAccount; <mask> <mask> /** <mask> Load the kSecAttrService value from the Security Framework </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Returns: The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. </s> add @return The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. </s> remove - Returns: The kSecAttrService value or nil. </s> add @return The kSecAttrService value or nil. </s> remove - Returns: The kSecReturnData value or nil. </s> add @return The kSecReturnData value or nil. </s> remove - Returns: The kSecMatchLimit value or nil. </s> add @return The kSecMatchLimit value or nil. </s> remove - Returns: The kSecMatchLimitOne value or nil. </s> add @return The kSecMatchLimitOne value or nil. </s> remove - Returns: The kSecAttrAccessGroup value or nil. </s> add @return The kSecAttrAccessGroup value or nil.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDynamicFrameworkLoader.h
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> /** <mask> Load the kSecAttrService value from the Security Framework <mask> <mask> - Returns: The kSecAttrService value or nil. <mask> */ <mask> + (CFTypeRef)loadkSecAttrService; <mask> <mask> /** <mask> Load the kSecAttrGeneric value from the Security Framework </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Returns: The kSecAttrAccount value or nil. </s> add @return The kSecAttrAccount value or nil. </s> remove - Returns: The kSecAttrGeneric value or nil. </s> add @return The kSecAttrGeneric value or nil. </s> remove - Returns: The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. </s> add @return The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. </s> remove - Returns: The kSecReturnData value or nil. </s> add @return The kSecReturnData value or nil. </s> remove - Returns: The kSecMatchLimit value or nil. </s> add @return The kSecMatchLimit value or nil. </s> remove - Returns: The kSecMatchLimitOne value or nil. </s> add @return The kSecMatchLimitOne value or nil.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDynamicFrameworkLoader.h
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> /** <mask> Load the kSecAttrGeneric value from the Security Framework <mask> <mask> - Returns: The kSecAttrGeneric value or nil. <mask> */ <mask> + (CFTypeRef)loadkSecAttrGeneric; <mask> <mask> /** <mask> Load the kSecValueData value from the Security Framework </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Returns: The kSecAttrService value or nil. </s> add @return The kSecAttrService value or nil. </s> remove - Returns: The kSecValueData value or nil. </s> add @return The kSecValueData value or nil. </s> remove - Returns: The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. </s> add @return The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. </s> remove - Returns: The kSecAttrAccount value or nil. </s> add @return The kSecAttrAccount value or nil. </s> remove - Returns: The kSecReturnData value or nil. </s> add @return The kSecReturnData value or nil. </s> remove - Returns: The kSecMatchLimit value or nil. </s> add @return The kSecMatchLimit value or nil.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDynamicFrameworkLoader.h
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> /** <mask> Load the kSecValueData value from the Security Framework <mask> <mask> - Returns: The kSecValueData value or nil. <mask> */ <mask> + (CFTypeRef)loadkSecValueData; <mask> <mask> /** <mask> Load the kSecClassGenericPassword value from the Security Framework </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Returns: The kSecAttrGeneric value or nil. </s> add @return The kSecAttrGeneric value or nil. </s> remove - Returns: The kSecClassGenericPassword value or nil. </s> add @return The kSecClassGenericPassword value or nil. </s> remove - Returns: The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. </s> add @return The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. </s> remove - Returns: The kSecAttrAccount value or nil. </s> add @return The kSecAttrAccount value or nil. </s> remove - Returns: The kSecReturnData value or nil. </s> add @return The kSecReturnData value or nil. </s> remove - Returns: The kSecMatchLimit value or nil. </s> add @return The kSecMatchLimit value or nil.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDynamicFrameworkLoader.h
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> /** <mask> Load the kSecClassGenericPassword value from the Security Framework <mask> <mask> - Returns: The kSecClassGenericPassword value or nil. <mask> */ <mask> + (CFTypeRef)loadkSecClassGenericPassword; <mask> <mask> /** <mask> Load the kSecAttrAccessGroup value from the Security Framework </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Returns: The kSecValueData value or nil. </s> add @return The kSecValueData value or nil. </s> remove - Returns: The kSecAttrAccessGroup value or nil. </s> add @return The kSecAttrAccessGroup value or nil. </s> remove - Returns: The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. </s> add @return The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. </s> remove - Returns: The kSecAttrAccount value or nil. </s> add @return The kSecAttrAccount value or nil. </s> remove - Returns: The kSecReturnData value or nil. </s> add @return The kSecReturnData value or nil. </s> remove - Returns: The kSecMatchLimit value or nil. </s> add @return The kSecMatchLimit value or nil.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDynamicFrameworkLoader.h
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> /** <mask> Load the kSecAttrAccessGroup value from the Security Framework <mask> <mask> - Returns: The kSecAttrAccessGroup value or nil. <mask> */ <mask> + (CFTypeRef)loadkSecAttrAccessGroup; <mask> <mask> /** <mask> Load the kSecMatchLimitOne value from the Security Framework </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Returns: The kSecClassGenericPassword value or nil. </s> add @return The kSecClassGenericPassword value or nil. </s> remove - Returns: The kSecMatchLimitOne value or nil. </s> add @return The kSecMatchLimitOne value or nil. </s> remove - Returns: The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. </s> add @return The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. </s> remove - Returns: The kSecAttrAccount value or nil. </s> add @return The kSecAttrAccount value or nil. </s> remove - Returns: The kSecReturnData value or nil. </s> add @return The kSecReturnData value or nil. </s> remove - Returns: The kSecMatchLimit value or nil. </s> add @return The kSecMatchLimit value or nil.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDynamicFrameworkLoader.h
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> /** <mask> Load the kSecMatchLimitOne value from the Security Framework <mask> <mask> - Returns: The kSecMatchLimitOne value or nil. <mask> */ <mask> + (CFTypeRef)loadkSecMatchLimitOne; <mask> <mask> /** <mask> Load the kSecMatchLimit value from the Security Framework </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Returns: The kSecAttrAccessGroup value or nil. </s> add @return The kSecAttrAccessGroup value or nil. </s> remove - Returns: The kSecMatchLimit value or nil. </s> add @return The kSecMatchLimit value or nil. </s> remove - Returns: The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. </s> add @return The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. </s> remove - Returns: The kSecAttrAccount value or nil. </s> add @return The kSecAttrAccount value or nil. </s> remove - Returns: The kSecReturnData value or nil. </s> add @return The kSecReturnData value or nil. </s> remove - Returns: The kSecClassGenericPassword value or nil. </s> add @return The kSecClassGenericPassword value or nil.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDynamicFrameworkLoader.h
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> /** <mask> Load the kSecMatchLimit value from the Security Framework <mask> <mask> - Returns: The kSecMatchLimit value or nil. <mask> */ <mask> + (CFTypeRef)loadkSecMatchLimit; <mask> <mask> /** <mask> Load the kSecReturnData value from the Security Framework </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Returns: The kSecMatchLimitOne value or nil. </s> add @return The kSecMatchLimitOne value or nil. </s> remove - Returns: The kSecReturnData value or nil. </s> add @return The kSecReturnData value or nil. </s> remove - Returns: The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. </s> add @return The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. </s> remove - Returns: The kSecAttrAccount value or nil. </s> add @return The kSecAttrAccount value or nil. </s> remove - Returns: The kSecAttrAccessGroup value or nil. </s> add @return The kSecAttrAccessGroup value or nil. </s> remove - Returns: The kSecClassGenericPassword value or nil. </s> add @return The kSecClassGenericPassword value or nil.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDynamicFrameworkLoader.h
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> /** <mask> Load the kSecReturnData value from the Security Framework <mask> <mask> - Returns: The kSecReturnData value or nil. <mask> */ <mask> + (CFTypeRef)loadkSecReturnData; <mask> <mask> /** <mask> Load the kSecClass value from the Security Framework </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Returns: The kSecMatchLimit value or nil. </s> add @return The kSecMatchLimit value or nil. </s> remove - Returns: The kSecClass value or nil. </s> add @return The kSecClass value or nil. </s> remove - Returns: The kSecAttrAccessible value or nil. </s> add @return The kSecAttrAccessible value or nil. </s> remove - Returns: The kSecMatchLimitOne value or nil. </s> add @return The kSecMatchLimitOne value or nil. </s> remove - Returns: The kSecAttrAccessGroup value or nil. </s> add @return The kSecAttrAccessGroup value or nil. </s> remove - Returns: The kSecClassGenericPassword value or nil. </s> add @return The kSecClassGenericPassword value or nil.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDynamicFrameworkLoader.h
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> /** <mask> Load the kSecClass value from the Security Framework <mask> <mask> - Returns: The kSecClass value or nil. <mask> */ <mask> + (CFTypeRef)loadkSecClass; <mask> <mask> @end <mask> </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Returns: The kSecReturnData value or nil. </s> add @return The kSecReturnData value or nil. </s> remove - Returns: The kSecAttrGeneric value or nil. </s> add @return The kSecAttrGeneric value or nil. </s> remove - Returns: The kSecValueData value or nil. </s> add @return The kSecValueData value or nil. </s> remove - Returns: The kSecMatchLimit value or nil. </s> add @return The kSecMatchLimit value or nil. </s> remove - Returns: The kSecMatchLimitOne value or nil. </s> add @return The kSecMatchLimitOne value or nil. </s> remove - Returns: The kSecAttrAccessGroup value or nil. </s> add @return The kSecAttrAccessGroup value or nil.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDynamicFrameworkLoader.h
keep keep keep keep replace replace replace keep keep keep keep keep
<mask> + (instancetype)sharedInstance; <mask> <mask> /* <mask> download an image or retrieve it from cache <mask> - Parameter url: the url to download <mask> - Parameter ttl: the amount of time (in seconds) that using a cached version is acceptable. <mask> - Parameter completion: the callback with the image - for simplicity nil is returned rather than surfacing an error. <mask> */ <mask> - (void)downloadImageWithURL:(NSURL *)url ttl:(NSTimeInterval)ttl completion:(void(^)(UIImage* image))completion; <mask> <mask> - (void)removeAll; <mask> </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter version: The version to test against. - Returns: YES if the runtime UIKit version is greater than or equal to the specified version, otherwise NO. </s> add @param version The version to test against. @return YES if the runtime UIKit version is greater than or equal to the specified version, otherwise NO. </s> remove - Parameter version: The version to test against. - Returns: YES if the linked UIKit version is greater than or equal to the specified version, otherwise NO. </s> add @param version The version to test against. @return YES if the linked UIKit version is greater than or equal to the specified version, otherwise NO. </s> remove - Parameter dictionary: The dictionary with key/value pairs for the query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Parameter invalidObjectHandler: Handles objects that are invalid, returning a replacement value or nil to ignore. - Returns: Query string representation of the parameters. </s> add @param dictionary The dictionary with key/value pairs for the query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. @return Query string representation of the parameters. </s> remove - Parameter version: This is a string in the form @"v2.0" which will be used for the version part of an API path </s> add @param version This is a string in the form @"v2.0" which will be used for the version part of an API path </s> remove - Parameter connection: The request connection that is starting a network request </s> add @param connection The request connection that is starting a network request </s> remove - Parameter result: The result of the request. This is a translation of </s> add @param result The result of the request. This is a translation of
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKImageDownloader.h
keep keep keep keep replace replace replace replace replace keep keep keep keep keep
<mask> + (NSString *)appURLScheme; <mask> <mask> /** <mask> Constructs an URL for the current app. <mask> - Parameter host: The host for the URL. <mask> - Parameter path: The path for the URL. <mask> - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. <mask> - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. <mask> - Returns: The app URL. <mask> */ <mask> + (NSURL *)appURLWithHost:(NSString *)host <mask> path:(NSString *)path <mask> queryParameters:(NSDictionary *)queryParameters <mask> error:(NSError *__autoreleasing *)errorRef; </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter scheme: The scheme for the URL. - Parameter host: The host for the URL. - Parameter path: The path for the URL. - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: The URL. </s> add @param scheme The scheme for the URL. @param host The host for the URL. @param path The path for the URL. @param queryParameters The query parameters for the URL. This will be converted into a query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return The URL. </s> remove - Parameter hostPrefix: The prefix for the host, such as 'm', 'graph', etc. - Parameter path: The path for the URL. This may or may not include a version. - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: The Facebook URL. </s> add @param hostPrefix The prefix for the host, such as 'm', 'graph', etc. @param path The path for the URL. This may or may not include a version. @param queryParameters The query parameters for the URL. This will be converted into a query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return The Facebook URL. </s> remove - Parameter hostPrefix: The prefix for the host, such as 'm', 'graph', etc. - Parameter path: The path for the URL. This may or may not include a version. - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. - Parameter defaultVersion: A version to add to the URL if none is found in the path. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: The Facebook URL. </s> add @param hostPrefix The prefix for the host, such as 'm', 'graph', etc. @param path The path for the URL. This may or may not include a version. @param queryParameters The query parameters for the URL. This will be converted into a query string. @param defaultVersion A version to add to the URL if none is found in the path. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return The Facebook URL. </s> remove - Parameter dictionary: The dictionary with key/value pairs for the query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: Query string representation of the parameters. </s> add @param dictionary The dictionary with key/value pairs for the query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return Query string representation of the parameters. </s> remove - Parameter dictionary: The dictionary with key/value pairs for the query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Parameter invalidObjectHandler: Handles objects that are invalid, returning a replacement value or nil to ignore. - Returns: Query string representation of the parameters. </s> add @param dictionary The dictionary with key/value pairs for the query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. @return Query string representation of the parameters. </s> remove - Parameter string: The JSON string to convert. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: An NSDictionary, NSArray, NSString or NSNumber containing the object representation, or nil if the string </s> add @param string The JSON string to convert. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return An NSDictionary, NSArray, NSString or NSNumber containing the object representation, or nil if the string
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace replace keep keep keep keep keep
<mask> error:(NSError *__autoreleasing *)errorRef; <mask> <mask> /** <mask> Parses an FB url's query params (and potentially fragment) into a dictionary. <mask> - Parameter url: The FB url. <mask> - Returns: A dictionary with the key/value pairs. <mask> */ <mask> + (NSDictionary *)dictionaryFromFBURL:(NSURL *)url; <mask> <mask> /** <mask> Adds an object to an array if it is not nil. </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter queryString: The query string value. - Returns: A dictionary with the key/value pairs. </s> add @param queryString The query string value. @return A dictionary with the key/value pairs. </s> remove - Parameter array: The array to add the object to. - Parameter object: The object to add to the array. </s> add @param array The array to add the object to. @param object The object to add to the array. </s> remove - Parameter dictionary: The dictionary with key/value pairs for the query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: Query string representation of the parameters. </s> add @param dictionary The dictionary with key/value pairs for the query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return Query string representation of the parameters. </s> remove - Parameter dictionary: The dictionary with key/value pairs for the query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Parameter invalidObjectHandler: Handles objects that are invalid, returning a replacement value or nil to ignore. - Returns: Query string representation of the parameters. </s> add @param dictionary The dictionary with key/value pairs for the query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. @return Query string representation of the parameters. </s> remove - Parameter dictionary: The dictionary to set the value for. - Parameter object: The value to set. - Parameter key: The key to set the value for. </s> add @param dictionary The dictionary to set the value for. @param object The value to set. @param key The key to set the value for. </s> remove - Parameter dictionary: The dictionary to set the value for. - Parameter object: The value to set after serializing to JSON. - Parameter key: The key to set the value for. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: NO if an error occurred while serializing the object, otherwise YES. </s> add @param dictionary The dictionary to set the value for. @param object The value to set after serializing to JSON. @param key The key to set the value for. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return NO if an error occurred while serializing the object, otherwise YES.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace replace keep keep keep keep keep
<mask> + (NSDictionary *)dictionaryFromFBURL:(NSURL *)url; <mask> <mask> /** <mask> Adds an object to an array if it is not nil. <mask> - Parameter array: The array to add the object to. <mask> - Parameter object: The object to add to the array. <mask> */ <mask> + (void)array:(NSMutableArray *)array addObject:(id)object; <mask> <mask> /** <mask> Returns bundle for returning localized strings </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter url: The FB url. - Returns: A dictionary with the key/value pairs. </s> add @param url The FB url. @return A dictionary with the key/value pairs. </s> remove - Parameter object: The transient object </s> add @param object The transient object </s> remove - Parameter object: The object to convert to JSON. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Parameter invalidObjectHandler: Handles objects that are invalid, returning a replacement value or nil to ignore. - Returns: A JSON string or nil if the object cannot be converted to JSON. </s> add @param object The object to convert to JSON. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. @return A JSON string or nil if the object cannot be converted to JSON. </s> remove - Parameter dictionary: The dictionary to set the value for. - Parameter object: The value to set. - Parameter key: The key to set the value for. </s> add @param dictionary The dictionary to set the value for. @param object The value to set. @param key The key to set the value for. </s> remove - Parameter dictionary: The dictionary to set the value for. - Parameter object: The value to set after serializing to JSON. - Parameter key: The key to set the value for. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: NO if an error occurred while serializing the object, otherwise YES. </s> add @param dictionary The dictionary to set the value for. @param object The value to set after serializing to JSON. @param key The key to set the value for. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return NO if an error occurred while serializing the object, otherwise YES. </s> remove - Parameter object: The first object to compare. - Parameter other: The second object to compare. - Returns: YES if the objects are equal, otherwise NO. </s> add @param object The first object to compare. @param other The second object to compare. @return YES if the objects are equal, otherwise NO.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace replace keep keep keep keep keep
<mask> + (NSBundle *)bundleForStrings; <mask> <mask> /** <mask> Converts simple value types to the string equivalent for serializing to a request query or body. <mask> - Parameter value: The value to be converted. <mask> - Returns: The value that may have been converted if able (otherwise the input param). <mask> */ <mask> + (id)convertRequestValue:(id)value; <mask> <mask> /** <mask> Gets the milliseconds since the Unix Epoch. </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Returns: The number of milliseconds since the Unix Epoch. </s> add @return The number of milliseconds since the Unix Epoch. </s> remove - Parameter dictionary: The dictionary to set the value for. - Parameter object: The value to set after serializing to JSON. - Parameter key: The key to set the value for. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: NO if an error occurred while serializing the object, otherwise YES. </s> add @param dictionary The dictionary to set the value for. @param object The value to set after serializing to JSON. @param key The key to set the value for. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return NO if an error occurred while serializing the object, otherwise YES. </s> remove - Parameter object: The object to convert to JSON. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Parameter invalidObjectHandler: Handles objects that are invalid, returning a replacement value or nil to ignore. - Returns: A JSON string or nil if the object cannot be converted to JSON. </s> add @param object The object to convert to JSON. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. @return A JSON string or nil if the object cannot be converted to JSON. </s> remove - Parameter dictionary: The dictionary with key/value pairs for the query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Parameter invalidObjectHandler: Handles objects that are invalid, returning a replacement value or nil to ignore. - Returns: Query string representation of the parameters. </s> add @param dictionary The dictionary with key/value pairs for the query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. @return Query string representation of the parameters. </s> remove - Parameter string: The JSON string to convert. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: An NSDictionary, NSArray, NSString or NSNumber containing the object representation, or nil if the string </s> add @param string The JSON string to convert. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return An NSDictionary, NSArray, NSString or NSNumber containing the object representation, or nil if the string </s> remove - Returns: The kSecValueData value or nil. </s> add @return The kSecValueData value or nil.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace keep keep keep keep keep
<mask> /** <mask> Gets the milliseconds since the Unix Epoch. <mask> <mask> Changes in the system clock will affect this value. <mask> - Returns: The number of milliseconds since the Unix Epoch. <mask> */ <mask> + (uint64_t)currentTimeInMilliseconds; <mask> <mask> /** <mask> Sets an object for a key in a dictionary if it is not nil. </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter value: The value to be converted. - Returns: The value that may have been converted if able (otherwise the input param). </s> add @param value The value to be converted. @return The value that may have been converted if able (otherwise the input param). </s> remove - Parameter dictionary: The dictionary to set the value for. - Parameter object: The value to set. - Parameter key: The key to set the value for. </s> add @param dictionary The dictionary to set the value for. @param object The value to set. @param key The key to set the value for. </s> remove - Parameter dictionary: The dictionary to set the value for. - Parameter object: The value to set after serializing to JSON. - Parameter key: The key to set the value for. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: NO if an error occurred while serializing the object, otherwise YES. </s> add @param dictionary The dictionary to set the value for. @param object The value to set after serializing to JSON. @param key The key to set the value for. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return NO if an error occurred while serializing the object, otherwise YES. </s> remove - Parameter url: The FB url. - Returns: A dictionary with the key/value pairs. </s> add @param url The FB url. @return A dictionary with the key/value pairs. </s> remove - Parameter array: The array to add the object to. - Parameter object: The object to add to the array. </s> add @param array The array to add the object to. @param object The object to add to the array. </s> remove - Parameter dictionary: The dictionary with key/value pairs for the query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: Query string representation of the parameters. </s> add @param dictionary The dictionary with key/value pairs for the query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return Query string representation of the parameters.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace replace replace replace replace keep keep keep keep keep
<mask> + (uint64_t)currentTimeInMilliseconds; <mask> <mask> /** <mask> Sets an object for a key in a dictionary if it is not nil. <mask> - Parameter dictionary: The dictionary to set the value for. <mask> - Parameter object: The value to set after serializing to JSON. <mask> - Parameter key: The key to set the value for. <mask> - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. <mask> - Returns: NO if an error occurred while serializing the object, otherwise YES. <mask> */ <mask> + (BOOL)dictionary:(NSMutableDictionary *)dictionary <mask> setJSONStringForObject:(id)object <mask> forKey:(id<NSCopying>)key <mask> error:(NSError *__autoreleasing *)errorRef; </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter dictionary: The dictionary to set the value for. - Parameter object: The value to set. - Parameter key: The key to set the value for. </s> add @param dictionary The dictionary to set the value for. @param object The value to set. @param key The key to set the value for. </s> remove - Parameter dictionary: The dictionary with key/value pairs for the query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: Query string representation of the parameters. </s> add @param dictionary The dictionary with key/value pairs for the query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return Query string representation of the parameters. </s> remove - Parameter dictionary: The dictionary with key/value pairs for the query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Parameter invalidObjectHandler: Handles objects that are invalid, returning a replacement value or nil to ignore. - Returns: Query string representation of the parameters. </s> add @param dictionary The dictionary with key/value pairs for the query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. @return Query string representation of the parameters. </s> remove - Parameter object: The object to convert to JSON. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Parameter invalidObjectHandler: Handles objects that are invalid, returning a replacement value or nil to ignore. - Returns: A JSON string or nil if the object cannot be converted to JSON. </s> add @param object The object to convert to JSON. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. @return A JSON string or nil if the object cannot be converted to JSON. </s> remove - Parameter string: The JSON string to convert. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: An NSDictionary, NSArray, NSString or NSNumber containing the object representation, or nil if the string </s> add @param string The JSON string to convert. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return An NSDictionary, NSArray, NSString or NSNumber containing the object representation, or nil if the string </s> remove - Parameter host: The host for the URL. - Parameter path: The path for the URL. - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: The app URL. </s> add @param host The host for the URL. @param path The path for the URL. @param queryParameters The query parameters for the URL. This will be converted into a query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return The app URL.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace replace replace keep keep keep keep keep
<mask> error:(NSError *__autoreleasing *)errorRef; <mask> <mask> /** <mask> Sets an object for a key in a dictionary if it is not nil. <mask> - Parameter dictionary: The dictionary to set the value for. <mask> - Parameter object: The value to set. <mask> - Parameter key: The key to set the value for. <mask> */ <mask> + (void)dictionary:(NSMutableDictionary *)dictionary setObject:(id)object forKey:(id<NSCopying>)key; <mask> <mask> /** <mask> Constructs a Facebook URL. </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter dictionary: The dictionary to set the value for. - Parameter object: The value to set after serializing to JSON. - Parameter key: The key to set the value for. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: NO if an error occurred while serializing the object, otherwise YES. </s> add @param dictionary The dictionary to set the value for. @param object The value to set after serializing to JSON. @param key The key to set the value for. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return NO if an error occurred while serializing the object, otherwise YES. </s> remove - Parameter dictionary: The dictionary with key/value pairs for the query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: Query string representation of the parameters. </s> add @param dictionary The dictionary with key/value pairs for the query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return Query string representation of the parameters. </s> remove - Parameter hostPrefix: The prefix for the host, such as 'm', 'graph', etc. - Parameter path: The path for the URL. This may or may not include a version. - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: The Facebook URL. </s> add @param hostPrefix The prefix for the host, such as 'm', 'graph', etc. @param path The path for the URL. This may or may not include a version. @param queryParameters The query parameters for the URL. This will be converted into a query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return The Facebook URL. </s> remove - Parameter value: The value to decode. - Returns: The decoded value. </s> add @param value The value to decode. @return The decoded value. </s> remove - Returns: The number of milliseconds since the Unix Epoch. </s> add @return The number of milliseconds since the Unix Epoch. </s> remove - Parameter url: The FB url. - Returns: A dictionary with the key/value pairs. </s> add @param url The FB url. @return A dictionary with the key/value pairs.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace replace replace replace replace keep keep keep keep keep
<mask> + (void)dictionary:(NSMutableDictionary *)dictionary setObject:(id)object forKey:(id<NSCopying>)key; <mask> <mask> /** <mask> Constructs a Facebook URL. <mask> - Parameter hostPrefix: The prefix for the host, such as 'm', 'graph', etc. <mask> - Parameter path: The path for the URL. This may or may not include a version. <mask> - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. <mask> - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. <mask> - Returns: The Facebook URL. <mask> */ <mask> + (NSURL *)facebookURLWithHostPrefix:(NSString *)hostPrefix <mask> path:(NSString *)path <mask> queryParameters:(NSDictionary *)queryParameters <mask> error:(NSError *__autoreleasing *)errorRef; </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter hostPrefix: The prefix for the host, such as 'm', 'graph', etc. - Parameter path: The path for the URL. This may or may not include a version. - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. - Parameter defaultVersion: A version to add to the URL if none is found in the path. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: The Facebook URL. </s> add @param hostPrefix The prefix for the host, such as 'm', 'graph', etc. @param path The path for the URL. This may or may not include a version. @param queryParameters The query parameters for the URL. This will be converted into a query string. @param defaultVersion A version to add to the URL if none is found in the path. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return The Facebook URL. </s> remove - Parameter host: The host for the URL. - Parameter path: The path for the URL. - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: The app URL. </s> add @param host The host for the URL. @param path The path for the URL. @param queryParameters The query parameters for the URL. This will be converted into a query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return The app URL. </s> remove - Parameter scheme: The scheme for the URL. - Parameter host: The host for the URL. - Parameter path: The path for the URL. - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: The URL. </s> add @param scheme The scheme for the URL. @param host The host for the URL. @param path The path for the URL. @param queryParameters The query parameters for the URL. This will be converted into a query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return The URL. </s> remove - Parameter dictionary: The dictionary with key/value pairs for the query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: Query string representation of the parameters. </s> add @param dictionary The dictionary with key/value pairs for the query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return Query string representation of the parameters. </s> remove - Parameter dictionary: The dictionary with key/value pairs for the query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Parameter invalidObjectHandler: Handles objects that are invalid, returning a replacement value or nil to ignore. - Returns: Query string representation of the parameters. </s> add @param dictionary The dictionary with key/value pairs for the query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. @return Query string representation of the parameters. </s> remove - Parameter string: The JSON string to convert. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: An NSDictionary, NSArray, NSString or NSNumber containing the object representation, or nil if the string </s> add @param string The JSON string to convert. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return An NSDictionary, NSArray, NSString or NSNumber containing the object representation, or nil if the string
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace replace replace replace replace replace keep keep keep keep keep
<mask> error:(NSError *__autoreleasing *)errorRef; <mask> <mask> /** <mask> Constructs a Facebook URL. <mask> - Parameter hostPrefix: The prefix for the host, such as 'm', 'graph', etc. <mask> - Parameter path: The path for the URL. This may or may not include a version. <mask> - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. <mask> - Parameter defaultVersion: A version to add to the URL if none is found in the path. <mask> - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. <mask> - Returns: The Facebook URL. <mask> */ <mask> + (NSURL *)facebookURLWithHostPrefix:(NSString *)hostPrefix <mask> path:(NSString *)path <mask> queryParameters:(NSDictionary *)queryParameters <mask> defaultVersion:(NSString *)defaultVersion </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter hostPrefix: The prefix for the host, such as 'm', 'graph', etc. - Parameter path: The path for the URL. This may or may not include a version. - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: The Facebook URL. </s> add @param hostPrefix The prefix for the host, such as 'm', 'graph', etc. @param path The path for the URL. This may or may not include a version. @param queryParameters The query parameters for the URL. This will be converted into a query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return The Facebook URL. </s> remove - Parameter host: The host for the URL. - Parameter path: The path for the URL. - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: The app URL. </s> add @param host The host for the URL. @param path The path for the URL. @param queryParameters The query parameters for the URL. This will be converted into a query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return The app URL. </s> remove - Parameter scheme: The scheme for the URL. - Parameter host: The host for the URL. - Parameter path: The path for the URL. - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: The URL. </s> add @param scheme The scheme for the URL. @param host The host for the URL. @param path The path for the URL. @param queryParameters The query parameters for the URL. This will be converted into a query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return The URL. </s> remove - Parameter dictionary: The dictionary with key/value pairs for the query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: Query string representation of the parameters. </s> add @param dictionary The dictionary with key/value pairs for the query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return Query string representation of the parameters. </s> remove - Parameter dictionary: The dictionary with key/value pairs for the query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Parameter invalidObjectHandler: Handles objects that are invalid, returning a replacement value or nil to ignore. - Returns: Query string representation of the parameters. </s> add @param dictionary The dictionary with key/value pairs for the query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. @return Query string representation of the parameters. </s> remove - Parameter string: The JSON string to convert. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: An NSDictionary, NSArray, NSString or NSNumber containing the object representation, or nil if the string </s> add @param string The JSON string to convert. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return An NSDictionary, NSArray, NSString or NSNumber containing the object representation, or nil if the string
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace replace keep keep keep keep keep
<mask> error:(NSError *__autoreleasing *)errorRef; <mask> <mask> /** <mask> Tests whether the supplied URL is a valid URL for opening in the browser. <mask> - Parameter URL: The URL to test. <mask> - Returns: YES if the URL refers to an http or https resource, otherwise NO. <mask> */ <mask> + (BOOL)isBrowserURL:(NSURL *)URL; <mask> <mask> /** <mask> Tests whether the supplied bundle identifier references a Facebook app. </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter bundleIdentifier: The bundle identifier to test. - Returns: YES if the bundle identifier refers to a Facebook app, otherwise NO. </s> add @param bundleIdentifier The bundle identifier to test. @return YES if the bundle identifier refers to a Facebook app, otherwise NO. </s> remove - Parameter bundleIdentifier: The bundle identifier to test. - Returns: YES if the bundle identifier refers to the Safari app, otherwise NO. </s> add @param bundleIdentifier The bundle identifier to test. @return YES if the bundle identifier refers to the Safari app, otherwise NO. </s> remove - Parameter version: The version to test against. - Returns: YES if the operating system is greater than or equal to the specified version, otherwise NO. </s> add @param version The version to test against. @return YES if the operating system is greater than or equal to the specified version, otherwise NO. </s> remove - Parameter version: The version to test against. - Returns: YES if the linked UIKit version is greater than or equal to the specified version, otherwise NO. </s> add @param version The version to test against. @return YES if the linked UIKit version is greater than or equal to the specified version, otherwise NO. </s> remove - Parameter version: The version to test against. - Returns: YES if the runtime UIKit version is greater than or equal to the specified version, otherwise NO. </s> add @param version The version to test against. @return YES if the runtime UIKit version is greater than or equal to the specified version, otherwise NO. </s> remove - Parameter hostPrefix: The prefix for the host, such as 'm', 'graph', etc. - Parameter path: The path for the URL. This may or may not include a version. - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. - Parameter defaultVersion: A version to add to the URL if none is found in the path. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: The Facebook URL. </s> add @param hostPrefix The prefix for the host, such as 'm', 'graph', etc. @param path The path for the URL. This may or may not include a version. @param queryParameters The query parameters for the URL. This will be converted into a query string. @param defaultVersion A version to add to the URL if none is found in the path. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return The Facebook URL.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace replace keep keep keep keep keep
<mask> + (BOOL)isBrowserURL:(NSURL *)URL; <mask> <mask> /** <mask> Tests whether the supplied bundle identifier references a Facebook app. <mask> - Parameter bundleIdentifier: The bundle identifier to test. <mask> - Returns: YES if the bundle identifier refers to a Facebook app, otherwise NO. <mask> */ <mask> + (BOOL)isFacebookBundleIdentifier:(NSString *)bundleIdentifier; <mask> <mask> /** <mask> Tests whether the operating system is at least the specified version. </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter bundleIdentifier: The bundle identifier to test. - Returns: YES if the bundle identifier refers to the Safari app, otherwise NO. </s> add @param bundleIdentifier The bundle identifier to test. @return YES if the bundle identifier refers to the Safari app, otherwise NO. </s> remove - Parameter version: The version to test against. - Returns: YES if the operating system is greater than or equal to the specified version, otherwise NO. </s> add @param version The version to test against. @return YES if the operating system is greater than or equal to the specified version, otherwise NO. </s> remove - Parameter URL: The URL to test. - Returns: YES if the URL refers to an http or https resource, otherwise NO. </s> add @param URL The URL to test. @return YES if the URL refers to an http or https resource, otherwise NO. </s> remove - Parameter version: The version to test against. - Returns: YES if the linked UIKit version is greater than or equal to the specified version, otherwise NO. </s> add @param version The version to test against. @return YES if the linked UIKit version is greater than or equal to the specified version, otherwise NO. </s> remove - Parameter version: The version to test against. - Returns: YES if the runtime UIKit version is greater than or equal to the specified version, otherwise NO. </s> add @param version The version to test against. @return YES if the runtime UIKit version is greater than or equal to the specified version, otherwise NO. </s> remove - Parameter limitEventAndDataUsage: The desired value. </s> add @param limitEventAndDataUsage The desired value.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace replace keep keep keep keep keep
<mask> + (BOOL)isFacebookBundleIdentifier:(NSString *)bundleIdentifier; <mask> <mask> /** <mask> Tests whether the operating system is at least the specified version. <mask> - Parameter version: The version to test against. <mask> - Returns: YES if the operating system is greater than or equal to the specified version, otherwise NO. <mask> */ <mask> + (BOOL)isOSRunTimeVersionAtLeast:(NSOperatingSystemVersion)version; <mask> <mask> /** <mask> Tests whether the supplied bundle identifier references the Safari app. </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter version: The version to test against. - Returns: YES if the linked UIKit version is greater than or equal to the specified version, otherwise NO. </s> add @param version The version to test against. @return YES if the linked UIKit version is greater than or equal to the specified version, otherwise NO. </s> remove - Parameter bundleIdentifier: The bundle identifier to test. - Returns: YES if the bundle identifier refers to a Facebook app, otherwise NO. </s> add @param bundleIdentifier The bundle identifier to test. @return YES if the bundle identifier refers to a Facebook app, otherwise NO. </s> remove - Parameter bundleIdentifier: The bundle identifier to test. - Returns: YES if the bundle identifier refers to the Safari app, otherwise NO. </s> add @param bundleIdentifier The bundle identifier to test. @return YES if the bundle identifier refers to the Safari app, otherwise NO. </s> remove - Parameter version: The version to test against. - Returns: YES if the runtime UIKit version is greater than or equal to the specified version, otherwise NO. </s> add @param version The version to test against. @return YES if the runtime UIKit version is greater than or equal to the specified version, otherwise NO. </s> remove - Parameter URL: The URL to test. - Returns: YES if the URL refers to an http or https resource, otherwise NO. </s> add @param URL The URL to test. @return YES if the URL refers to an http or https resource, otherwise NO. </s> remove - Returns: YES if if the orientation must be manually adjusted, otherwise NO. </s> add @return YES if if the orientation must be manually adjusted, otherwise NO.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace replace keep keep keep keep keep
<mask> + (BOOL)isOSRunTimeVersionAtLeast:(NSOperatingSystemVersion)version; <mask> <mask> /** <mask> Tests whether the supplied bundle identifier references the Safari app. <mask> - Parameter bundleIdentifier: The bundle identifier to test. <mask> - Returns: YES if the bundle identifier refers to the Safari app, otherwise NO. <mask> */ <mask> + (BOOL)isSafariBundleIdentifier:(NSString *)bundleIdentifier; <mask> <mask> /** <mask> Tests whether the UIKit version that the current app was linked to is at least the specified version. </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter bundleIdentifier: The bundle identifier to test. - Returns: YES if the bundle identifier refers to a Facebook app, otherwise NO. </s> add @param bundleIdentifier The bundle identifier to test. @return YES if the bundle identifier refers to a Facebook app, otherwise NO. </s> remove - Parameter version: The version to test against. - Returns: YES if the operating system is greater than or equal to the specified version, otherwise NO. </s> add @param version The version to test against. @return YES if the operating system is greater than or equal to the specified version, otherwise NO. </s> remove - Parameter version: The version to test against. - Returns: YES if the linked UIKit version is greater than or equal to the specified version, otherwise NO. </s> add @param version The version to test against. @return YES if the linked UIKit version is greater than or equal to the specified version, otherwise NO. </s> remove - Parameter URL: The URL to test. - Returns: YES if the URL refers to an http or https resource, otherwise NO. </s> add @param URL The URL to test. @return YES if the URL refers to an http or https resource, otherwise NO. </s> remove - Parameter version: The version to test against. - Returns: YES if the runtime UIKit version is greater than or equal to the specified version, otherwise NO. </s> add @param version The version to test against. @return YES if the runtime UIKit version is greater than or equal to the specified version, otherwise NO. </s> remove - Returns: YES if if the orientation must be manually adjusted, otherwise NO. </s> add @return YES if if the orientation must be manually adjusted, otherwise NO.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace replace keep keep keep keep keep
<mask> + (BOOL)isSafariBundleIdentifier:(NSString *)bundleIdentifier; <mask> <mask> /** <mask> Tests whether the UIKit version that the current app was linked to is at least the specified version. <mask> - Parameter version: The version to test against. <mask> - Returns: YES if the linked UIKit version is greater than or equal to the specified version, otherwise NO. <mask> */ <mask> + (BOOL)isUIKitLinkTimeVersionAtLeast:(FBSDKUIKitVersion)version; <mask> <mask> /** <mask> Tests whether the UIKit version in the runtime is at least the specified version. </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter version: The version to test against. - Returns: YES if the runtime UIKit version is greater than or equal to the specified version, otherwise NO. </s> add @param version The version to test against. @return YES if the runtime UIKit version is greater than or equal to the specified version, otherwise NO. </s> remove - Parameter version: The version to test against. - Returns: YES if the operating system is greater than or equal to the specified version, otherwise NO. </s> add @param version The version to test against. @return YES if the operating system is greater than or equal to the specified version, otherwise NO. </s> remove - Parameter bundleIdentifier: The bundle identifier to test. - Returns: YES if the bundle identifier refers to the Safari app, otherwise NO. </s> add @param bundleIdentifier The bundle identifier to test. @return YES if the bundle identifier refers to the Safari app, otherwise NO. </s> remove - Parameter bundleIdentifier: The bundle identifier to test. - Returns: YES if the bundle identifier refers to a Facebook app, otherwise NO. </s> add @param bundleIdentifier The bundle identifier to test. @return YES if the bundle identifier refers to a Facebook app, otherwise NO. </s> remove - Returns: YES if if the orientation must be manually adjusted, otherwise NO. </s> add @return YES if if the orientation must be manually adjusted, otherwise NO. </s> remove - Parameter URL: The URL to test. - Returns: YES if the URL refers to an http or https resource, otherwise NO. </s> add @param URL The URL to test. @return YES if the URL refers to an http or https resource, otherwise NO.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace replace keep keep keep keep keep
<mask> + (BOOL)isUIKitLinkTimeVersionAtLeast:(FBSDKUIKitVersion)version; <mask> <mask> /** <mask> Tests whether the UIKit version in the runtime is at least the specified version. <mask> - Parameter version: The version to test against. <mask> - Returns: YES if the runtime UIKit version is greater than or equal to the specified version, otherwise NO. <mask> */ <mask> + (BOOL)isUIKitRunTimeVersionAtLeast:(FBSDKUIKitVersion)version; <mask> <mask> /** <mask> Converts an object into a JSON string. </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter version: The version to test against. - Returns: YES if the linked UIKit version is greater than or equal to the specified version, otherwise NO. </s> add @param version The version to test against. @return YES if the linked UIKit version is greater than or equal to the specified version, otherwise NO. </s> remove - Parameter version: The version to test against. - Returns: YES if the operating system is greater than or equal to the specified version, otherwise NO. </s> add @param version The version to test against. @return YES if the operating system is greater than or equal to the specified version, otherwise NO. </s> remove - Parameter bundleIdentifier: The bundle identifier to test. - Returns: YES if the bundle identifier refers to the Safari app, otherwise NO. </s> add @param bundleIdentifier The bundle identifier to test. @return YES if the bundle identifier refers to the Safari app, otherwise NO. </s> remove - Parameter bundleIdentifier: The bundle identifier to test. - Returns: YES if the bundle identifier refers to a Facebook app, otherwise NO. </s> add @param bundleIdentifier The bundle identifier to test. @return YES if the bundle identifier refers to a Facebook app, otherwise NO. </s> remove - Parameter URL: The URL to test. - Returns: YES if the URL refers to an http or https resource, otherwise NO. </s> add @param URL The URL to test. @return YES if the URL refers to an http or https resource, otherwise NO. </s> remove - Returns: YES if if the orientation must be manually adjusted, otherwise NO. </s> add @return YES if if the orientation must be manually adjusted, otherwise NO.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace replace replace replace keep keep keep keep keep
<mask> + (BOOL)isUIKitRunTimeVersionAtLeast:(FBSDKUIKitVersion)version; <mask> <mask> /** <mask> Converts an object into a JSON string. <mask> - Parameter object: The object to convert to JSON. <mask> - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. <mask> - Parameter invalidObjectHandler: Handles objects that are invalid, returning a replacement value or nil to ignore. <mask> - Returns: A JSON string or nil if the object cannot be converted to JSON. <mask> */ <mask> + (NSString *)JSONStringForObject:(id)object <mask> error:(NSError *__autoreleasing *)errorRef <mask> invalidObjectHandler:(id(^)(id object, BOOL *stop))invalidObjectHandler; <mask> </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter dictionary: The dictionary with key/value pairs for the query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Parameter invalidObjectHandler: Handles objects that are invalid, returning a replacement value or nil to ignore. - Returns: Query string representation of the parameters. </s> add @param dictionary The dictionary with key/value pairs for the query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. @return Query string representation of the parameters. </s> remove - Parameter string: The JSON string to convert. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: An NSDictionary, NSArray, NSString or NSNumber containing the object representation, or nil if the string </s> add @param string The JSON string to convert. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return An NSDictionary, NSArray, NSString or NSNumber containing the object representation, or nil if the string </s> remove - Parameter dictionary: The dictionary to set the value for. - Parameter object: The value to set after serializing to JSON. - Parameter key: The key to set the value for. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: NO if an error occurred while serializing the object, otherwise YES. </s> add @param dictionary The dictionary to set the value for. @param object The value to set after serializing to JSON. @param key The key to set the value for. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return NO if an error occurred while serializing the object, otherwise YES. </s> remove - Parameter dictionary: The dictionary with key/value pairs for the query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: Query string representation of the parameters. </s> add @param dictionary The dictionary with key/value pairs for the query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return Query string representation of the parameters. </s> remove - Parameter host: The host for the URL. - Parameter path: The path for the URL. - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: The app URL. </s> add @param host The host for the URL. @param path The path for the URL. @param queryParameters The query parameters for the URL. This will be converted into a query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return The app URL. </s> remove - Parameter hostPrefix: The prefix for the host, such as 'm', 'graph', etc. - Parameter path: The path for the URL. This may or may not include a version. - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: The Facebook URL. </s> add @param hostPrefix The prefix for the host, such as 'm', 'graph', etc. @param path The path for the URL. This may or may not include a version. @param queryParameters The query parameters for the URL. This will be converted into a query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return The Facebook URL.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace replace replace keep keep keep keep keep
<mask> /** <mask> Checks equality between 2 objects. <mask> <mask> Checks for pointer equality, nils, isEqual:. <mask> - Parameter object: The first object to compare. <mask> - Parameter other: The second object to compare. <mask> - Returns: YES if the objects are equal, otherwise NO. <mask> */ <mask> + (BOOL)object:(id)object isEqualToObject:(id)other; <mask> <mask> /** <mask> Converts a JSON string into an object </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter string: The JSON string to convert. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: An NSDictionary, NSArray, NSString or NSNumber containing the object representation, or nil if the string </s> add @param string The JSON string to convert. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return An NSDictionary, NSArray, NSString or NSNumber containing the object representation, or nil if the string </s> remove - Parameter object: The object to convert to JSON. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Parameter invalidObjectHandler: Handles objects that are invalid, returning a replacement value or nil to ignore. - Returns: A JSON string or nil if the object cannot be converted to JSON. </s> add @param object The object to convert to JSON. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. @return A JSON string or nil if the object cannot be converted to JSON. </s> remove - Parameter version: The version to test against. - Returns: YES if the runtime UIKit version is greater than or equal to the specified version, otherwise NO. </s> add @param version The version to test against. @return YES if the runtime UIKit version is greater than or equal to the specified version, otherwise NO. </s> remove - Parameter array: The array to add the object to. - Parameter object: The object to add to the array. </s> add @param array The array to add the object to. @param object The object to add to the array. </s> remove - Parameter object: The transient object </s> add @param object The transient object </s> remove - Parameter dictionary: The dictionary to set the value for. - Parameter object: The value to set after serializing to JSON. - Parameter key: The key to set the value for. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: NO if an error occurred while serializing the object, otherwise YES. </s> add @param dictionary The dictionary to set the value for. @param object The value to set after serializing to JSON. @param key The key to set the value for. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return NO if an error occurred while serializing the object, otherwise YES.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace replace replace keep keep keep keep keep
<mask> + (BOOL)object:(id)object isEqualToObject:(id)other; <mask> <mask> /** <mask> Converts a JSON string into an object <mask> - Parameter string: The JSON string to convert. <mask> - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. <mask> - Returns: An NSDictionary, NSArray, NSString or NSNumber containing the object representation, or nil if the string <mask> cannot be converted. <mask> */ <mask> + (id)objectForJSONString:(NSString *)string error:(NSError *__autoreleasing *)errorRef; <mask> <mask> /** </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter object: The object to convert to JSON. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Parameter invalidObjectHandler: Handles objects that are invalid, returning a replacement value or nil to ignore. - Returns: A JSON string or nil if the object cannot be converted to JSON. </s> add @param object The object to convert to JSON. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. @return A JSON string or nil if the object cannot be converted to JSON. </s> remove - Parameter dictionary: The dictionary with key/value pairs for the query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: Query string representation of the parameters. </s> add @param dictionary The dictionary with key/value pairs for the query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return Query string representation of the parameters. </s> remove - Parameter dictionary: The dictionary with key/value pairs for the query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Parameter invalidObjectHandler: Handles objects that are invalid, returning a replacement value or nil to ignore. - Returns: Query string representation of the parameters. </s> add @param dictionary The dictionary with key/value pairs for the query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. @return Query string representation of the parameters. </s> remove - Parameter host: The host for the URL. - Parameter path: The path for the URL. - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: The app URL. </s> add @param host The host for the URL. @param path The path for the URL. @param queryParameters The query parameters for the URL. This will be converted into a query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return The app URL. </s> remove - Parameter dictionary: The dictionary to set the value for. - Parameter object: The value to set after serializing to JSON. - Parameter key: The key to set the value for. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: NO if an error occurred while serializing the object, otherwise YES. </s> add @param dictionary The dictionary to set the value for. @param object The value to set after serializing to JSON. @param key The key to set the value for. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return NO if an error occurred while serializing the object, otherwise YES. </s> remove - Parameter hostPrefix: The prefix for the host, such as 'm', 'graph', etc. - Parameter path: The path for the URL. This may or may not include a version. - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: The Facebook URL. </s> add @param hostPrefix The prefix for the host, such as 'm', 'graph', etc. @param path The path for the URL. This may or may not include a version. @param queryParameters The query parameters for the URL. This will be converted into a query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return The Facebook URL.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace replace replace replace keep keep keep keep keep
<mask> + (NSOperatingSystemVersion)operatingSystemVersion; <mask> <mask> /** <mask> Constructs a query string from a dictionary. <mask> - Parameter dictionary: The dictionary with key/value pairs for the query string. <mask> - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. <mask> - Parameter invalidObjectHandler: Handles objects that are invalid, returning a replacement value or nil to ignore. <mask> - Returns: Query string representation of the parameters. <mask> */ <mask> + (NSString *)queryStringWithDictionary:(NSDictionary *)dictionary <mask> error:(NSError *__autoreleasing *)errorRef <mask> invalidObjectHandler:(id(^)(id object, BOOL *stop))invalidObjectHandler; <mask> </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter dictionary: The dictionary with key/value pairs for the query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: Query string representation of the parameters. </s> add @param dictionary The dictionary with key/value pairs for the query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return Query string representation of the parameters. </s> remove - Parameter object: The object to convert to JSON. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Parameter invalidObjectHandler: Handles objects that are invalid, returning a replacement value or nil to ignore. - Returns: A JSON string or nil if the object cannot be converted to JSON. </s> add @param object The object to convert to JSON. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. @return A JSON string or nil if the object cannot be converted to JSON. </s> remove - Parameter string: The JSON string to convert. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: An NSDictionary, NSArray, NSString or NSNumber containing the object representation, or nil if the string </s> add @param string The JSON string to convert. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return An NSDictionary, NSArray, NSString or NSNumber containing the object representation, or nil if the string </s> remove - Parameter host: The host for the URL. - Parameter path: The path for the URL. - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: The app URL. </s> add @param host The host for the URL. @param path The path for the URL. @param queryParameters The query parameters for the URL. This will be converted into a query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return The app URL. </s> remove - Parameter dictionary: The dictionary to set the value for. - Parameter object: The value to set after serializing to JSON. - Parameter key: The key to set the value for. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: NO if an error occurred while serializing the object, otherwise YES. </s> add @param dictionary The dictionary to set the value for. @param object The value to set after serializing to JSON. @param key The key to set the value for. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return NO if an error occurred while serializing the object, otherwise YES. </s> remove - Parameter hostPrefix: The prefix for the host, such as 'm', 'graph', etc. - Parameter path: The path for the URL. This may or may not include a version. - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: The Facebook URL. </s> add @param hostPrefix The prefix for the host, such as 'm', 'graph', etc. @param path The path for the URL. This may or may not include a version. @param queryParameters The query parameters for the URL. This will be converted into a query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return The Facebook URL.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace keep keep keep keep keep
<mask> values. If the application was linked with UIKit on iOS 7 or earlier or the application is running on iOS 7 or earlier <mask> then we need to use the legacy layout code. Otherwise if the application was linked with UIKit on iOS 8 or later and <mask> the application is running on iOS 8 or later, UIKit handles all of the rotation complexity and the origin is always in <mask> the top-left and no rotation transform is necessary. <mask> - Returns: YES if if the orientation must be manually adjusted, otherwise NO. <mask> */ <mask> + (BOOL)shouldManuallyAdjustOrientation; <mask> <mask> /** <mask> Constructs an NSURL. </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter version: The version to test against. - Returns: YES if the linked UIKit version is greater than or equal to the specified version, otherwise NO. </s> add @param version The version to test against. @return YES if the linked UIKit version is greater than or equal to the specified version, otherwise NO. </s> remove - Parameter version: The version to test against. - Returns: YES if the runtime UIKit version is greater than or equal to the specified version, otherwise NO. </s> add @param version The version to test against. @return YES if the runtime UIKit version is greater than or equal to the specified version, otherwise NO. </s> remove - Parameter bundleIdentifier: The bundle identifier to test. - Returns: YES if the bundle identifier refers to the Safari app, otherwise NO. </s> add @param bundleIdentifier The bundle identifier to test. @return YES if the bundle identifier refers to the Safari app, otherwise NO. </s> remove - Parameter limitEventAndDataUsage: The desired value. </s> add @param limitEventAndDataUsage The desired value. </s> remove - Parameter version: The version to test against. - Returns: YES if the operating system is greater than or equal to the specified version, otherwise NO. </s> add @param version The version to test against. @return YES if the operating system is greater than or equal to the specified version, otherwise NO. </s> remove - Parameter application: The application as passed to [UIApplicationDelegate application:didFinishLaunchingWithOptions:]. </s> add @param application The application as passed to [UIApplicationDelegate application:didFinishLaunchingWithOptions:].
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace replace replace replace replace replace keep keep keep keep keep
<mask> + (BOOL)shouldManuallyAdjustOrientation; <mask> <mask> /** <mask> Constructs an NSURL. <mask> - Parameter scheme: The scheme for the URL. <mask> - Parameter host: The host for the URL. <mask> - Parameter path: The path for the URL. <mask> - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. <mask> - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. <mask> - Returns: The URL. <mask> */ <mask> + (NSURL *)URLWithScheme:(NSString *)scheme <mask> host:(NSString *)host <mask> path:(NSString *)path <mask> queryParameters:(NSDictionary *)queryParameters </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter host: The host for the URL. - Parameter path: The path for the URL. - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: The app URL. </s> add @param host The host for the URL. @param path The path for the URL. @param queryParameters The query parameters for the URL. This will be converted into a query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return The app URL. </s> remove - Parameter hostPrefix: The prefix for the host, such as 'm', 'graph', etc. - Parameter path: The path for the URL. This may or may not include a version. - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: The Facebook URL. </s> add @param hostPrefix The prefix for the host, such as 'm', 'graph', etc. @param path The path for the URL. This may or may not include a version. @param queryParameters The query parameters for the URL. This will be converted into a query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return The Facebook URL. </s> remove - Parameter hostPrefix: The prefix for the host, such as 'm', 'graph', etc. - Parameter path: The path for the URL. This may or may not include a version. - Parameter queryParameters: The query parameters for the URL. This will be converted into a query string. - Parameter defaultVersion: A version to add to the URL if none is found in the path. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: The Facebook URL. </s> add @param hostPrefix The prefix for the host, such as 'm', 'graph', etc. @param path The path for the URL. This may or may not include a version. @param queryParameters The query parameters for the URL. This will be converted into a query string. @param defaultVersion A version to add to the URL if none is found in the path. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return The Facebook URL. </s> remove - Parameter dictionary: The dictionary with key/value pairs for the query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: Query string representation of the parameters. </s> add @param dictionary The dictionary with key/value pairs for the query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return Query string representation of the parameters. </s> remove - Parameter dictionary: The dictionary with key/value pairs for the query string. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Parameter invalidObjectHandler: Handles objects that are invalid, returning a replacement value or nil to ignore. - Returns: Query string representation of the parameters. </s> add @param dictionary The dictionary with key/value pairs for the query string. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. @return Query string representation of the parameters. </s> remove - Parameter string: The JSON string to convert. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: An NSDictionary, NSArray, NSString or NSNumber containing the object representation, or nil if the string </s> add @param string The JSON string to convert. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return An NSDictionary, NSArray, NSString or NSNumber containing the object representation, or nil if the string
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace replace replace keep keep keep keep keep
<mask> + (void)deleteFacebookCookies; <mask> <mask> /** <mask> Extracts permissions from a response fetched from me/permissions <mask> - Parameter responseObject: the response <mask> - Parameter grantedPermissions: the set to add granted permissions to <mask> - Parameter declinedPermissions: the set to add declined permissions to. <mask> */ <mask> + (void)extractPermissionsFromResponse:(NSDictionary *)responseObject <mask> grantedPermissions:(NSMutableSet *)grantedPermissions <mask> declinedPermissions:(NSMutableSet *)declinedPermissions; <mask> </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter token: the access token - Parameter isCancelled: whether the login was cancelled by the user - Parameter grantedPermissions: the set of granted permissions - Parameter declinedPermissions: the set of declined permissions </s> add @param token the access token @param isCancelled whether the login was cancelled by the user @param grantedPermissions the set of granted permissions @param declinedPermissions the set of declined permissions </s> remove - Parameter permissions: the set of permissions, e.g., [NSSet setWithObjects:@"email", @"user_friends"] - Parameter handler: the callback handler </s> add @param permissions the set of permissions, e.g., [NSSet setWithObjects:@"email", @"user_friends"] @param handler the callback handler </s> remove - Parameter array: The array to add the object to. - Parameter object: The object to add to the array. </s> add @param array The array to add the object to. @param object The object to add to the array. </s> remove - Parameter tokenString: the opaque token string. - Parameter permissions: the granted permissions. Note this is converted to NSSet and is only </s> add @param tokenString the opaque token string. @param permissions the granted permissions. Note this is converted to NSSet and is only </s> remove - Parameter permissions: the permissions - Parameter defaultAudience: the default audience - Parameter isReauthorize: a flag describing if this is a reauth request - Parameter appID: the app id - Parameter handler: the handler that will be invoked on completion (dispatched to the main thread). the oauthToken is nil on failure. </s> add @param permissions the permissions @param defaultAudience the default audience @param isReauthorize a flag describing if this is a reauth request @param appID the app id @param handler the handler that will be invoked on completion (dispatched to the main thread). the oauthToken is nil on failure. </s> remove - Parameter view: The tooltip view. - Parameter appIsEligible: The value fetched from the server identifying if the app </s> add @param view The tooltip view. @param appIsEligible The value fetched from the server identifying if the app
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace keep keep keep keep keep
<mask> declinedPermissions:(NSMutableSet *)declinedPermissions; <mask> <mask> /** <mask> Registers a transient object so that it will not be deallocated until unregistered <mask> - Parameter object: The transient object <mask> */ <mask> + (void)registerTransientObject:(id)object; <mask> <mask> /** <mask> Unregisters a transient object that was previously registered with registerTransientObject: </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter object: The transient object </s> add @param object The transient object </s> remove - Parameter array: The array to add the object to. - Parameter object: The object to add to the array. </s> add @param array The array to add the object to. @param object The object to add to the array. </s> remove - Parameter object: The object to convert to JSON. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Parameter invalidObjectHandler: Handles objects that are invalid, returning a replacement value or nil to ignore. - Returns: A JSON string or nil if the object cannot be converted to JSON. </s> add @param object The object to convert to JSON. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. @return A JSON string or nil if the object cannot be converted to JSON. </s> remove - Parameter object: The first object to compare. - Parameter other: The second object to compare. - Returns: YES if the objects are equal, otherwise NO. </s> add @param object The first object to compare. @param other The second object to compare. @return YES if the objects are equal, otherwise NO. </s> remove - Parameter dictionary: The dictionary to set the value for. - Parameter object: The value to set. - Parameter key: The key to set the value for. </s> add @param dictionary The dictionary to set the value for. @param object The value to set. @param key The key to set the value for. </s> remove - Parameter dictionary: The dictionary to set the value for. - Parameter object: The value to set after serializing to JSON. - Parameter key: The key to set the value for. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: NO if an error occurred while serializing the object, otherwise YES. </s> add @param dictionary The dictionary to set the value for. @param object The value to set after serializing to JSON. @param key The key to set the value for. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return NO if an error occurred while serializing the object, otherwise YES.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace keep keep keep keep keep
<mask> + (void)registerTransientObject:(id)object; <mask> <mask> /** <mask> Unregisters a transient object that was previously registered with registerTransientObject: <mask> - Parameter object: The transient object <mask> */ <mask> + (void)unregisterTransientObject:(__weak id)object; <mask> <mask> /** <mask> validates that the app ID is non-nil, throws an NSException if nil. </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter object: The transient object </s> add @param object The transient object </s> remove - Parameter array: The array to add the object to. - Parameter object: The object to add to the array. </s> add @param array The array to add the object to. @param object The object to add to the array. </s> remove - Parameter object: The object to convert to JSON. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Parameter invalidObjectHandler: Handles objects that are invalid, returning a replacement value or nil to ignore. - Returns: A JSON string or nil if the object cannot be converted to JSON. </s> add @param object The object to convert to JSON. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. @return A JSON string or nil if the object cannot be converted to JSON. </s> remove - Parameter dictionary: The dictionary to set the value for. - Parameter object: The value to set after serializing to JSON. - Parameter key: The key to set the value for. - Parameter errorRef: If an error occurs, upon return contains an NSError object that describes the problem. - Returns: NO if an error occurred while serializing the object, otherwise YES. </s> add @param dictionary The dictionary to set the value for. @param object The value to set after serializing to JSON. @param key The key to set the value for. @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. @return NO if an error occurred while serializing the object, otherwise YES. </s> remove - Parameter object: The first object to compare. - Parameter other: The second object to compare. - Returns: YES if the objects are equal, otherwise NO. </s> add @param object The first object to compare. @param other The second object to compare. @return YES if the objects are equal, otherwise NO. </s> remove - Parameter dictionary: The dictionary to set the value for. - Parameter object: The value to set. - Parameter key: The key to set the value for. </s> add @param dictionary The dictionary to set the value for. @param object The value to set. @param key The key to set the value for.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h
keep keep keep keep replace replace replace replace replace keep keep keep keep keep
<mask> @interface FBSDKSystemAccountStoreAdapter : NSObject <mask> <mask> /* <mask> Requests access to the device's Facebook account for the given parameters. <mask> - Parameter permissions: the permissions <mask> - Parameter defaultAudience: the default audience <mask> - Parameter isReauthorize: a flag describing if this is a reauth request <mask> - Parameter appID: the app id <mask> - Parameter handler: the handler that will be invoked on completion (dispatched to the main thread). the oauthToken is nil on failure. <mask> */ <mask> - (void)requestAccessToFacebookAccountStore:(NSSet *)permissions <mask> defaultAudience:(NSString *)defaultAudience <mask> isReauthorize:(BOOL)isReauthorize <mask> appID:(NSString *)appID </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter handler: the handler that is invoked on completion </s> add @param handler the handler that is invoked on completion </s> remove - Parameter handler: The completion handler to call when the renewal is completed. This can be invoked on an arbitrary thread. </s> add @param handler The completion handler to call when the renewal is completed. This can be invoked on an arbitrary thread. </s> remove - Parameter appID: the Facebook app id - Parameter appSecret: the Facebook app secret </s> add @param appID the Facebook app id @param appSecret the Facebook app secret </s> remove - Parameter permissions: the set of permissions, e.g., [NSSet setWithObjects:@"email", @"user_friends"] - Parameter handler: the callback handler </s> add @param permissions the set of permissions, e.g., [NSSet setWithObjects:@"email", @"user_friends"] @param handler the callback handler </s> remove - Parameter request: A request to be included in the round-trip when start is called. </s> add @param request A request to be included in the round-trip when start is called. </s> remove - Parameter userId: the user id - Parameter handler: the callback handler </s> add @param userId the user id @param handler the callback handler
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSystemAccountStoreAdapter.h
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> /* <mask> Sends a message to the device account store to renew the Facebook account credentials <mask> <mask> - Parameter handler: the handler that is invoked on completion <mask> */ <mask> - (void)renewSystemAuthorization:(void(^)(ACAccountCredentialRenewResult result, NSError *error))handler; <mask> <mask> /* <mask> s gets the oauth token stored in the account store credential, if available. If not empty, </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter handler: The completion handler to call when the renewal is completed. This can be invoked on an arbitrary thread. </s> add @param handler The completion handler to call when the renewal is completed. This can be invoked on an arbitrary thread. </s> remove - Parameter permissions: the permissions - Parameter defaultAudience: the default audience - Parameter isReauthorize: a flag describing if this is a reauth request - Parameter appID: the app id - Parameter handler: the handler that will be invoked on completion (dispatched to the main thread). the oauthToken is nil on failure. </s> add @param permissions the permissions @param defaultAudience the default audience @param isReauthorize a flag describing if this is a reauth request @param appID the app id @param handler the handler that will be invoked on completion (dispatched to the main thread). the oauthToken is nil on failure. </s> remove - Parameter properties: the custom user properties - Parameter handler: the optional completion handler </s> add @param properties the custom user properties @param handler the optional completion handler </s> remove - Parameter userId: the user id - Parameter handler: the callback handler </s> add @param userId the user id @param handler the callback handler </s> remove - Parameter permissions: the set of permissions, e.g., [NSSet setWithObjects:@"email", @"user_friends"] - Parameter handler: the callback handler </s> add @param permissions the set of permissions, e.g., [NSSet setWithObjects:@"email", @"user_friends"] @param handler the callback handler </s> remove - Parameter handler: the handler to be invoked if there is deferred App Link data </s> add @param handler the handler to be invoked if there is deferred App Link data
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSystemAccountStoreAdapter.h
keep keep keep keep replace keep keep keep keep keep
<mask> } <mask> <mask> + (void)addServerConfigurationPiggyback:(FBSDKGraphRequestConnection *)connection <mask> { <mask> if (![[FBSDKServerConfigurationManager cachedServerConfiguration] isDefaults]) { <mask> return; <mask> } <mask> NSString *appID = [FBSDKSettings appID]; <mask> FBSDKGraphRequest *serverConfigurationRequest = [FBSDKServerConfigurationManager requestToLoadServerConfiguration:appID]; <mask> [connection addRequest:serverConfigurationRequest </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove auto const c = category(); if (c == Category::isSmall) { return; } if (c == Category::isMedium) { free(ml_.data_); </s> add if (category() == Category::isSmall) { </s> add NSString *userData = [FBSDKAppEvents getUserData]; if (userData){ parameters[@"ud"] = userData; } </s> remove } else if (!found && SafeFNMatch_(info->module_pattern.c_str(), info->module_pattern.size(), module_pattern, pattern_len)) { result = info->vlog_level; found = true; </s> add info->next = vmodule_list; vmodule_list = info; </s> remove inline void fbstring_core<Char>::reserveMedium(const size_t minCapacity) { </s> add FOLLY_MALLOC_NOINLINE inline void fbstring_core<Char>::reserveMedium( const size_t minCapacity) { </s> remove MutexLock l(&vmodule_lock); // protect whole read-modify-write for (const VModuleInfo* info = vmodule_list; info != NULL; info = info->next) { if (info->module_pattern == module_pattern) { if (!found) { </s> add { MutexLock l(&vmodule_lock); // protect whole read-modify-write for (const VModuleInfo* info = vmodule_list; info != NULL; info = info->next) { if (info->module_pattern == module_pattern) { if (!found) { result = info->vlog_level; found = true; } info->vlog_level = log_level; } else if (!found && SafeFNMatch_(info->module_pattern.c_str(), info->module_pattern.size(), module_pattern, pattern_len)) { </s> remove for (NSObject *child in subviews) { [children addObject:child]; </s> add for (UIView *child in subviews) { UIViewController *vc = [FBSDKViewHierarchy getParentViewController:child]; if (vc && vc.view == child) { [children addObject:vc]; } else { [children addObject:child]; }
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestPiggybackManager.m
keep keep add keep keep keep keep keep keep
<mask> codelessEventsEnabled:(BOOL)codelessEventsEnabled <mask> systemAuthenticationEnabled:(BOOL)systemAuthenticationEnabled <mask> nativeAuthFlowEnabled:(BOOL)nativeAuthFlowEnabled <mask> dialogConfigurations:(NSDictionary *)dialogConfigurations <mask> dialogFlows:(NSDictionary *)dialogFlows <mask> timestamp:(NSDate *)timestamp <mask> errorConfiguration:(FBSDKErrorConfiguration *)errorConfiguration <mask> sessionTimeoutInterval:(NSTimeInterval) sessionTimeoutInterval <mask> defaults:(BOOL)defaults </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove ss.dependency "Folly", "2016.09.26.00" </s> add ss.dependency "Folly", "2016.10.31.00" </s> remove - Returns: The kSecAttrGeneric value or nil. </s> add @return The kSecAttrGeneric value or nil. </s> remove - Parameter string: The base-64 encoded string. - Returns: NSString with the decoded UTF-8 value. </s> add @param string The base-64 encoded string. @return NSString with the decoded UTF-8 value. </s> remove - Parameter data: The data to be encoded. - Returns: The base-64 encoded string. </s> add @param data The data to be encoded. @return The base-64 encoded string. </s> remove - Parameter string: The string to be encoded. - Returns: The base-64 encoded string. </s> add @param string The string to be encoded. @return The base-64 encoded string. </s> remove - Parameter loginCode: The login code associated with the action for the device request. - Returns: True if the service broadcast was successfully started. </s> add @param loginCode The login code associated with the action for the device request. @return True if the service broadcast was successfully started.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration.h
keep keep keep add keep keep keep keep
<mask> @property (nonatomic, assign, readonly, getter=isCodelessEventsEnabled) BOOL codelessEventsEnabled; <mask> @property (nonatomic, assign, readonly, getter=isLoginTooltipEnabled) BOOL loginTooltipEnabled; <mask> @property (nonatomic, assign, readonly, getter=isNativeAuthFlowEnabled) BOOL nativeAuthFlowEnabled; <mask> @property (nonatomic, assign, readonly, getter=isSystemAuthenticationEnabled) BOOL systemAuthenticationEnabled; <mask> @property (nonatomic, copy, readonly) NSString *loginTooltipText; <mask> @property (nonatomic, copy, readonly) NSDate *timestamp; <mask> @property (nonatomic, assign) NSTimeInterval sessionTimoutInterval; <mask> @property (nonatomic, copy, readonly) NSString *loggingToken; </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Parameter disable: whether to disable the automatic error recovery mechanism </s> add @param disable whether to disable the automatic error recovery mechanism </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Parameter error: the error to process. - Parameter request: the related request that may be reissued. - Parameter delegate: the delegate that will be retained until recovery is complete. </s> add @param error the error to process. @param request the related request that may be reissued. @param delegate the delegate that will be retained until recovery is complete. </s> add BOOL uninstallTrackingEnabled = (appEventsFeatures & FBSDKServerConfigurationManagerAppEventsFeaturesUninstallTrackingEnabled);
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration.h
keep keep add keep keep keep keep
<mask> <mask> #import "FBSDKServerConfiguration.h" <mask> <mask> typedef void(^FBSDKServerConfigurationManagerLoadBlock)(FBSDKServerConfiguration *serverConfiguration, NSError *error); <mask> <mask> @interface FBSDKServerConfigurationManager : NSObject <mask> </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter result: the result of the authorization - Parameter error: the authorization error, if any. </s> add @param result the result of the authorization @param error the authorization error, if any. </s> remove - Parameter error: The `NSError` representing any error that occurred. </s> add @param error The `NSError` representing any error that occurred. </s> add /** Auth type */ @property (strong, nonatomic) NSString *authType; </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - See:FBSDKGraphErrorRecoveryProcessor </s> add @see FBSDKGraphErrorRecoveryProcessor </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.h
keep keep keep keep replace keep keep keep keep keep
<mask> #import "FBSDKTypeUtility.h" <mask> <mask> // one hour <mask> #define DEFAULT_SESSION_TIMEOUT_INTERVAL 60 <mask> #define FBSDK_SERVER_CONFIGURATION_MANAGER_CACHE_TIMEOUT (60 * 60) <mask> <mask> #define FBSDK_SERVER_CONFIGURATION_USER_DEFAULTS_KEY @"com.facebook.sdk:serverConfiguration%@" <mask> <mask> #define FBSDK_SERVER_CONFIGURATION_APP_EVENTS_FEATURES_FIELD @"app_events_feature_bitmask" <mask> #define FBSDK_SERVER_CONFIGURATION_APP_NAME_FIELD @"name" </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> add #define FBSDK_SERVER_CONFIGURATION_MANAGER_CACHE_TIMEOUT (60 * 60) </s> remove #define FBSDK_VERSION_STRING @"4.34.0" #define FBSDK_TARGET_PLATFORM_VERSION @"v3.0" </s> add #define FBSDK_VERSION_STRING @"4.36.0" #define FBSDK_TARGET_PLATFORM_VERSION @"v3.1" </s> remove #define GOOGLE_PREDICT_FALSE(x) (__builtin_expect(x, 0)) #define GOOGLE_PREDICT_TRUE(x) (__builtin_expect(!!(x), 1)) </s> add </s> remove #define GOOGLE_PREDICT_FALSE(x) (__builtin_expect(x, 0)) #define GOOGLE_PREDICT_TRUE(x) (__builtin_expect(!!(x), 1)) </s> add </s> remove // debug-only checking. not executed in NDEBUG mode. </s> add // debug-only checking. executed if DCHECK_IS_ON(). </s> remove // debug-only checking. not executed in NDEBUG mode. </s> add // debug-only checking. executed if DCHECK_IS_ON().
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.m
keep add keep keep keep keep keep keep
<mask> FBSDKServerConfigurationManagerAppEventsFeaturesImplicitPurchaseLoggingEnabled = 1 << 1, <mask> FBSDKServerConfigurationManagerAppEventsFeaturesCodelessEventsTriggerEnabled = 1 << 5, <mask> }; <mask> <mask> #pragma mark - Public Class Methods <mask> <mask> + (void)initialize <mask> { </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove capacity_ = kIsLittleEndian ? cap | static_cast<category_type>(cat) : (cap << 2) | static_cast<category_type>(cat); </s> add capacity_ = kIsLittleEndian ? cap | (static_cast<size_t>(cat) << kCategoryShift) : (cap << 2) | static_cast<size_t>(cat); </s> remove int error = (remaining_decimals == 0 ? 0 : kDenominator / 2); </s> add uint64_t error = (remaining_decimals == 0 ? 0 : kDenominator / 2); </s> remove // Equivalent to setSmallSize(0) but a few ns faster in // microbenchmarks. </s> add </s> remove enum : size_t { lastChar = sizeof(MediumLarge) - 1, maxSmallSize = lastChar / sizeof(Char), maxMediumSize = 254 / sizeof(Char), // coincides with the small // bin size in dlmalloc categoryExtractMask = kIsLittleEndian ? sizeof(size_t) == 4 ? 0xC0000000 : size_t(0xC000000000000000) : 0x3, capacityExtractMask = kIsLittleEndian ? ~categoryExtractMask : 0x0 /*unused*/, }; </s> add constexpr static size_t lastChar = sizeof(MediumLarge) - 1; constexpr static size_t maxSmallSize = lastChar / sizeof(Char); constexpr static size_t maxMediumSize = 254 / sizeof(Char); constexpr static uint8_t categoryExtractMask = kIsLittleEndian ? 0xC0 : 0x3; constexpr static size_t kCategoryShift = (sizeof(size_t) - 1) * 8; constexpr static size_t capacityExtractMask = kIsLittleEndian ? ~(size_t(categoryExtractMask) << kCategoryShift) : 0x0 /* unused */; </s> remove explicit StaticMetaBase(ThreadEntry* (*threadEntry)()); </s> add StaticMetaBase(ThreadEntry* (*threadEntry)(), bool strict); </s> add /** * Portable version check. */ #ifndef __GNUC_PREREQ # if defined __GNUC__ && defined __GNUC_MINOR__ /* nolint */ # define __GNUC_PREREQ(maj, min) ((__GNUC__ << 16) + __GNUC_MINOR__ >= \ ((maj) << 16) + (min)) # else /* nolint */ # define __GNUC_PREREQ(maj, min) 0 # endif #endif
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.m
keep add keep keep keep keep keep keep
<mask> BOOL implicitPurchaseLoggingEnabled = (appEventsFeatures & FBSDKServerConfigurationManagerAppEventsFeaturesImplicitPurchaseLoggingEnabled); <mask> BOOL codelessEventsEnabled = (appEventsFeatures & FBSDKServerConfigurationManagerAppEventsFeaturesCodelessEventsTriggerEnabled); <mask> NSString *appName = [FBSDKTypeUtility stringValue:resultDictionary[FBSDK_SERVER_CONFIGURATION_APP_NAME_FIELD]]; <mask> BOOL loginTooltipEnabled = [FBSDKTypeUtility boolValue:resultDictionary[FBSDK_SERVER_CONFIGURATION_LOGIN_TOOLTIP_ENABLED_FIELD]]; <mask> NSString *loginTooltipText = [FBSDKTypeUtility stringValue:resultDictionary[FBSDK_SERVER_CONFIGURATION_LOGIN_TOOLTIP_TEXT_FIELD]]; <mask> NSString *defaultShareMode = [FBSDKTypeUtility stringValue:resultDictionary[FBSDK_SERVER_CONFIGURATION_DEFAULT_SHARE_MODE_FIELD]]; <mask> BOOL implicitLoggingEnabled = [FBSDKTypeUtility boolValue:resultDictionary[FBSDK_SERVER_CONFIGURATION_IMPLICIT_LOGGING_ENABLED_FIELD]]; <mask> BOOL systemAuthenticationEnabled = [FBSDKTypeUtility boolValue:resultDictionary[FBSDK_SERVER_CONFIGURATION_SYSTEM_AUTHENTICATION_ENABLED_FIELD]]; </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> add @property (nonatomic, assign, readonly, getter=isUninstallTrackingEnabled) BOOL uninstallTrackingEnabled; </s> add NSString *const OIDOAuthExceptionInvalidTokenRequestNullRedirectURL = @"A OIDTokenRequest was " "created with a grant_type that requires a redirectURL, but a null redirectURL was given"; </s> add NSString *userData = [FBSDKAppEvents getUserData]; if (userData){ parameters[@"ud"] = userData; } </s> add /*! @brief String representing the set of characters that are allowed as is for the application/x-www-form-urlencoded encoding algorithm. */ static NSString *const kFormUrlEncodedAllowedCharacters = @" *-._0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; </s> remove // Equivalent to setSmallSize(0) but a few ns faster in // microbenchmarks. </s> add </s> remove if (![[FBSDKServerConfigurationManager cachedServerConfiguration] isDefaults]) { </s> add if (![[FBSDKServerConfigurationManager cachedServerConfiguration] isDefaults] && [[NSDate date] timeIntervalSinceDate:[FBSDKServerConfigurationManager cachedServerConfiguration].timestamp] < FBSDK_SERVER_CONFIGURATION_MANAGER_CACHE_TIMEOUT) {
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.m
keep add keep keep keep keep keep keep
<mask> systemAuthenticationEnabled:systemAuthenticationEnabled <mask> nativeAuthFlowEnabled:nativeAuthFlowEnabled <mask> dialogConfigurations:dialogConfigurations <mask> dialogFlows:dialogFlows <mask> timestamp:[NSDate date] <mask> errorConfiguration:errorConfiguration <mask> sessionTimeoutInterval:sessionTimeoutInterval <mask> defaults:NO </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> add uninstallTrackingEnabled:NO </s> remove if (![[FBSDKServerConfigurationManager cachedServerConfiguration] isDefaults]) { </s> add if (![[FBSDKServerConfigurationManager cachedServerConfiguration] isDefaults] && [[NSDate date] timeIntervalSinceDate:[FBSDKServerConfigurationManager cachedServerConfiguration].timestamp] < FBSDK_SERVER_CONFIGURATION_MANAGER_CACHE_TIMEOUT) { </s> remove ss.dependency "Folly", "2016.09.26.00" </s> add ss.dependency "Folly", "2016.10.31.00" </s> remove - Returns: The kSecAttrService value or nil. </s> add @return The kSecAttrService value or nil. </s> remove - Parameter string: The base-64 encoded string. - Returns: NSString with the decoded UTF-8 value. </s> add @param string The base-64 encoded string. @return NSString with the decoded UTF-8 value. </s> remove - Parameter data: The data to be encoded. - Returns: The base-64 encoded string. </s> add @param data The data to be encoded. @return The base-64 encoded string.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.m
keep keep keep keep replace replace keep keep keep keep keep
<mask> FBSDK_SERVER_CONFIGURATION_LOGIN_TOOLTIP_TEXT_FIELD, <mask> FBSDK_SERVER_CONFIGURATION_NATIVE_PROXY_AUTH_FLOW_ENABLED_FIELD, <mask> FBSDK_SERVER_CONFIGURATION_SYSTEM_AUTHENTICATION_ENABLED_FIELD, <mask> FBSDK_SERVER_CONFIGURATION_SESSION_TIMEOUT_FIELD, <mask> FBSDK_SERVER_CONFIGURATION_LOGGIN_TOKEN_FIELD, <mask> FBSDK_SERVER_CONFIGURATION_EVENT_BINDINGS_FIELD <mask> #ifdef DEBUG <mask> ,FBSDK_SERVER_CONFIGURATION_UPDATE_MESSAGE_FIELD <mask> #endif <mask> #if TARGET_OS_TV <mask> ,FBSDK_SERVER_CONFIGURATION_SMART_LOGIN_OPTIONS_FIELD, </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove #ifdef NDEBUG </s> add #if !DCHECK_IS_ON() </s> remove #ifdef NDEBUG </s> add #if !DCHECK_IS_ON() </s> add #ifdef _WIN32 #define fdopen _fdopen #endif </s> add #endif #endif #ifndef GOOGLE_PREDICT_FALSE #if 1 #define GOOGLE_PREDICT_FALSE(x) (__builtin_expect(x, 0)) #else </s> add namespace glog_internal_namespace_ { bool IsFailureSignalHandlerInstalled() { #ifdef HAVE_SIGACTION struct sigaction sig_action; memset(&sig_action, 0, sizeof(sig_action)); sigemptyset(&sig_action.sa_mask); sigaction(SIGABRT, NULL, &sig_action); if (sig_action.sa_sigaction == &FailureSignalHandler) return true; #endif // HAVE_SIGACTION return false; } } // namespace glog_internal_namespace_ </s> add #endif #endif #ifndef GOOGLE_PREDICT_TRUE #if 1 #define GOOGLE_PREDICT_TRUE(x) (__builtin_expect(!!(x), 1)) #else
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.m
keep add keep keep keep keep keep keep
<mask> systemAuthenticationEnabled:NO <mask> nativeAuthFlowEnabled:NO <mask> dialogConfigurations:nil <mask> dialogFlows:dialogFlows <mask> timestamp:nil <mask> errorConfiguration:nil <mask> sessionTimeoutInterval:DEFAULT_SESSION_TIMEOUT_INTERVAL <mask> defaults:YES </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> add uninstallTrackingEnabled:uninstallTrackingEnabled </s> remove ss.dependency "Folly", "2016.09.26.00" </s> add ss.dependency "Folly", "2016.10.31.00" </s> remove - Returns: The kSecAttrGeneric value or nil. </s> add @return The kSecAttrGeneric value or nil. </s> remove - Parameter string: The base-64 encoded string. - Returns: NSString with the decoded UTF-8 value. </s> add @param string The base-64 encoded string. @return NSString with the decoded UTF-8 value. </s> remove - Parameter data: The data to be encoded. - Returns: The base-64 encoded string. </s> add @param data The data to be encoded. @return The base-64 encoded string. </s> remove - Parameter string: The string to be encoded. - Returns: The base-64 encoded string. </s> add @param string The string to be encoded. @return The base-64 encoded string.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.m
keep keep keep keep replace replace replace keep keep keep keep keep
<mask> <mask> @required <mask> /** <mask> Sent to the delegate when the button was used to login. <mask> - Parameter loginButton: the sender <mask> - Parameter result: The results of the login <mask> - Parameter error: The error (if any) from the login <mask> */ <mask> - (void)loginButton:(FBSDKLoginButton *)loginButton <mask> didCompleteWithResult:(FBSDKLoginManagerLoginResult *)result <mask> error:(NSError *)error; <mask> </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter loginButton: the sender - Returns: YES if the login should be allowed to proceed, NO otherwise </s> add @param loginButton the sender @return YES if the login should be allowed to proceed, NO otherwise </s> remove - Parameter loginButton: The button that was clicked. </s> add @param loginButton The button that was clicked. </s> remove - Parameter processor: the processor instance. - Parameter didRecover: YES if the recovery was successful. - Parameter error: the error that that was attempted to be recovered from. </s> add @param processor the processor instance. @param didRecover YES if the recovery was successful. @param error the error that that was attempted to be recovered from. </s> remove - Parameter loginCode: The login code associated with the action for the device request. - Returns: True if the service broadcast was successfully started. </s> add @param loginCode The login code associated with the action for the device request. @return True if the service broadcast was successfully started. </s> remove - Parameter view: The tooltip view. - Parameter appIsEligible: The value fetched from the server identifying if the app </s> add @param view The tooltip view. @param appIsEligible The value fetched from the server identifying if the app </s> remove - Parameter token: the access token - Parameter isCancelled: whether the login was cancelled by the user - Parameter grantedPermissions: the set of granted permissions - Parameter declinedPermissions: the set of declined permissions </s> add @param token the access token @param isCancelled whether the login was cancelled by the user @param grantedPermissions the set of granted permissions @param declinedPermissions the set of declined permissions
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.h
keep keep keep keep replace keep keep keep keep keep
<mask> error:(NSError *)error; <mask> <mask> /** <mask> Sent to the delegate when the button was used to logout. <mask> - Parameter loginButton: The button that was clicked. <mask> */ <mask> - (void)loginButtonDidLogOut:(FBSDKLoginButton *)loginButton; <mask> <mask> @optional <mask> /** </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter loginButton: the sender - Parameter result: The results of the login - Parameter error: The error (if any) from the login </s> add @param loginButton the sender @param result The results of the login @param error The error (if any) from the login </s> remove - Parameter loginButton: the sender - Returns: YES if the login should be allowed to proceed, NO otherwise </s> add @param loginButton the sender @return YES if the login should be allowed to proceed, NO otherwise </s> remove - Parameter processor: the processor instance. - Parameter didRecover: YES if the recovery was successful. - Parameter error: the error that that was attempted to be recovered from. </s> add @param processor the processor instance. @param didRecover YES if the recovery was successful. @param error the error that that was attempted to be recovered from. </s> remove - Returns: Promotion code string. </s> add @return Promotion code string. </s> remove - Parameter view: The tooltip view. </s> add @param view The tooltip view. </s> remove - Parameter view: The tooltip view. </s> add @param view The tooltip view.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.h
keep keep keep keep replace replace keep keep keep keep
<mask> <mask> @optional <mask> /** <mask> Sent to the delegate when the button is about to login. <mask> - Parameter loginButton: the sender <mask> - Returns: YES if the login should be allowed to proceed, NO otherwise <mask> */ <mask> - (BOOL) loginButtonWillLogin:(FBSDKLoginButton *)loginButton; <mask> <mask> @end </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter loginButton: the sender - Parameter result: The results of the login - Parameter error: The error (if any) from the login </s> add @param loginButton the sender @param result The results of the login @param error The error (if any) from the login </s> remove - Parameter loginButton: The button that was clicked. </s> add @param loginButton The button that was clicked. </s> remove - Parameter processor: the processor instance. - Parameter error: the error is about to be processed. </s> add @param processor the processor instance. @param error the error is about to be processed. </s> remove - Parameter token: The other token - Returns: YES if the receiver's values are equal to the other token's values; otherwise NO </s> add @param token The other token @return YES if the receiver's values are equal to the other token's values; otherwise NO </s> remove - Returns: YES if the url was intended for the Facebook SDK, NO if not. </s> add @return YES if the url was intended for the Facebook SDK, NO if not. </s> remove - Parameter view: The tooltip view. - Parameter appIsEligible: The value fetched from the server identifying if the app </s> add @param view The tooltip view. @param appIsEligible The value fetched from the server identifying if the app
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.h
keep keep keep keep replace replace keep keep keep keep keep
<mask> @class FBSDKLoginManagerLoginResult; <mask> <mask> /** <mask> Describes the call back to the FBSDKLoginManager <mask> - Parameter result: the result of the authorization <mask> - Parameter error: the authorization error, if any. <mask> */ <mask> typedef void (^FBSDKLoginManagerRequestTokenHandler)(FBSDKLoginManagerLoginResult *result, NSError *error); <mask> <mask> <mask> /** </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter error: The `NSError` representing any error that occurred. </s> add @param error The `NSError` representing any error that occurred. </s> remove - Parameter result: The result of the request. This is a translation of </s> add @param result The result of the request. This is a translation of </s> remove - Parameter url: the url representing the deferred App Link </s> add @param url the url representing the deferred App Link </s> remove - Parameter loginButton: the sender - Parameter result: The results of the login - Parameter error: The error (if any) from the login </s> add @param loginButton the sender @param result The results of the login @param error The error (if any) from the login </s> remove - Parameter connection: The `FBSDKGraphRequestConnection` that sent the request. </s> add @param connection The `FBSDKGraphRequestConnection` that sent the request. </s> remove - Parameter url: the url representing the deferred App Link - Parameter error: the error during the request, if any </s> add @param url the url representing the deferred App Link @param error the error during the request, if any
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.h
keep add keep keep keep keep keep
<mask> @interface FBSDKLoginManager : NSObject <mask> <mask> /** <mask> the default audience. <mask> <mask> you should set this if you intend to ask for publish permissions. <mask> */ </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter handler: the callback. </s> add @param handler the callback. </s> remove - Parameter fromViewController: the view controller to present from. If nil, the topmost view controller will be </s> add @param fromViewController the view controller to present from. If nil, the topmost view controller will be </s> remove - Parameter appID: The Facebook App ID to be used for App Event logging. </s> add @param appID The Facebook App ID to be used for App Event logging. </s> remove - Parameter appID: the Facebook app id - Parameter appSecret: the Facebook app secret </s> add @param appID the Facebook app id @param appSecret the Facebook app secret </s> remove - Parameter handler: the callback. </s> add @param handler the callback. </s> remove - Parameter processor: the processor instance. - Parameter error: the error is about to be processed. </s> add @param processor the processor instance. @param error the error is about to be processed.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.h
keep keep keep keep replace keep keep keep keep keep
<mask> @property (assign, nonatomic) FBSDKLoginBehavior loginBehavior; <mask> <mask> /** <mask> <mask> - Warning:use logInWithReadPermissions:fromViewController:handler: instead <mask> */ <mask> - (void)logInWithReadPermissions:(NSArray *)permissions handler:(FBSDKLoginManagerRequestTokenHandler)handler <mask> __attribute__ ((deprecated("use logInWithReadPermissions:fromViewController:handler: instead"))); <mask> <mask> /** </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Warning:use logInWithPublishPermissions:fromViewController:handler: instead </s> add @warning use logInWithPublishPermissions:fromViewController:handler: instead </s> remove - Warning:use FBSDKBrowserUnavailableErrorCode instead </s> add @warning use FBSDKBrowserUnavailableErrorCode instead </s> remove - Parameter mode: The picture mode - Parameter size: The height and width. This will be rounded to integer precision. </s> add @param mode The picture mode @param size The height and width. This will be rounded to integer precision. </s> remove - Parameter profile: the profile to compare to. </s> add @param profile the profile to compare to. </s> add /** Auth type */ @property (strong, nonatomic) NSString *authType; </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.h
keep keep keep keep replace keep keep keep keep keep
<mask> __attribute__ ((deprecated("use logInWithReadPermissions:fromViewController:handler: instead"))); <mask> <mask> /** <mask> <mask> - Warning:use logInWithPublishPermissions:fromViewController:handler: instead <mask> */ <mask> - (void)logInWithPublishPermissions:(NSArray *)permissions handler:(FBSDKLoginManagerRequestTokenHandler)handler <mask> __attribute__ ((deprecated("use logInWithPublishPermissions:fromViewController:handler: instead"))); <mask> <mask> /** </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Warning:use logInWithReadPermissions:fromViewController:handler: instead </s> add @warning use logInWithReadPermissions:fromViewController:handler: instead </s> remove - Warning:use FBSDKBrowserUnavailableErrorCode instead </s> add @warning use FBSDKBrowserUnavailableErrorCode instead </s> remove - Parameter mode: The picture mode - Parameter size: The height and width. This will be rounded to integer precision. </s> add @param mode The picture mode @param size The height and width. This will be rounded to integer precision. </s> remove - Parameter profile: the profile to compare to. </s> add @param profile the profile to compare to. </s> remove - Parameter permissions: the optional array of permissions. Note this is converted to NSSet and is only </s> add @param permissions the optional array of permissions. Note this is converted to NSSet and is only </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.h
keep keep keep keep replace keep replace keep
<mask> __attribute__ ((deprecated("use logInWithPublishPermissions:fromViewController:handler: instead"))); <mask> <mask> /** <mask> Logs the user in or authorizes additional permissions. <mask> - Parameter permissions: the optional array of permissions. Note this is converted to NSSet and is only <mask> an NSArray for the convenience of literal syntax. <mask> - Parameter fromViewController: the view controller to present from. If nil, the topmost view controller will be <mask> automatically determined as best as possible. </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter permissions: the optional array of permissions. Note this is converted to NSSet and is only </s> add @param permissions the optional array of permissions. Note this is converted to NSSet and is only </s> remove - Parameter fromViewController: the view controller to present from. If nil, the topmost view controller will be </s> add @param fromViewController the view controller to present from. If nil, the topmost view controller will be </s> remove - Parameter handler: the callback. </s> add @param handler the callback. </s> remove - Parameter handler: the callback. </s> add @param handler the callback. </s> remove - Parameter tokenString: the opaque token string. - Parameter permissions: the granted permissions. Note this is converted to NSSet and is only </s> add @param tokenString the opaque token string. @param permissions the granted permissions. Note this is converted to NSSet and is only
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.h
keep keep keep keep replace keep keep keep keep keep
<mask> - Parameter permissions: the optional array of permissions. Note this is converted to NSSet and is only <mask> an NSArray for the convenience of literal syntax. <mask> - Parameter fromViewController: the view controller to present from. If nil, the topmost view controller will be <mask> automatically determined as best as possible. <mask> - Parameter handler: the callback. <mask> <mask> Use this method when asking for read permissions. You should only ask for permissions when they <mask> are needed and explain the value to the user. You can inspect the result.declinedPermissions to also <mask> provide more information to the user if they decline permissions. <mask> </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter handler: the callback. </s> add @param handler the callback. </s> remove - Parameter fromViewController: the view controller to present from. If nil, the topmost view controller will be </s> add @param fromViewController the view controller to present from. If nil, the topmost view controller will be </s> remove - Parameter fromViewController: the view controller to present from. If nil, the topmost view controller will be </s> add @param fromViewController the view controller to present from. If nil, the topmost view controller will be </s> remove - Parameter permissions: the optional array of permissions. Note this is converted to NSSet and is only </s> add @param permissions the optional array of permissions. Note this is converted to NSSet and is only </s> remove - Parameter permissions: the optional array of permissions. Note this is converted to NSSet and is only </s> add @param permissions the optional array of permissions. Note this is converted to NSSet and is only </s> remove - Parameter tokenString: the opaque token string. - Parameter permissions: the granted permissions. Note this is converted to NSSet and is only </s> add @param tokenString the opaque token string. @param permissions the granted permissions. Note this is converted to NSSet and is only
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.h
keep keep keep replace keep replace
<mask> <mask> /** <mask> Logs the user in or authorizes additional permissions. <mask> - Parameter permissions: the optional array of permissions. Note this is converted to NSSet and is only <mask> an NSArray for the convenience of literal syntax. <mask> - Parameter fromViewController: the view controller to present from. If nil, the topmost view controller will be </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter permissions: the optional array of permissions. Note this is converted to NSSet and is only </s> add @param permissions the optional array of permissions. Note this is converted to NSSet and is only </s> remove - Parameter fromViewController: the view controller to present from. If nil, the topmost view controller will be </s> add @param fromViewController the view controller to present from. If nil, the topmost view controller will be </s> remove - Parameter handler: the callback. </s> add @param handler the callback. </s> remove - Parameter handler: the callback. </s> add @param handler the callback. </s> remove - Parameter tokenString: the opaque token string. - Parameter permissions: the granted permissions. Note this is converted to NSSet and is only </s> add @param tokenString the opaque token string. @param permissions the granted permissions. Note this is converted to NSSet and is only
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.h
keep keep keep keep replace keep keep keep keep keep
<mask> - Parameter permissions: the optional array of permissions. Note this is converted to NSSet and is only <mask> an NSArray for the convenience of literal syntax. <mask> - Parameter fromViewController: the view controller to present from. If nil, the topmost view controller will be <mask> automatically determined as best as possible. <mask> - Parameter handler: the callback. <mask> <mask> Use this method when asking for publish permissions. You should only ask for permissions when they <mask> are needed and explain the value to the user. You can inspect the result.declinedPermissions to also <mask> provide more information to the user if they decline permissions. <mask> </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter handler: the callback. </s> add @param handler the callback. </s> remove - Parameter fromViewController: the view controller to present from. If nil, the topmost view controller will be </s> add @param fromViewController the view controller to present from. If nil, the topmost view controller will be </s> remove - Parameter fromViewController: the view controller to present from. If nil, the topmost view controller will be </s> add @param fromViewController the view controller to present from. If nil, the topmost view controller will be </s> remove - Parameter permissions: the optional array of permissions. Note this is converted to NSSet and is only </s> add @param permissions the optional array of permissions. Note this is converted to NSSet and is only </s> remove - Parameter permissions: the optional array of permissions. Note this is converted to NSSet and is only </s> add @param permissions the optional array of permissions. Note this is converted to NSSet and is only </s> remove - Parameter tokenString: the opaque token string. - Parameter permissions: the granted permissions. Note this is converted to NSSet and is only </s> add @param tokenString the opaque token string. @param permissions the granted permissions. Note this is converted to NSSet and is only
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.h
keep keep keep keep replace keep keep keep keep keep
<mask> @method <mask> <mask> Issues an asynchronous renewCredentialsForAccount call to the device's Facebook account store. <mask> <mask> - Parameter handler: The completion handler to call when the renewal is completed. This can be invoked on an arbitrary thread. <mask> <mask> <mask> This can be used to explicitly renew account credentials and is provided as a convenience wrapper around <mask> `[ACAccountStore renewCredentialsForAccount:completion]`. Note the method will not issue the renewal call if the the <mask> Facebook account has not been set on the device, or if access had not been granted to the account (though the handler </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter handler: the handler that is invoked on completion </s> add @param handler the handler that is invoked on completion </s> remove - Parameter handler: A handler to call back when the round-trip completes or times out. </s> add @param handler A handler to call back when the round-trip completes or times out. </s> remove - Parameter request: A request to be included in the round-trip when start is called. </s> add @param request A request to be included in the round-trip when start is called. </s> remove - Parameter permissions: the permissions - Parameter defaultAudience: the default audience - Parameter isReauthorize: a flag describing if this is a reauth request - Parameter appID: the app id - Parameter handler: the handler that will be invoked on completion (dispatched to the main thread). the oauthToken is nil on failure. </s> add @param permissions the permissions @param defaultAudience the default audience @param isReauthorize a flag describing if this is a reauth request @param appID the app id @param handler the handler that will be invoked on completion (dispatched to the main thread). the oauthToken is nil on failure. </s> remove - Parameter name: An optional name for this request. This can be used to feed </s> add @param name An optional name for this request. This can be used to feed </s> remove - Parameter request: A request to be included in the round-trip when start is called. - Parameter handler: A handler to call back when the round-trip completes or times out. </s> add @param request A request to be included in the round-trip when start is called. @param handler A handler to call back when the round-trip completes or times out.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.h
keep keep keep keep replace replace replace replace keep keep keep keep keep
<mask> @property (copy, nonatomic) NSSet *declinedPermissions; <mask> <mask> /** <mask> Initializes a new instance. <mask> - Parameter token: the access token <mask> - Parameter isCancelled: whether the login was cancelled by the user <mask> - Parameter grantedPermissions: the set of granted permissions <mask> - Parameter declinedPermissions: the set of declined permissions <mask> */ <mask> - (instancetype)initWithToken:(FBSDKAccessToken *)token <mask> isCancelled:(BOOL)isCancelled <mask> grantedPermissions:(NSSet *)grantedPermissions <mask> declinedPermissions:(NSSet *)declinedPermissions </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter responseObject: the response - Parameter grantedPermissions: the set to add granted permissions to - Parameter declinedPermissions: the set to add declined permissions to. </s> add @param responseObject the response @param grantedPermissions the set to add granted permissions to @param declinedPermissions the set to add declined permissions to. </s> remove - Parameter tokenString: the opaque token string. - Parameter permissions: the granted permissions. Note this is converted to NSSet and is only </s> add @param tokenString the opaque token string. @param permissions the granted permissions. Note this is converted to NSSet and is only </s> remove - Parameter declinedPermissions: the declined permissions. Note this is converted to NSSet and is only </s> add @param declinedPermissions the declined permissions. Note this is converted to NSSet and is only </s> remove - Parameter appID: the app ID. - Parameter userID: the user ID. - Parameter expirationDate: the optional expiration date (defaults to distantFuture). - Parameter refreshDate: the optional date the token was last refreshed (defaults to today). </s> add @param appID the app ID. @param userID the user ID. @param expirationDate the optional expiration date (defaults to distantFuture). @param refreshDate the optional date the token was last refreshed (defaults to today). </s> remove - Parameter permissions: the set of permissions, e.g., [NSSet setWithObjects:@"email", @"user_friends"] - Parameter handler: the callback handler </s> add @param permissions the set of permissions, e.g., [NSSet setWithObjects:@"email", @"user_friends"] @param handler the callback handler </s> remove - Parameter token: The access token to set. </s> add @param token The access token to set.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManagerLoginResult.h
keep keep keep keep replace replace keep keep keep keep keep
<mask> <mask> /** <mask> Asks the delegate if the tooltip view should appear <mask> <mask> - Parameter view: The tooltip view. <mask> - Parameter appIsEligible: The value fetched from the server identifying if the app <mask> is eligible for the new login experience. <mask> <mask> <mask> Use this method to customize display behavior. <mask> */ </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter view: The tooltip view. </s> add @param view The tooltip view. </s> remove - Parameter view: The tooltip view. </s> add @param view The tooltip view. </s> remove - Parameter anchorView: view to show at, must be already added to window view hierarchy, in order to decide </s> add @param anchorView view to show at, must be already added to window view hierarchy, in order to decide </s> remove - See:FBSDKLoginTooltipView </s> add @see FBSDKLoginTooltipView </s> remove - Parameter loginButton: the sender - Returns: YES if the login should be allowed to proceed, NO otherwise </s> add @param loginButton the sender @return YES if the login should be allowed to proceed, NO otherwise </s> remove - Parameter handler: the callback. </s> add @param handler the callback.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginTooltipView.h
keep keep keep keep replace keep keep keep keep keep
<mask> /** <mask> Tells the delegate the tooltip view will appear, specifically after it's been <mask> added to the super view but before the fade in animation. <mask> <mask> - Parameter view: The tooltip view. <mask> */ <mask> - (void)loginTooltipViewWillAppear:(FBSDKLoginTooltipView *)view; <mask> <mask> /** <mask> Tells the delegate the tooltip view will not appear (i.e., was not </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter view: The tooltip view. </s> add @param view The tooltip view. </s> remove - Parameter view: The tooltip view. - Parameter appIsEligible: The value fetched from the server identifying if the app </s> add @param view The tooltip view. @param appIsEligible The value fetched from the server identifying if the app </s> remove - Parameter anchorView: view to show at, must be already added to window view hierarchy, in order to decide </s> add @param anchorView view to show at, must be already added to window view hierarchy, in order to decide </s> remove - Parameter view: View to be used as superview. </s> add @param view View to be used as superview. </s> remove - See:FBSDKLoginTooltipView </s> add @see FBSDKLoginTooltipView </s> remove - Parameter fromViewController: the view controller to present from. If nil, the topmost view controller will be </s> add @param fromViewController the view controller to present from. If nil, the topmost view controller will be
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginTooltipView.h
keep keep keep keep replace keep keep keep keep keep
<mask> /** <mask> Tells the delegate the tooltip view will not appear (i.e., was not <mask> added to the super view). <mask> <mask> - Parameter view: The tooltip view. <mask> */ <mask> - (void)loginTooltipViewWillNotAppear:(FBSDKLoginTooltipView *)view; <mask> <mask> <mask> @end </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter view: The tooltip view. </s> add @param view The tooltip view. </s> remove - Parameter view: The tooltip view. - Parameter appIsEligible: The value fetched from the server identifying if the app </s> add @param view The tooltip view. @param appIsEligible The value fetched from the server identifying if the app </s> remove - Parameter anchorView: view to show at, must be already added to window view hierarchy, in order to decide </s> add @param anchorView view to show at, must be already added to window view hierarchy, in order to decide </s> remove - See:FBSDKLoginTooltipView </s> add @see FBSDKLoginTooltipView </s> remove - Parameter view: View to be used as superview. </s> add @param view View to be used as superview. </s> remove - Parameter colorStyle: Color style to use for tooltip. </s> add @param colorStyle Color style to use for tooltip.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginTooltipView.h
keep replace keep replace keep keep
<mask> <mask> - Parameter tagline: First part of the label, that will be highlighted with different color. Can be nil. <mask> <mask> - Parameter message: Main message to display. <mask> <mask> - Parameter colorStyle: Color style to use for tooltip. </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter colorStyle: Color style to use for tooltip. </s> add @param colorStyle Color style to use for tooltip. </s> remove - Parameter facebookDomainPart: The domain part to be inserted into facebook.com. </s> add @param facebookDomainPart The domain part to be inserted into facebook.com. </s> remove - Parameter application: The application as passed to [UIApplicationDelegate application:didFinishLaunchingWithOptions:]. </s> add @param application The application as passed to [UIApplicationDelegate application:didFinishLaunchingWithOptions:]. </s> remove - Parameter version: This is a string in the form @"v2.0" which will be used for the version part of an API path </s> add @param version This is a string in the form @"v2.0" which will be used for the version part of an API path </s> remove - Parameter valueToSum: Amount to be aggregated into all events of this eventName, and App Insights will report </s> add @param valueToSum Amount to be aggregated into all events of this eventName, and App Insights will report
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKTooltipView.h
keep keep keep keep replace keep keep keep keep keep
<mask> - Parameter tagline: First part of the label, that will be highlighted with different color. Can be nil. <mask> <mask> - Parameter message: Main message to display. <mask> <mask> - Parameter colorStyle: Color style to use for tooltip. <mask> <mask> <mask> <mask> If you need to show a tooltip for login, consider using the `FBSDKLoginTooltipView` view. <mask> </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter tagline: First part of the label, that will be highlighted with different color. Can be nil. </s> add @param tagline First part of the label, that will be highlighted with different color. Can be nil. </s> remove - Parameter message: Main message to display. </s> add @param message Main message to display. </s> remove - See:FBSDKLoginTooltipView </s> add @see FBSDKLoginTooltipView </s> remove - Parameter anchorView: view to show at, must be already added to window view hierarchy, in order to decide </s> add @param anchorView view to show at, must be already added to window view hierarchy, in order to decide </s> remove - Parameter version: This is a string in the form @"v2.0" which will be used for the version part of an API path </s> add @param version This is a string in the form @"v2.0" which will be used for the version part of an API path </s> remove - Parameter view: The tooltip view. </s> add @param view The tooltip view.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKTooltipView.h
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> If you need to show a tooltip for login, consider using the `FBSDKLoginTooltipView` view. <mask> <mask> <mask> - See:FBSDKLoginTooltipView <mask> */ <mask> - (instancetype)initWithTagline:(NSString *)tagline message:(NSString *)message colorStyle:(FBSDKTooltipColorStyle)colorStyle; <mask> <mask> /** <mask> Show tooltip at the top or at the bottom of given view. </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter anchorView: view to show at, must be already added to window view hierarchy, in order to decide </s> add @param anchorView view to show at, must be already added to window view hierarchy, in order to decide </s> remove - Parameter colorStyle: Color style to use for tooltip. </s> add @param colorStyle Color style to use for tooltip. </s> remove - Parameter view: The tooltip view. </s> add @param view The tooltip view. </s> remove - Parameter view: The tooltip view. </s> add @param view The tooltip view. </s> remove - Parameter view: The tooltip view. - Parameter appIsEligible: The value fetched from the server identifying if the app </s> add @param view The tooltip view. @param appIsEligible The value fetched from the server identifying if the app </s> remove - Parameter clientToken: The Facebook App's "client token", which, for a given appid can be found in the Security </s> add @param clientToken The Facebook App's "client token", which, for a given appid can be found in the Security
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKTooltipView.h
keep keep keep keep replace keep keep keep keep keep
<mask> /** <mask> Show tooltip at the top or at the bottom of given view. <mask> Tooltip will be added to anchorView.window.rootViewController.view <mask> <mask> - Parameter anchorView: view to show at, must be already added to window view hierarchy, in order to decide <mask> where tooltip will be shown. (If there's not enough space at the top of the anchorView in window bounds - <mask> tooltip will be shown at the bottom of it) <mask> <mask> <mask> </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - See:FBSDKLoginTooltipView </s> add @see FBSDKLoginTooltipView </s> remove - Parameter view: The tooltip view. </s> add @param view The tooltip view. </s> remove - Parameter view: The tooltip view. </s> add @param view The tooltip view. </s> remove - Parameter view: View to be used as superview. </s> add @param view View to be used as superview. </s> remove - Parameter view: The tooltip view. - Parameter appIsEligible: The value fetched from the server identifying if the app </s> add @param view The tooltip view. @param appIsEligible The value fetched from the server identifying if the app </s> remove - Parameter arrowPosition: Point in view's cordinates, where arrow will be pointing </s> add @param arrowPosition Point in view's cordinates, where arrow will be pointing
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKTooltipView.h
keep keep keep replace keep replace keep keep
<mask> /** <mask> Adds tooltip to given view, with given position and arrow direction. <mask> <mask> - Parameter view: View to be used as superview. <mask> <mask> - Parameter arrowPosition: Point in view's cordinates, where arrow will be pointing <mask> <mask> - Parameter arrowDirection: whenever arrow should be pointing up (message bubble is below the arrow) or </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter arrowDirection: whenever arrow should be pointing up (message bubble is below the arrow) or </s> add @param arrowDirection whenever arrow should be pointing up (message bubble is below the arrow) or </s> remove - Parameter anchorView: view to show at, must be already added to window view hierarchy, in order to decide </s> add @param anchorView view to show at, must be already added to window view hierarchy, in order to decide </s> remove - Parameter valueToSum: Amount to be aggregated into all events of this eventName, and App Insights will report </s> add @param valueToSum Amount to be aggregated into all events of this eventName, and App Insights will report </s> remove - Parameter currency: Currency, is denoted as, e.g. "USD", "EUR", "GBP". See ISO-4217 for </s> add @param currency Currency, is denoted as, e.g. "USD", "EUR", "GBP". See ISO-4217 for </s> remove - Parameter currency: Currency, is denoted as, e.g. "USD", "EUR", "GBP". See ISO-4217 for </s> add @param currency Currency, is denoted as, e.g. "USD", "EUR", "GBP". See ISO-4217 for
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKTooltipView.h
keep keep keep keep replace keep keep keep keep keep
<mask> - Parameter view: View to be used as superview. <mask> <mask> - Parameter arrowPosition: Point in view's cordinates, where arrow will be pointing <mask> <mask> - Parameter arrowDirection: whenever arrow should be pointing up (message bubble is below the arrow) or <mask> down (message bubble is above the arrow). <mask> */ <mask> - (void)presentInView:(UIView *)view withArrowPosition:(CGPoint)arrowPosition direction:(FBSDKTooltipViewArrowDirection)arrowDirection; <mask> <mask> /** </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Parameter arrowPosition: Point in view's cordinates, where arrow will be pointing </s> add @param arrowPosition Point in view's cordinates, where arrow will be pointing </s> remove - Parameter view: View to be used as superview. </s> add @param view View to be used as superview. </s> remove - Parameter handler: A handler to call back when the round-trip completes or times out. </s> add @param handler A handler to call back when the round-trip completes or times out. </s> remove - Parameter anchorView: view to show at, must be already added to window view hierarchy, in order to decide </s> add @param anchorView view to show at, must be already added to window view hierarchy, in order to decide </s> remove - Parameter request: A request to be included in the round-trip when start is called. </s> add @param request A request to be included in the round-trip when start is called. </s> remove - Parameter fromViewController: the view controller to present from. If nil, the topmost view controller will be </s> add @param fromViewController the view controller to present from. If nil, the topmost view controller will be
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKTooltipView.h
keep keep keep keep replace keep keep keep keep keep
<mask> @protocol FBSDKAppGroupAddDialogDelegate; <mask> <mask> /** <mask> <mask> - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. <mask> */ <mask> __attribute__ ((deprecated)) <mask> @interface FBSDKAppGroupAddDialog : NSObject <mask> <mask> /** </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupAddDialog.h
keep keep keep keep replace keep keep keep keep keep
<mask> @interface FBSDKAppGroupAddDialog : NSObject <mask> <mask> /** <mask> <mask> - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. <mask> */ <mask> + (instancetype)showWithContent:(FBSDKAppGroupContent *)content <mask> delegate:(id<FBSDKAppGroupAddDialogDelegate>)delegate __attribute__ ((deprecated)); <mask> <mask> /** </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupAddDialog.h
keep keep keep keep replace keep keep keep keep keep
<mask> delegate:(id<FBSDKAppGroupAddDialogDelegate>)delegate __attribute__ ((deprecated)); <mask> <mask> /** <mask> <mask> - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. <mask> */ <mask> @property (nonatomic, weak) id<FBSDKAppGroupAddDialogDelegate> delegate __attribute__ ((deprecated)); <mask> <mask> /** <mask> </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupAddDialog.h
keep keep keep keep replace keep keep keep keep keep
<mask> @property (nonatomic, weak) id<FBSDKAppGroupAddDialogDelegate> delegate __attribute__ ((deprecated)); <mask> <mask> /** <mask> <mask> - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. <mask> */ <mask> @property (nonatomic, copy) FBSDKAppGroupContent *content __attribute__ ((deprecated)); <mask> <mask> /** <mask> </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupAddDialog.h
keep keep keep keep replace keep keep keep keep keep
<mask> @property (nonatomic, copy) FBSDKAppGroupContent *content __attribute__ ((deprecated)); <mask> <mask> /** <mask> <mask> - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. <mask> */ <mask> - (BOOL)canShow __attribute__ ((deprecated)); <mask> <mask> /** <mask> </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupAddDialog.h
keep keep keep keep replace keep keep keep keep keep
<mask> - (BOOL)canShow __attribute__ ((deprecated)); <mask> <mask> /** <mask> <mask> - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. <mask> */ <mask> - (BOOL)show __attribute__ ((deprecated)); <mask> <mask> /** <mask> </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupAddDialog.h
keep keep keep keep replace keep keep keep keep keep
<mask> - (BOOL)show __attribute__ ((deprecated)); <mask> <mask> /** <mask> <mask> - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. <mask> */ <mask> - (BOOL)validateWithError:(NSError *__autoreleasing *)errorRef __attribute__ ((deprecated)); <mask> <mask> @end <mask> </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupAddDialog.h
keep keep keep keep replace keep keep keep keep keep
<mask> @end <mask> <mask> /** <mask> <mask> - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. <mask> */ <mask> __attribute__ ((deprecated)) <mask> @protocol FBSDKAppGroupAddDialogDelegate <NSObject> <mask> <mask> /** </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupAddDialog.h
keep keep keep keep replace keep keep keep keep keep
<mask> @protocol FBSDKAppGroupAddDialogDelegate <NSObject> <mask> <mask> /** <mask> <mask> - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. <mask> */ <mask> - (void)appGroupAddDialog:(FBSDKAppGroupAddDialog *)appGroupAddDialog didCompleteWithResults:(NSDictionary *)results __attribute__ ((deprecated)); <mask> <mask> /** <mask> </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> remove - Warning:App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. </s> add @warning App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information.
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupAddDialog.h
keep keep keep keep replace replace replace keep keep keep keep keep
<mask> __attribute__((__optnone__)) void doNotOptimizeAway(T&& /* datum */) {} <mask> <mask> #else <mask> <mask> template <class T> <mask> void doNotOptimizeAway(T&& datum) { <mask> asm volatile("" : "+r" (datum)); <mask> } <mask> <mask> #endif <mask> <mask> } // namespace folly </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> add #include <folly/detail/TryDetail.h> </s> remove inline void fbstring_core<Char>::reserveSmall( </s> add FOLLY_MALLOC_NOINLINE inline void fbstring_core<Char>::reserveSmall( </s> remove inline void fbstring_core<Char>::reserveMedium(const size_t minCapacity) { </s> add FOLLY_MALLOC_NOINLINE inline void fbstring_core<Char>::reserveMedium( const size_t minCapacity) { </s> add namespace glog_internal_namespace_ { bool IsFailureSignalHandlerInstalled() { #ifdef HAVE_SIGACTION struct sigaction sig_action; memset(&sig_action, 0, sizeof(sig_action)); sigemptyset(&sig_action.sa_mask); sigaction(SIGABRT, NULL, &sig_action); if (sig_action.sa_sigaction == &FailureSignalHandler) return true; #endif // HAVE_SIGACTION return false; } } // namespace glog_internal_namespace_ </s> remove inline void fbstring_core<Char>::copyLarge(const fbstring_core& rhs) { </s> add FOLLY_MALLOC_NOINLINE inline void fbstring_core<Char>::copyLarge( const fbstring_core& rhs) { </s> add void unshare(size_t minCapacity = 0);
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/Folly/folly/Benchmark.h
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> /** <mask> * Just like BENCHMARK, but prints the time relative to a <mask> * baseline. The baseline is the most recent BENCHMARK() seen in <mask> * lexical order. Example: <mask> * <mask> * // This is the baseline <mask> * BENCHMARK(insertVectorBegin, n) { <mask> * vector<int> v; <mask> * FOR_EACH_RANGE (i, 0, n) { </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove * Note: dynamic is not DefaultConstructible. Rationale: * * - The intuitive thing to initialize a defaulted dynamic to would * be nullptr. * * - However, the expression dynamic d = {} is required to call the * default constructor by the standard, which is confusing * behavior for dynamic unless the default constructor creates an * empty array. * </s> add </s> remove * Create a new array from an initializer list. * * For example: * * dynamic v = { 1, 2, 3, "foo" }; */ // TODO(ott, 10300209): Remove once all uses have been eradicated. FOLLY_DEPRECATED( "Initializer list syntax is deprecated (#10300209). Use dynamic::array.") /* implicit */ dynamic(std::initializer_list<dynamic> il); FOLLY_DEPRECATED( "Initializer list syntax is deprecated (#10300209). Use dynamic::array.") dynamic& operator=(std::initializer_list<dynamic> il); /* * Conversion constructors from most of the other types. </s> add * Constructors for integral and float types. * Other types are SFINAEd out with NumericTypeHelper. </s> remove template<class T> /* implicit */ dynamic(T t); </s> add template<class T, class NumericType = typename NumericTypeHelper<T>::type> /* implicit */ dynamic(T t); </s> remove #include <folly/dynamic.h> </s> add </s> remove /* * The enable_if junk here is necessary to avoid ambiguous * conversions relating to bool and double when you implicitly * convert an int or long to a dynamic. */ template<class T, class Enable = void> struct ConversionHelper; template<class T> struct ConversionHelper< T, typename std::enable_if< std::is_integral<T>::value && !std::is_same<T,bool>::value >::type > { typedef int64_t type; }; template <> struct ConversionHelper<float> { typedef double type; }; template <class T> struct ConversionHelper< T, typename std::enable_if< (!std::is_integral<T>::value || std::is_same<T, bool>::value) && !std::is_same<T, float>::value && !std::is_same<T, std::nullptr_t>::value>::type> { typedef T type; }; template<class T> struct ConversionHelper< T, typename std::enable_if< std::is_same<T,std::nullptr_t>::value >::type > { typedef void* type; }; </s> add </s> remove /* implicit */ dynamic(std::string const& val); /* implicit */ dynamic(std::string&& val); </s> add /* implicit */ dynamic(std::string val);
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/Folly/folly/Benchmark.h
keep keep keep keep replace keep keep keep keep keep
<mask> std::is_unsigned<T>::value && <mask> sizeof(T) <= sizeof(unsigned int)), <mask> unsigned int>::type <mask> findLastSet(T x) { <mask> return x ? 8 * sizeof(unsigned int) - __builtin_clz(x) : 0; <mask> } <mask> <mask> template <class T> <mask> inline FOLLY_INTRINSIC_CONSTEXPR <mask> typename std::enable_if< </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove return x ? 8 * sizeof(unsigned long) - __builtin_clzl(x) : 0; </s> add return x ? ((8 * sizeof(unsigned long) - 1) ^ __builtin_clzl(x)) + 1 : 0; </s> remove return x ? 8 * sizeof(unsigned long long) - __builtin_clzll(x) : 0; </s> add return x ? ((8 * sizeof(unsigned long long) - 1) ^ __builtin_clzll(x)) + 1 : 0; </s> remove inline constexpr typename std::enable_if< std::is_integral<T>::value && std::is_unsigned<T>::value, bool>::type </s> add inline FOLLY_INTRINSIC_CONSTEXPR typename std:: enable_if<std::is_integral<T>::value && std::is_unsigned<T>::value, T>::type prevPowTwo(T v) { return v ? (T(1) << (findLastSet(v) - 1)) : 0; } template <class T> inline constexpr typename std::enable_if< std::is_integral<T>::value && std::is_unsigned<T>::value, bool>::type </s> remove template <class T> void doNotOptimizeAway(T&& datum) { asm volatile("" : "+r" (datum)); </s> add namespace detail { template <typename T> struct DoNotOptimizeAwayNeedsIndirect { using Decayed = typename std::decay<T>::type; // First two constraints ensure it can be an "r" operand. // std::is_pointer check is because callers seem to expect that // doNotOptimizeAway(&x) is equivalent to doNotOptimizeAway(x). constexpr static bool value = !folly::IsTriviallyCopyable<Decayed>::value || sizeof(Decayed) > sizeof(long) || std::is_pointer<Decayed>::value; }; } // detail namespace template <typename T> auto doNotOptimizeAway(const T& datum) -> typename std::enable_if< !detail::DoNotOptimizeAwayNeedsIndirect<T>::value>::type { asm volatile("" ::"X"(datum)); } template <typename T> auto doNotOptimizeAway(const T& datum) -> typename std::enable_if< detail::DoNotOptimizeAwayNeedsIndirect<T>::value>::type { asm volatile("" ::"m"(datum) : "memory"); } template <typename T> auto makeUnpredictable(T& datum) -> typename std::enable_if< !detail::DoNotOptimizeAwayNeedsIndirect<T>::value>::type { asm volatile("" : "+r"(datum)); } template <typename T> auto makeUnpredictable(T& datum) -> typename std::enable_if< detail::DoNotOptimizeAwayNeedsIndirect<T>::value>::type { asm volatile("" ::"m"(datum) : "memory"); </s> remove /* * The enable_if junk here is necessary to avoid ambiguous * conversions relating to bool and double when you implicitly * convert an int or long to a dynamic. */ template<class T, class Enable = void> struct ConversionHelper; template<class T> struct ConversionHelper< T, typename std::enable_if< std::is_integral<T>::value && !std::is_same<T,bool>::value >::type > { typedef int64_t type; }; template <> struct ConversionHelper<float> { typedef double type; }; template <class T> struct ConversionHelper< T, typename std::enable_if< (!std::is_integral<T>::value || std::is_same<T, bool>::value) && !std::is_same<T, float>::value && !std::is_same<T, std::nullptr_t>::value>::type> { typedef T type; }; template<class T> struct ConversionHelper< T, typename std::enable_if< std::is_same<T,std::nullptr_t>::value >::type > { typedef void* type; }; </s> add </s> remove inline void fbstring_core<Char>::reserveSmall( </s> add FOLLY_MALLOC_NOINLINE inline void fbstring_core<Char>::reserveSmall(
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/Folly/folly/Bits.h
keep keep keep keep replace keep keep keep keep keep
<mask> sizeof(T) > sizeof(unsigned int) && <mask> sizeof(T) <= sizeof(unsigned long)), <mask> unsigned int>::type <mask> findLastSet(T x) { <mask> return x ? 8 * sizeof(unsigned long) - __builtin_clzl(x) : 0; <mask> } <mask> <mask> template <class T> <mask> inline FOLLY_INTRINSIC_CONSTEXPR <mask> typename std::enable_if< </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove return x ? 8 * sizeof(unsigned long long) - __builtin_clzll(x) : 0; </s> add return x ? ((8 * sizeof(unsigned long long) - 1) ^ __builtin_clzll(x)) + 1 : 0; </s> remove return x ? 8 * sizeof(unsigned int) - __builtin_clz(x) : 0; </s> add // If X is a power of two X - Y = ((X - 1) ^ Y) + 1. Doing this transformation // allows GCC to remove its own xor that it adds to implement clz using bsr return x ? ((8 * sizeof(unsigned int) - 1) ^ __builtin_clz(x)) + 1 : 0; </s> remove inline constexpr typename std::enable_if< std::is_integral<T>::value && std::is_unsigned<T>::value, bool>::type </s> add inline FOLLY_INTRINSIC_CONSTEXPR typename std:: enable_if<std::is_integral<T>::value && std::is_unsigned<T>::value, T>::type prevPowTwo(T v) { return v ? (T(1) << (findLastSet(v) - 1)) : 0; } template <class T> inline constexpr typename std::enable_if< std::is_integral<T>::value && std::is_unsigned<T>::value, bool>::type </s> remove /* * The enable_if junk here is necessary to avoid ambiguous * conversions relating to bool and double when you implicitly * convert an int or long to a dynamic. */ template<class T, class Enable = void> struct ConversionHelper; template<class T> struct ConversionHelper< T, typename std::enable_if< std::is_integral<T>::value && !std::is_same<T,bool>::value >::type > { typedef int64_t type; }; template <> struct ConversionHelper<float> { typedef double type; }; template <class T> struct ConversionHelper< T, typename std::enable_if< (!std::is_integral<T>::value || std::is_same<T, bool>::value) && !std::is_same<T, float>::value && !std::is_same<T, std::nullptr_t>::value>::type> { typedef T type; }; template<class T> struct ConversionHelper< T, typename std::enable_if< std::is_same<T,std::nullptr_t>::value >::type > { typedef void* type; }; </s> add </s> remove template <class T> void doNotOptimizeAway(T&& datum) { asm volatile("" : "+r" (datum)); </s> add namespace detail { template <typename T> struct DoNotOptimizeAwayNeedsIndirect { using Decayed = typename std::decay<T>::type; // First two constraints ensure it can be an "r" operand. // std::is_pointer check is because callers seem to expect that // doNotOptimizeAway(&x) is equivalent to doNotOptimizeAway(x). constexpr static bool value = !folly::IsTriviallyCopyable<Decayed>::value || sizeof(Decayed) > sizeof(long) || std::is_pointer<Decayed>::value; }; } // detail namespace template <typename T> auto doNotOptimizeAway(const T& datum) -> typename std::enable_if< !detail::DoNotOptimizeAwayNeedsIndirect<T>::value>::type { asm volatile("" ::"X"(datum)); } template <typename T> auto doNotOptimizeAway(const T& datum) -> typename std::enable_if< detail::DoNotOptimizeAwayNeedsIndirect<T>::value>::type { asm volatile("" ::"m"(datum) : "memory"); } template <typename T> auto makeUnpredictable(T& datum) -> typename std::enable_if< !detail::DoNotOptimizeAwayNeedsIndirect<T>::value>::type { asm volatile("" : "+r"(datum)); } template <typename T> auto makeUnpredictable(T& datum) -> typename std::enable_if< detail::DoNotOptimizeAwayNeedsIndirect<T>::value>::type { asm volatile("" ::"m"(datum) : "memory"); </s> add // Raw pointers don't have an operator->() member function, so the // second overload will be SFINAEd out in that case. Otherwise, the // second is preferred in the partial order for getPointer(_, 0). template <class Iterator> auto getPointer(const Iterator& it, long) -> decltype(std::addressof(*it)) { return std::addressof(*it); } template <class Iterator> auto getPointer(const Iterator& it, int) -> decltype(it.operator->()) { return it.operator->(); }
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/Folly/folly/Bits.h
keep keep keep keep replace keep keep keep keep keep
<mask> sizeof(T) > sizeof(unsigned long) && <mask> sizeof(T) <= sizeof(unsigned long long)), <mask> unsigned int>::type <mask> findLastSet(T x) { <mask> return x ? 8 * sizeof(unsigned long long) - __builtin_clzll(x) : 0; <mask> } <mask> <mask> template <class T> <mask> inline FOLLY_INTRINSIC_CONSTEXPR <mask> typename std::enable_if< </s> [sdk31] Update CocoaPods with RN SDK 31 files Folly was updated, so I went back to the Podspec files for older RN versions and made them use the slightly newer version of Folly used with RN 0.57. </s> remove return x ? 8 * sizeof(unsigned long) - __builtin_clzl(x) : 0; </s> add return x ? ((8 * sizeof(unsigned long) - 1) ^ __builtin_clzl(x)) + 1 : 0; </s> remove return x ? 8 * sizeof(unsigned int) - __builtin_clz(x) : 0; </s> add // If X is a power of two X - Y = ((X - 1) ^ Y) + 1. Doing this transformation // allows GCC to remove its own xor that it adds to implement clz using bsr return x ? ((8 * sizeof(unsigned int) - 1) ^ __builtin_clz(x)) + 1 : 0; </s> remove inline constexpr typename std::enable_if< std::is_integral<T>::value && std::is_unsigned<T>::value, bool>::type </s> add inline FOLLY_INTRINSIC_CONSTEXPR typename std:: enable_if<std::is_integral<T>::value && std::is_unsigned<T>::value, T>::type prevPowTwo(T v) { return v ? (T(1) << (findLastSet(v) - 1)) : 0; } template <class T> inline constexpr typename std::enable_if< std::is_integral<T>::value && std::is_unsigned<T>::value, bool>::type </s> remove /* * The enable_if junk here is necessary to avoid ambiguous * conversions relating to bool and double when you implicitly * convert an int or long to a dynamic. */ template<class T, class Enable = void> struct ConversionHelper; template<class T> struct ConversionHelper< T, typename std::enable_if< std::is_integral<T>::value && !std::is_same<T,bool>::value >::type > { typedef int64_t type; }; template <> struct ConversionHelper<float> { typedef double type; }; template <class T> struct ConversionHelper< T, typename std::enable_if< (!std::is_integral<T>::value || std::is_same<T, bool>::value) && !std::is_same<T, float>::value && !std::is_same<T, std::nullptr_t>::value>::type> { typedef T type; }; template<class T> struct ConversionHelper< T, typename std::enable_if< std::is_same<T,std::nullptr_t>::value >::type > { typedef void* type; }; </s> add </s> remove template <class T> void doNotOptimizeAway(T&& datum) { asm volatile("" : "+r" (datum)); </s> add namespace detail { template <typename T> struct DoNotOptimizeAwayNeedsIndirect { using Decayed = typename std::decay<T>::type; // First two constraints ensure it can be an "r" operand. // std::is_pointer check is because callers seem to expect that // doNotOptimizeAway(&x) is equivalent to doNotOptimizeAway(x). constexpr static bool value = !folly::IsTriviallyCopyable<Decayed>::value || sizeof(Decayed) > sizeof(long) || std::is_pointer<Decayed>::value; }; } // detail namespace template <typename T> auto doNotOptimizeAway(const T& datum) -> typename std::enable_if< !detail::DoNotOptimizeAwayNeedsIndirect<T>::value>::type { asm volatile("" ::"X"(datum)); } template <typename T> auto doNotOptimizeAway(const T& datum) -> typename std::enable_if< detail::DoNotOptimizeAwayNeedsIndirect<T>::value>::type { asm volatile("" ::"m"(datum) : "memory"); } template <typename T> auto makeUnpredictable(T& datum) -> typename std::enable_if< !detail::DoNotOptimizeAwayNeedsIndirect<T>::value>::type { asm volatile("" : "+r"(datum)); } template <typename T> auto makeUnpredictable(T& datum) -> typename std::enable_if< detail::DoNotOptimizeAwayNeedsIndirect<T>::value>::type { asm volatile("" ::"m"(datum) : "memory"); </s> add // Raw pointers don't have an operator->() member function, so the // second overload will be SFINAEd out in that case. Otherwise, the // second is preferred in the partial order for getPointer(_, 0). template <class Iterator> auto getPointer(const Iterator& it, long) -> decltype(std::addressof(*it)) { return std::addressof(*it); } template <class Iterator> auto getPointer(const Iterator& it, int) -> decltype(it.operator->()) { return it.operator->(); }
https://github.com/expo/expo/commit/4ac77874d024d32c5f0121f2f6d5c864eabbb1d7
ios/Pods/Folly/folly/Bits.h