diff --git a/Core/GrowingAPM.m b/Core/GrowingAPM.m index e201b23..c9d262d 100644 --- a/Core/GrowingAPM.m +++ b/Core/GrowingAPM.m @@ -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 } diff --git a/CrashMonitor/GrowingAPMCrashMonitor.xcframework/Info.plist b/CrashMonitor/GrowingAPMCrashMonitor.xcframework/Info.plist index efbb49d..8e0de14 100644 --- a/CrashMonitor/GrowingAPMCrashMonitor.xcframework/Info.plist +++ b/CrashMonitor/GrowingAPMCrashMonitor.xcframework/Info.plist @@ -6,32 +6,32 @@ LibraryIdentifier - ios-arm64_i386_x86_64-simulator + ios-arm64_armv7 LibraryPath GrowingAPMCrashMonitor.framework SupportedArchitectures arm64 - i386 - x86_64 + armv7 SupportedPlatform ios - SupportedPlatformVariant - simulator LibraryIdentifier - ios-arm64_armv7 + ios-arm64_i386_x86_64-simulator LibraryPath GrowingAPMCrashMonitor.framework SupportedArchitectures arm64 - armv7 + i386 + x86_64 SupportedPlatform ios + SupportedPlatformVariant + simulator CFBundlePackageType diff --git a/CrashMonitor/GrowingAPMCrashMonitor.xcframework/ios-arm64_armv7/GrowingAPMCrashMonitor.framework/GrowingAPMCrashMonitor b/CrashMonitor/GrowingAPMCrashMonitor.xcframework/ios-arm64_armv7/GrowingAPMCrashMonitor.framework/GrowingAPMCrashMonitor index 6fc9009..1055d7b 100644 Binary files a/CrashMonitor/GrowingAPMCrashMonitor.xcframework/ios-arm64_armv7/GrowingAPMCrashMonitor.framework/GrowingAPMCrashMonitor and b/CrashMonitor/GrowingAPMCrashMonitor.xcframework/ios-arm64_armv7/GrowingAPMCrashMonitor.framework/GrowingAPMCrashMonitor differ diff --git a/CrashMonitor/GrowingAPMCrashMonitor.xcframework/ios-arm64_i386_x86_64-simulator/GrowingAPMCrashMonitor.framework/GrowingAPMCrashMonitor b/CrashMonitor/GrowingAPMCrashMonitor.xcframework/ios-arm64_i386_x86_64-simulator/GrowingAPMCrashMonitor.framework/GrowingAPMCrashMonitor index 86e763f..270f8dc 100644 Binary files a/CrashMonitor/GrowingAPMCrashMonitor.xcframework/ios-arm64_i386_x86_64-simulator/GrowingAPMCrashMonitor.framework/GrowingAPMCrashMonitor and b/CrashMonitor/GrowingAPMCrashMonitor.xcframework/ios-arm64_i386_x86_64-simulator/GrowingAPMCrashMonitor.framework/GrowingAPMCrashMonitor differ diff --git a/GrowingAPM.podspec b/GrowingAPM.podspec index df9b23d..55efb85 100644 --- a/GrowingAPM.podspec +++ b/GrowingAPM.podspec @@ -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提供移动端性能采集分析功能,包括崩溃分析、启动分析、页面加载分析等。 diff --git a/UIMonitor/GrowingAPMUIMonitor.xcframework/Info.plist b/UIMonitor/GrowingAPMUIMonitor.xcframework/Info.plist index c80a1d7..1a9f876 100644 --- a/UIMonitor/GrowingAPMUIMonitor.xcframework/Info.plist +++ b/UIMonitor/GrowingAPMUIMonitor.xcframework/Info.plist @@ -6,32 +6,32 @@ LibraryIdentifier - ios-arm64_i386_x86_64-simulator + ios-arm64_armv7 LibraryPath GrowingAPMUIMonitor.framework SupportedArchitectures arm64 - i386 - x86_64 + armv7 SupportedPlatform ios - SupportedPlatformVariant - simulator LibraryIdentifier - ios-arm64_armv7 + ios-arm64_i386_x86_64-simulator LibraryPath GrowingAPMUIMonitor.framework SupportedArchitectures arm64 - armv7 + i386 + x86_64 SupportedPlatform ios + SupportedPlatformVariant + simulator CFBundlePackageType diff --git a/UIMonitor/GrowingAPMUIMonitor.xcframework/ios-arm64_armv7/GrowingAPMUIMonitor.framework/GrowingAPMUIMonitor b/UIMonitor/GrowingAPMUIMonitor.xcframework/ios-arm64_armv7/GrowingAPMUIMonitor.framework/GrowingAPMUIMonitor index 78e786b..9a94f24 100644 Binary files a/UIMonitor/GrowingAPMUIMonitor.xcframework/ios-arm64_armv7/GrowingAPMUIMonitor.framework/GrowingAPMUIMonitor and b/UIMonitor/GrowingAPMUIMonitor.xcframework/ios-arm64_armv7/GrowingAPMUIMonitor.framework/GrowingAPMUIMonitor differ diff --git a/UIMonitor/GrowingAPMUIMonitor.xcframework/ios-arm64_armv7/GrowingAPMUIMonitor.framework/Headers/GrowingAPMUIMonitor.h b/UIMonitor/GrowingAPMUIMonitor.xcframework/ios-arm64_armv7/GrowingAPMUIMonitor.framework/Headers/GrowingAPMUIMonitor.h index 9ebacf0..4f4acf0 100644 --- a/UIMonitor/GrowingAPMUIMonitor.xcframework/ios-arm64_armv7/GrowingAPMUIMonitor.framework/Headers/GrowingAPMUIMonitor.h +++ b/UIMonitor/GrowingAPMUIMonitor.xcframework/ios-arm64_armv7/GrowingAPMUIMonitor.framework/Headers/GrowingAPMUIMonitor.h @@ -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; diff --git a/UIMonitor/GrowingAPMUIMonitor.xcframework/ios-arm64_i386_x86_64-simulator/GrowingAPMUIMonitor.framework/GrowingAPMUIMonitor b/UIMonitor/GrowingAPMUIMonitor.xcframework/ios-arm64_i386_x86_64-simulator/GrowingAPMUIMonitor.framework/GrowingAPMUIMonitor index dbcd5eb..ad20130 100644 Binary files a/UIMonitor/GrowingAPMUIMonitor.xcframework/ios-arm64_i386_x86_64-simulator/GrowingAPMUIMonitor.framework/GrowingAPMUIMonitor and b/UIMonitor/GrowingAPMUIMonitor.xcframework/ios-arm64_i386_x86_64-simulator/GrowingAPMUIMonitor.framework/GrowingAPMUIMonitor differ diff --git a/UIMonitor/GrowingAPMUIMonitor.xcframework/ios-arm64_i386_x86_64-simulator/GrowingAPMUIMonitor.framework/Headers/GrowingAPMUIMonitor.h b/UIMonitor/GrowingAPMUIMonitor.xcframework/ios-arm64_i386_x86_64-simulator/GrowingAPMUIMonitor.framework/Headers/GrowingAPMUIMonitor.h index 9ebacf0..4f4acf0 100644 --- a/UIMonitor/GrowingAPMUIMonitor.xcframework/ios-arm64_i386_x86_64-simulator/GrowingAPMUIMonitor.framework/Headers/GrowingAPMUIMonitor.h +++ b/UIMonitor/GrowingAPMUIMonitor.xcframework/ios-arm64_i386_x86_64-simulator/GrowingAPMUIMonitor.framework/Headers/GrowingAPMUIMonitor.h @@ -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;