Skip to content

Commit d861345

Browse files
committed
upgrade ios bugly to 2.4.8
1 parent bccecd8 commit d861345

File tree

5 files changed

+26
-12
lines changed

5 files changed

+26
-12
lines changed

ios/Bugly.framework/Bugly

-678 KB
Binary file not shown.

ios/Bugly.framework/Headers/Bugly.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Bugly.h
33
// Bugly
44
//
5-
// Version: 2.4(7)
5+
// Version: 2.4(8)
66
//
77
// Copyright (c) 2016年 Bugly. All rights reserved.
88
//
@@ -135,6 +135,8 @@ BLY_START_NONNULL
135135
*/
136136
+ (BOOL)isAppCrashedOnStartUpExceedTheLimit;
137137

138+
+ (void)setComponentIdentifier:(NSString *)componentId version:(NSString *)version;
139+
138140
BLY_END_NONNULL
139141

140142
@end

ios/Bugly.framework/Headers/BuglyLog.h

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// BuglyLog.h
33
//
4-
// Copyright © 2016年 tencent.com. All rights reserved.
4+
// Copyright © 2017 tencent.com. All rights reserved.
55
//
66

77
#import <Foundation/Foundation.h>
@@ -17,9 +17,9 @@ typedef NS_ENUM(NSUInteger, BuglyLogLevel) {
1717
};
1818
#pragma mark -
1919

20-
FOUNDATION_EXPORT void BLYLog(BuglyLogLevel level, NSString *format, ...);
20+
OBJC_EXTERN void BLYLog(BuglyLogLevel level, NSString *format, ...) NS_FORMAT_FUNCTION(2, 3);
2121

22-
FOUNDATION_EXPORT void BLYLogv(BuglyLogLevel level, NSString *format, va_list args);
22+
OBJC_EXTERN void BLYLogv(BuglyLogLevel level, NSString *format, va_list args) NS_FORMAT_FUNCTION(2, 0);
2323

2424
#pragma mark -
2525
#define BUGLY_LOG_MACRO(_level, fmt, ...) [BuglyLog level:_level tag:nil log:fmt, ##__VA_ARGS__]
@@ -40,14 +40,14 @@ FOUNDATION_EXPORT void BLYLogv(BuglyLogLevel level, NSString *format, va_list ar
4040
*
4141
* @param printConsole 是否打印到控制台,默认NO
4242
*/
43-
+ (void)initLogger:(BuglyLogLevel) level consolePrint:(BOOL) printConsole;
43+
+ (void)initLogger:(BuglyLogLevel) level consolePrint:(BOOL)printConsole;
4444

4545
/**
4646
* @brief 打印BLYLogLevelInfo日志
4747
*
4848
* @param format 日志内容 总日志大小限制为:字符串长度30k,条数200
4949
*/
50-
+ (void)log:(NSString *)format, ...;
50+
+ (void)log:(NSString *)format, ... NS_FORMAT_FUNCTION(1, 2);
5151

5252
/**
5353
* @brief 打印日志
@@ -63,7 +63,7 @@ FOUNDATION_EXPORT void BLYLogv(BuglyLogLevel level, NSString *format, va_list ar
6363
* @param level 日志级别
6464
* @param format 日志内容 总日志大小限制为:字符串长度30k,条数200
6565
*/
66-
+ (void)level:(BuglyLogLevel) level log:(NSString *)format, ...;
66+
+ (void)level:(BuglyLogLevel) level log:(NSString *)format, ... NS_FORMAT_FUNCTION(2, 3);
6767

6868
/**
6969
* @brief 打印日志
@@ -72,6 +72,6 @@ FOUNDATION_EXPORT void BLYLogv(BuglyLogLevel level, NSString *format, va_list ar
7272
* @param tag 日志模块分类
7373
* @param format 日志内容 总日志大小限制为:字符串长度30k,条数200
7474
*/
75-
+ (void)level:(BuglyLogLevel) level tag:(NSString *) tag log:(NSString *)format, ...;
75+
+ (void)level:(BuglyLogLevel) level tag:(NSString *) tag log:(NSString *)format, ... NS_FORMAT_FUNCTION(3, 4);
7676

7777
@end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
framework module Bugly {
2+
umbrella header "Bugly.h"
3+
4+
export *
5+
module * { export * }
6+
7+
link framework "Foundation"
8+
link framework "Security"
9+
link framework "SystemConfiguration"
10+
link "c++"
11+
link "z"
12+
}

ios/reading.xcodeproj/project.pbxproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
176D7AD01C61D31C004C465D /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 176D7ACF1C61D31C004C465D /* libz.tbd */; };
2626
179261C51E1BAC370033E8C9 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 179261C21E1BAC230033E8C9 /* libRCTAnimation.a */; };
2727
179B10A91D210D7000405A2C /* libCodePush.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 179B10A81D210D1F00405A2C /* libCodePush.a */; };
28+
17A938BF1EBC4C2300ABCCD2 /* Bugly.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 17A938BE1EBC4C2300ABCCD2 /* Bugly.framework */; };
2829
17B5769B1C84466D002717C9 /* libRCTWeChat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 176D7AC51C61D2DB004C465D /* libRCTWeChat.a */; };
2930
17EC86EF1D6EE93F006878BB /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 17EC86EE1D6EE93F006878BB /* Ionicons.ttf */; };
3031
17EC86F61D6EE9AB006878BB /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 17EC86F51D6EE979006878BB /* libRNVectorIcons.a */; };
3132
7B04B1FBAEE24C5BB7332034 /* libRNDeviceInfo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 422C8C4F68F74EB2AABBA44D /* libRNDeviceInfo.a */; };
3233
832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
3334
A85175D71D54FD2000AEF15A /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A85175D61D54FD2000AEF15A /* Security.framework */; };
3435
A892EC8E1E7D7FB400D98A95 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
35-
A892ECA61E7D863200D98A95 /* Bugly.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A892ECA51E7D863200D98A95 /* Bugly.framework */; };
3636
/* End PBXBuildFile section */
3737

