Skip to content

Commit

Permalink
feat: release 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
YoloMao committed Oct 28, 2022
1 parent e26c647 commit cf3b232
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 20 deletions.
1 change: 0 additions & 1 deletion Core/GrowingAPM.m
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ + (void)setupMonitors:(GrowingAPMMonitors)monitors appDelegateClass:(Class)appDe
if (monitors & GrowingAPMMonitorsUserInterface) {
#ifdef GROWING_APM_UI
[GrowingAppLifecycle setup];
GrowingAPMUIMonitor.mainStartTime = GrowingTimeUtil.currentSystemTimeMillis;
[GrowingAPMUIMonitor setup:appDelegateClass];
#endif
}
Expand Down
14 changes: 7 additions & 7 deletions CrashMonitor/GrowingAPMCrashMonitor.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,32 +6,32 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_i386_x86_64-simulator</string>
<string>ios-arm64_armv7</string>
<key>LibraryPath</key>
<string>GrowingAPMCrashMonitor.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>i386</string>
<string>x86_64</string>
<string>armv7</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_armv7</string>
<string>ios-arm64_i386_x86_64-simulator</string>
<key>LibraryPath</key>
<string>GrowingAPMCrashMonitor.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>armv7</string>
<string>i386</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion GrowingAPM.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'GrowingAPM'
s.version = '0.0.3'
s.version = '0.0.4'
s.summary = 'iOS SDK of GrowingIO.'
s.description = <<-DESC
GrowingAPM提供移动端性能采集分析功能,包括崩溃分析、启动分析、页面加载分析等。
Expand Down
14 changes: 7 additions & 7 deletions UIMonitor/GrowingAPMUIMonitor.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,32 +6,32 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_i386_x86_64-simulator</string>
<string>ios-arm64_armv7</string>
<key>LibraryPath</key>
<string>GrowingAPMUIMonitor.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>i386</string>
<string>x86_64</string>
<string>armv7</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_armv7</string>
<string>ios-arm64_i386_x86_64-simulator</string>
<key>LibraryPath</key>
<string>GrowingAPMUIMonitor.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>armv7</string>
<string>i386</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ typedef void(^GrowingAPMUIMonitorBlock)(NSString *pageName, double loadDuration,

@property (nonatomic, copy) GrowingAPMUIMonitorBlock monitorBlock;

@property (class, nonatomic, assign) double mainStartTime;

+ (instancetype)sharedInstance;
+ (void)setup:(Class)appDelegateClass;
- (void)startMonitor;
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ typedef void(^GrowingAPMUIMonitorBlock)(NSString *pageName, double loadDuration,

@property (nonatomic, copy) GrowingAPMUIMonitorBlock monitorBlock;

@property (class, nonatomic, assign) double mainStartTime;

+ (instancetype)sharedInstance;
+ (void)setup:(Class)appDelegateClass;
- (void)startMonitor;
Expand Down

0 comments on commit cf3b232

Please sign in to comment.