Summary: This diff fixes the warnings raised from FlipperKit. Also this diff updates the deployement target of FlipperKit to iOS 10. Even wilde assumes the min deployment OS version to be iOS 10. In layout plugin we use [UIAccessibiltyTraiTabBar](https://developer.apple.com/documentation/uikit/uiaccessibility/uiaccessibilitytraits/1648592-tabbar), which assumes iOS 10 and above. Partially fixes https://github.com/facebook/flipper/issues/803 Still there are some warnings which are coming from the dependencies outside of Flipper. Reviewed By: passy Differential Revision: D19941558 fbshipit-source-id: 31809fedb9aa297bc318b5af72e29e8444f0142f
23 lines
805 B
Objective-C
23 lines
805 B
Objective-C
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface SKRequestInfo : NSObject
|
|
@property(assign, readwrite) int64_t identifier;
|
|
@property(assign, readwrite) uint64_t timestamp;
|
|
@property(strong, nonatomic) NSURLRequest* _Nullable request;
|
|
@property(strong, nonatomic) NSString* _Nullable body;
|
|
|
|
- (instancetype _Nonnull)initWithIdentifier:(int64_t)identifier
|
|
timestamp:(uint64_t)timestamp
|
|
request:(NSURLRequest* _Nullable)request
|
|
data:(NSData* _Nullable)data;
|
|
- (void)setBodyFromData:(NSData* _Nullable)data;
|
|
|
|
@end
|