3838
/* Begin PBXContainerItemProxy section */
@@ -264,14 +264,14 @@
264264
176D7ACF1C61D31C004C465D /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
265265
179261BC1E1BAC230033E8C9 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = "<group>"; };
266266
179B10A31D210D1F00405A2C /* CodePush.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = CodePush.xcodeproj; path = "../node_modules/react-native-code-push/ios/CodePush.xcodeproj"; sourceTree = "<group>"; };
267+
17A938BE1EBC4C2300ABCCD2 /* Bugly.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Bugly.framework; sourceTree = "<group>"; };
267268
17EC86EE1D6EE93F006878BB /* Ionicons.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Ionicons.ttf; sourceTree = "<group>"; };
268269
17EC86F01D6EE979006878BB /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RNVectorIcons.xcodeproj; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = "<group>"; };
269270
422C8C4F68F74EB2AABBA44D /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNDeviceInfo.a; sourceTree = "<group>"; };
270271
78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = "<group>"; };
271272
832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = "<group>"; };
272273
928EEFD9BB9A429897093E1F /* RNDeviceInfo.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNDeviceInfo.xcodeproj; path = "../node_modules/react-native-device-info/RNDeviceInfo.xcodeproj"; sourceTree = "<group>"; };
273274
A85175D61D54FD2000AEF15A /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
274-
A892ECA51E7D863200D98A95 /* Bugly.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Bugly.framework; sourceTree = "<group>"; };
275275
F0B2CC04DB544443BD6D4763 /* RCTWeChat.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RCTWeChat.xcodeproj; path = "../node_modules/react-native-wechat/ios/RCTWeChat.xcodeproj"; sourceTree = "<group>"; };
276276
/* End PBXFileReference section */
277277

@@ -296,7 +296,7 @@
296296
00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */,
297297
133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */,
298298
00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */,
299-
A892ECA61E7D863200D98A95 /* Bugly.framework in Frameworks */,
299+
17A938BF1EBC4C2300ABCCD2 /* Bugly.framework in Frameworks */,
300300
139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */,
301301
832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */,
302302
00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */,
@@ -499,7 +499,7 @@
499499
13B07FAE1A68108700A75B9A /* reading */,
500500
832341AE1AAA6A7D00B99B32 /* Libraries */,
501501
83CBBA001A601CBA00E9B192 /* Products */,
502-
A892ECA51E7D863200D98A95 /* Bugly.framework */,
502+
17A938BE1EBC4C2300ABCCD2 /* Bugly.framework */,
503503
);
504504
indentWidth = 2;
505505
sourceTree = "<group>";

0 commit comments

Comments
 (0)