File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,11 @@ NS_ASSUME_NONNULL_BEGIN
1313@interface BranchPluginSupport : NSObject
1414
1515+ (BranchPluginSupport *)instance ;
16+
1617- (NSDictionary <NSString *, NSString *> *)deviceDescription ;
1718
19+ - (BOOL )deferInitForPlugin ;
20+
1821@end
1922
2023NS_ASSUME_NONNULL_END
Original file line number Diff line number Diff line change 1010#import " NSMutableDictionary+Branch.h"
1111#import " BNCDeviceInfo.h"
1212#import " BNCPreferenceHelper.h"
13+ #import " BranchJsonConfig.h"
1314
1415@interface BranchPluginSupport ()
1516
@@ -53,4 +54,12 @@ + (BranchPluginSupport *)instance {
5354 return dictionary;
5455}
5556
57+ - (BOOL )deferInitForPlugin {
58+ BranchJsonConfig *config = BranchJsonConfig.instance ;
59+ if (config.deferInitForPlugin ) {
60+ return YES ;
61+ }
62+ return NO ;
63+ }
64+
5665@end
You can’t perform that action at this time.
0 commit comments