├── .clang-format ├── .github ├── ISSUE_TEMPLATE │ ├── 1-bug-report.yaml │ ├── 2-feature-request.yaml │ └── 3-docs-bug.yaml └── workflows │ ├── build_xcframework_manual.yml │ ├── ci.yml │ ├── cocoapods.yml │ ├── cocoapods_beta.yml │ ├── cocoapods_beta_manual.yml │ ├── code_format.yml │ ├── draft_release_with_tag.yml │ ├── draft_release_without_tag.yml │ └── spm.yml ├── .gitignore ├── .spi.yml ├── .swiftformat ├── CHANGELOG.md ├── Example ├── Example-SwiftUI │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── ContentView.swift │ ├── CustomAppDelegate.swift │ ├── Example_SwiftUIApp.swift │ ├── Info.plist │ └── Preview Content │ │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Example-macOS │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Example_macOS.entitlements │ └── ViewController.swift ├── Example-tvOS │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - App Store.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Top Shelf Image Wide.imageset │ │ │ │ └── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── ViewController.swift ├── Example-visionOS │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.solidimagestack │ │ │ ├── Back.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ └── Contents.json │ ├── ContentView.swift │ ├── Example_visionOSApp.swift │ ├── Info.plist │ └── Preview Content │ │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Example-watchOS Watch App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── ContentView.swift │ ├── Example_watchOSApp.swift │ └── Preview Content │ │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── Example.xcscheme │ │ └── GrowingAnalyticsTests.xcscheme ├── Example │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-1024.png │ │ │ ├── icon-20-ipad.png │ │ │ ├── icon-20@2x-ipad.png │ │ │ ├── icon-20@2x.png │ │ │ ├── icon-20@3x.png │ │ │ ├── icon-29.png │ │ │ ├── icon-29@2x-1.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x-1.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ └── icon-83.5@2x.png │ │ ├── Common │ │ │ ├── Contents.json │ │ │ └── icon_back_white.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_back_white@2x.png │ │ │ │ └── icon_back_white@3x.png │ │ ├── Contents.json │ │ ├── TabBar │ │ │ ├── Contents.json │ │ │ ├── agree.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── agree.png │ │ │ ├── merge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── merge.png │ │ │ └── uipage.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── uipage.png │ │ └── UICatalogTests │ │ │ ├── Contents.json │ │ │ ├── bookmark_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── bookmark_icon_1x.png │ │ │ └── bookmark_icon_2x.png │ │ │ ├── bookmark_icon_highlighted.imageset │ │ │ ├── Contents.json │ │ │ ├── bookmark_icon_highlighted_1x.png │ │ │ └── bookmark_icon_highlighted_2x.png │ │ │ ├── browser_scan.imageset │ │ │ ├── Contents.json │ │ │ ├── browser_scan@2x.png │ │ │ └── browser_scan@3x.png │ │ │ ├── browser_search.imageset │ │ │ ├── Contents.json │ │ │ ├── browser_search@2x.png │ │ │ └── browser_search@3x.png │ │ │ ├── cycle_01.imageset │ │ │ ├── Contents.json │ │ │ └── cycle_01.jpg │ │ │ ├── cycle_02.imageset │ │ │ ├── Contents.json │ │ │ └── cycle_02.jpg │ │ │ ├── cycle_03.imageset │ │ │ ├── Contents.json │ │ │ └── cycle_03.jpg │ │ │ ├── cycle_04.imageset │ │ │ ├── Contents.json │ │ │ └── cycle_04.jpg │ │ │ ├── cycle_05.imageset │ │ │ ├── Contents.json │ │ │ └── cycle_05.jpg │ │ │ ├── cycle_06.imageset │ │ │ ├── Contents.json │ │ │ └── cycle_06.jpg │ │ │ ├── cycle_07.imageset │ │ │ ├── Contents.json │ │ │ └── cycle_07.jpg │ │ │ ├── cycle_08.imageset │ │ │ ├── Contents.json │ │ │ └── cycle_08.jpg │ │ │ ├── fire.imageset │ │ │ ├── Contents.json │ │ │ └── fire.png │ │ │ ├── food1.imageset │ │ │ ├── Contents.json │ │ │ └── food1.jpg │ │ │ ├── food2.imageset │ │ │ ├── Contents.json │ │ │ └── food3.jpg │ │ │ ├── food3.imageset │ │ │ ├── Contents.json │ │ │ └── food4.jpg │ │ │ ├── food4.imageset │ │ │ ├── Contents.json │ │ │ └── food5.jpg │ │ │ ├── food5.imageset │ │ │ ├── Contents.json │ │ │ └── food6.jpg │ │ │ ├── food6.imageset │ │ │ ├── Contents.json │ │ │ └── food7.jpg │ │ │ ├── food7.imageset │ │ │ ├── Contents.json │ │ │ └── food8.jpg │ │ │ ├── food8.imageset │ │ │ ├── Contents.json │ │ │ └── food9.jpg │ │ │ ├── food9.imageset │ │ │ ├── Contents.json │ │ │ └── food2.jpg │ │ │ ├── growing_close_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── x_icon_1x.png │ │ │ └── x_icon_2x.png │ │ │ ├── scanqr.imageset │ │ │ ├── Contents.json │ │ │ └── scanqr.png │ │ │ ├── search_bar_background.imageset │ │ │ ├── Contents.json │ │ │ ├── search_bar_bg_1x.png │ │ │ └── search_bar_bg_2x.png │ │ │ ├── text_field_background.imageset │ │ │ ├── Contents.json │ │ │ ├── text_field_background_1x.png │ │ │ └── text_field_background_2x.png │ │ │ └── text_field_purple_right_view.imageset │ │ │ ├── Contents.json │ │ │ ├── text_field_purple_right_view_1x.png │ │ │ └── text_field_purple_right_view_2x.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Example-Bridging-Header.h │ ├── Example.entitlements │ ├── GrowingIO-Info.plist │ ├── GrowingIO-Prefix.pch │ ├── MeasurementProtocol │ │ ├── AttributesEvent │ │ │ ├── GIOAttributesTrackViewController.h │ │ │ └── GIOAttributesTrackViewController.m │ │ ├── ClickEvent │ │ │ ├── GIOClickEventViewController.h │ │ │ └── GIOClickEventViewController.m │ │ ├── CustomEvent │ │ │ ├── GIOCustomEventViewController.h │ │ │ └── GIOCustomEventViewController.m │ │ ├── GIOMeasurementProtocolTableViewController.h │ │ ├── GIOMeasurementProtocolTableViewController.m │ │ ├── MeasurementProtocolTableViewController.h │ │ ├── PageEvent │ │ │ ├── GIOContainerViewController.h │ │ │ ├── GIOContainerViewController.m │ │ │ ├── GIOFirstViewController.h │ │ │ ├── GIOFirstViewController.m │ │ │ ├── GIOPageEventViewController.h │ │ │ ├── GIOPageEventViewController.m │ │ │ ├── GIOSecondViewController.h │ │ │ ├── GIOSecondViewController.m │ │ │ ├── GrowingAutotrackPageViewController.h │ │ │ └── GrowingAutotrackPageViewController.m │ │ ├── TrackTimer │ │ │ ├── GIOTrackTimerEventViewController.h │ │ │ ├── GIOTrackTimerEventViewController.m │ │ │ └── View │ │ │ │ ├── GIOTrackTimerTableViewCell.h │ │ │ │ └── GIOTrackTimerTableViewCell.m │ │ ├── UserId │ │ │ ├── GIOUserIdViewController.h │ │ │ └── GIOUserIdViewController.m │ │ ├── View │ │ │ ├── GIOKeyValueCell.h │ │ │ ├── GIOKeyValueCell.m │ │ │ └── GIOKeyValueCell.xib │ │ └── ViewChangeEvent │ │ │ ├── GIOInputChangeEventViewController.h │ │ │ └── GIOInputChangeEventViewController.m │ ├── Others │ │ ├── Crasher.h │ │ ├── Crasher.mm │ │ ├── GIOCrashMonitorTableViewController.h │ │ ├── GIOCrashMonitorTableViewController.mm │ │ ├── GIOSwiftUIContentViewController.h │ │ ├── GIOSwiftUIContentViewController.m │ │ └── SwiftUIView.swift │ ├── SceneDelegate.h │ ├── SceneDelegate.m │ ├── Storyboard │ │ ├── MeasurementProtocol.storyboard │ │ ├── Others.storyboard │ │ └── UICatalogTests.storyboard │ ├── UICategoryTests │ │ ├── ActionSheets │ │ │ ├── GIOActionSheetViewController.h │ │ │ └── GIOActionSheetViewController.m │ │ ├── AttributeLabel │ │ │ ├── GIOLabelAttributeViewController.h │ │ │ └── GIOLabelAttributeViewController.m │ │ ├── Banner&TableView │ │ │ ├── GIOBannerAndTableViewController.h │ │ │ ├── GIOBannerAndTableViewController.m │ │ │ └── View │ │ │ │ ├── GIOFoodTableViewCell.h │ │ │ │ ├── GIOFoodTableViewCell.m │ │ │ │ ├── GIOFoodTableViewCell.xib │ │ │ │ ├── GIOListTableViewCell.h │ │ │ │ ├── GIOListTableViewCell.m │ │ │ │ └── GIOListTableViewCell.xib │ │ ├── Button&AlertView │ │ │ ├── GIOButtonViewController.h │ │ │ └── GIOButtonViewController.m │ │ ├── CollectionView │ │ │ ├── GIOCollectionViewController.h │ │ │ ├── GIOCollectionViewController.m │ │ │ └── View │ │ │ │ ├── GIOCollectionViewCell.h │ │ │ │ ├── GIOCollectionViewCell.m │ │ │ │ └── GIOCollectionViewCell.xib │ │ ├── GIOUICategoryViewController.h │ │ ├── GIOUICategoryViewController.m │ │ ├── H5Browser │ │ │ ├── GIODefaultWebViewController.h │ │ │ ├── GIODefaultWebViewController.m │ │ │ ├── GIOH5BrowserViewController.h │ │ │ └── GIOH5BrowserViewController.m │ │ ├── Hybrid │ │ │ ├── GIOHybridViewController.h │ │ │ ├── GIOHybridViewController.m │ │ │ ├── gio_hybrideventtest.html │ │ │ └── testweb copy.html │ │ ├── IgnoreViewClass │ │ │ ├── GrowingIgnoreViewClsViewController.h │ │ │ ├── GrowingIgnoreViewClsViewController.m │ │ │ ├── GrowingIgnoreViewViewController.h │ │ │ ├── GrowingIgnoreViewViewController.m │ │ │ └── View │ │ │ │ ├── GrowingIgnoreButton1.h │ │ │ │ ├── GrowingIgnoreButton1.m │ │ │ │ ├── GrowingIgnoreButton2.h │ │ │ │ ├── GrowingIgnoreButton2.m │ │ │ │ ├── GrowingIgnoreButton3.h │ │ │ │ ├── GrowingIgnoreButton3.m │ │ │ │ ├── GrowingNotIgnoreButton4.h │ │ │ │ └── GrowingNotIgnoreButton4.m │ │ ├── PageStructure │ │ │ ├── GIOBaseViewController.h │ │ │ ├── GIOBaseViewController.m │ │ │ ├── GIOChildsAddViewController.h │ │ │ ├── GIOChildsAddViewController.m │ │ │ ├── GIOMultiViewController.h │ │ │ ├── GIOMultiViewController.m │ │ │ ├── GIOPageStructure.storyboard │ │ │ ├── GIOPageStructureViewController.h │ │ │ ├── GIOPageStructureViewController.m │ │ │ ├── GIOPagingViewController.h │ │ │ ├── GIOPagingViewController.m │ │ │ ├── GIOPresentViewController.h │ │ │ └── GIOPresentViewController.m │ │ ├── SimpleUIElements │ │ │ ├── GIOSimpleUIElemtsViewController.h │ │ │ └── GIOSimpleUIElemtsViewController.m │ │ └── TextFields │ │ │ ├── GIOTextFieldViewController.h │ │ │ └── GIOTextFieldViewController.m │ ├── Util │ │ ├── GIOConstants.h │ │ ├── GIOConstants.m │ │ ├── GIODataProcessOperation.h │ │ ├── GIODataProcessOperation.m │ │ ├── GIOScanViewController.h │ │ ├── GIOScanViewController.m │ │ ├── GIOWebViewWarmuper.h │ │ ├── GIOWebViewWarmuper.m │ │ ├── UIColor+Hex.h │ │ └── UIColor+Hex.m │ └── main.m ├── ExampleiOS13 │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-1024.png │ │ │ ├── icon-20-ipad.png │ │ │ ├── icon-20@2x-ipad.png │ │ │ ├── icon-20@2x.png │ │ │ ├── icon-20@3x.png │ │ │ ├── icon-29.png │ │ │ ├── icon-29@2x-1.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x-1.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ └── icon-83.5@2x.png │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── ExampleiOS13.entitlements │ ├── Info.plist │ ├── SceneDelegate.h │ ├── SceneDelegate.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── GrowingAnalytics.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDETemplateMacros.plist │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── GrowingAnalyticsTests │ ├── A0GrowingAnalyticsTest.m │ ├── AutotrackerCoreTests │ │ ├── Autotrack │ │ │ ├── NSNotificationCenterAutotrackTest.m │ │ │ ├── UICollectionViewAutotrackTest.m │ │ │ ├── UISegmentedControlAutotrackTest.m │ │ │ └── UITableViewAutotrackTest.m │ │ └── GrowingNodeTests │ │ │ └── NodeTest.m │ ├── GrowingAnalyticsStartTests │ │ ├── GrowingAnalyticsStartTests.m │ │ └── GrowingAnalyticsStartTests2.m │ ├── GrowingAnalyticsTests.xctestplan │ ├── GrowingAnalyticsUITests │ │ └── DeepLinkTests │ │ │ ├── DeepLinkTest.m │ │ │ ├── DeepLinkiOS13UISceneTest.m │ │ │ └── Helper │ │ │ ├── DeepLinkTestHelper.h │ │ │ ├── DeepLinkTestHelper.m │ │ │ ├── GrowingDeepLinkHandler+XCTest.h │ │ │ └── GrowingDeepLinkHandler+XCTest.m │ ├── Helper │ │ ├── InvocationHelper.h │ │ ├── InvocationHelper.m │ │ ├── ManualTrackHelper.h │ │ ├── ManualTrackHelper.m │ │ ├── MockEventQueue.h │ │ └── MockEventQueue.m │ ├── HostApplicationTests │ │ ├── AutotrackerTests │ │ │ ├── Autotrack │ │ │ │ ├── UIApplicationAutotrackTest.m │ │ │ │ └── UITapGestureRecognizerAutotrackTest.m │ │ │ └── Event │ │ │ │ ├── A1ViewClickEventsTest.m │ │ │ │ ├── A2ViewChangeEventsTest.m │ │ │ │ └── A3PageEventsTest.m │ │ ├── HybridTests │ │ │ └── HybridTest_HostApp.m │ │ └── OtherTests │ │ │ └── GrowingKeyChainTest.m │ ├── ModulesTests │ │ ├── ABTestingTests │ │ │ └── ABTestingTests.m │ │ ├── AdvertisingTests │ │ │ └── AdvertisingTest.m │ │ ├── Helper │ │ │ ├── WebSocketTestHelper.h │ │ │ └── WebSocketTestHelper.m │ │ ├── HybridTests │ │ │ ├── HybridEventTest.m │ │ │ └── HybridTest.m │ │ ├── MobileDebuggerTests │ │ │ └── MobileDebuggerTest.m │ │ ├── ProtobufTests │ │ │ ├── ProtobufDatabaseTest.m │ │ │ ├── ProtobufEventsTest.m │ │ │ ├── ProtobufPersistenceTest.m │ │ │ └── ProtobufRequestHeaderTest.m │ │ └── WebCircleTests │ │ │ └── WebCircleTest.m │ ├── ServicesTests │ │ ├── CompressionTests │ │ │ └── CompressionTest.m │ │ ├── DatabaseTests │ │ │ ├── JSONDatabaseTest.m │ │ │ └── JSONPersistenceTest.m │ │ ├── EncryptionTests │ │ │ └── EncryptionTest.m │ │ └── ScreenshotTests │ │ │ └── ScreenshotTest.m │ └── TrackerCoreTests │ │ ├── CoreTests │ │ ├── GrowingAnnotationTest.m │ │ ├── GrowingModuleTest.m │ │ └── GrowingServiceTest.m │ │ ├── DatabaseTests │ │ └── DatabaseTest.m │ │ ├── DeepLinkTests │ │ └── DeepLinkTest.m │ │ ├── EventTests │ │ ├── DataTrafficTest.m │ │ └── EventTest.m │ │ ├── FileStorageTests │ │ └── FileStorageTest.m │ │ ├── GrowingWindowTest.m │ │ ├── HelpersTests │ │ ├── GrowingFoundationHelpersTest.m │ │ └── GrowingUIKitHelpersTest.m │ │ ├── HookTests │ │ └── GrowingULAppLifeCycleTest.m │ │ ├── ManagerTests │ │ └── GrowingSessionTest.m │ │ ├── MenuTests │ │ ├── GrowingAlertTest.m │ │ └── GrowingStatusBarTest.m │ │ ├── SwizzleTests │ │ └── GrowingSwizzleTest.m │ │ ├── ThreadTests │ │ └── GrowingDispatchManagerTest.m │ │ └── UtilsTests │ │ ├── DeviceInfoTest.m │ │ └── DynamicProxyTest.m ├── Package.swift ├── Podfile ├── Podfile.lock └── ShareExtension │ ├── Base.lproj │ └── MainInterface.storyboard │ ├── Info.plist │ ├── ShareExtension.entitlements │ ├── ShareViewController.h │ └── ShareViewController.m ├── Gemfile ├── GrowingAnalytics.podspec ├── GrowingAutotracker ├── GrowingAutotracker.h └── GrowingAutotracker.m ├── GrowingAutotrackerCore ├── Autotrack │ ├── GrowingPropertyDefine.h │ ├── UIAlertController+GrowingAutotracker.h │ ├── UIAlertController+GrowingAutotracker.m │ ├── UIApplication+GrowingAutotracker.h │ ├── UIApplication+GrowingAutotracker.m │ ├── UICollectionView+GrowingAutotracker.h │ ├── UICollectionView+GrowingAutotracker.m │ ├── UISegmentedControl+GrowingAutotracker.h │ ├── UISegmentedControl+GrowingAutotracker.m │ ├── UITableView+GrowingAutotracker.h │ ├── UITableView+GrowingAutotracker.m │ ├── UITapGestureRecognizer+GrowingAutotracker.h │ ├── UITapGestureRecognizer+GrowingAutotracker.m │ ├── UIViewController+GrowingAutotracker.h │ └── UIViewController+GrowingAutotracker.m ├── GrowingAutotrackConfiguration+Private.h ├── GrowingAutotrackConfiguration.m ├── GrowingNode │ ├── Category │ │ ├── UIAlertController+GrowingNode.h │ │ ├── UIAlertController+GrowingNode.m │ │ ├── UICollectionView+GrowingNode.h │ │ ├── UICollectionView+GrowingNode.m │ │ ├── UIControl+GrowingNode.h │ │ ├── UIControl+GrowingNode.m │ │ ├── UIImageView+GrowingNode.h │ │ ├── UIImageView+GrowingNode.m │ │ ├── UILabel+GrowingNode.h │ │ ├── UILabel+GrowingNode.m │ │ ├── UINavigationController+GrowingNode.h │ │ ├── UINavigationController+GrowingNode.m │ │ ├── UISegmentedControl+GrowingNode.h │ │ ├── UISegmentedControl+GrowingNode.m │ │ ├── UISlider+GrowingNode.h │ │ ├── UISlider+GrowingNode.m │ │ ├── UISwitch+GrowingNode.h │ │ ├── UISwitch+GrowingNode.m │ │ ├── UITabBarController+GrowingNode.h │ │ ├── UITabBarController+GrowingNode.m │ │ ├── UITableView+GrowingNode.h │ │ ├── UITableView+GrowingNode.m │ │ ├── UIView+GrowingNode.h │ │ ├── UIView+GrowingNode.m │ │ ├── UIViewController+GrowingNode.h │ │ ├── UIViewController+GrowingNode.m │ │ ├── UIWindow+GrowingNode.h │ │ └── UIWindow+GrowingNode.m │ ├── GrowingNodeHelper.h │ ├── GrowingNodeHelper.m │ ├── GrowingViewChangeProvider.h │ ├── GrowingViewChangeProvider.m │ ├── GrowingViewClickProvider.h │ ├── GrowingViewClickProvider.m │ ├── GrowingViewNode.h │ └── GrowingViewNode.m ├── GrowingRealAutotracker.h ├── GrowingRealAutotracker.m ├── Page │ ├── GrowingPage.h │ ├── GrowingPage.m │ ├── GrowingPageManager.h │ └── GrowingPageManager.m └── Public │ └── GrowingAutotrackConfiguration.h ├── GrowingTracker ├── GrowingTracker.h └── GrowingTracker.m ├── GrowingTrackerCore ├── Core │ ├── GrowingAnnotationCore.m │ ├── GrowingContext.h │ ├── GrowingContext.m │ ├── GrowingModuleManager.m │ └── GrowingServiceManager.m ├── Database │ ├── GrowingEventDatabase.h │ └── GrowingEventDatabase.m ├── DeepLink │ ├── GrowingAppDelegateAutotracker.h │ ├── GrowingAppDelegateAutotracker.m │ ├── GrowingDeepLinkHandler+Private.h │ ├── GrowingDeepLinkHandler.m │ ├── GrowingSceneDelegateAutotracker.h │ └── GrowingSceneDelegateAutotracker.m ├── Event │ ├── Autotrack │ │ ├── GrowingAutotrackEventType.h │ │ ├── GrowingAutotrackEventType.m │ │ ├── GrowingPageEvent.h │ │ ├── GrowingPageEvent.m │ │ ├── GrowingViewElementEvent.h │ │ └── GrowingViewElementEvent.m │ ├── Base │ │ ├── GrowingAttributesBuilder.m │ │ └── GrowingBaseEvent.m │ ├── GrowingAppCloseEvent.h │ ├── GrowingAppCloseEvent.m │ ├── GrowingCustomEvent.h │ ├── GrowingCustomEvent.m │ ├── GrowingDataTraffic.h │ ├── GrowingDataTraffic.m │ ├── GrowingEventChannel.h │ ├── GrowingEventChannel.m │ ├── GrowingEventFilter.m │ ├── GrowingEventGenerator.h │ ├── GrowingEventGenerator.m │ ├── GrowingEventManager.h │ ├── GrowingEventManager.m │ ├── GrowingFieldsIgnore.m │ ├── GrowingGeneralProps.h │ ├── GrowingGeneralProps.m │ ├── GrowingLoginUserAttributesEvent.h │ ├── GrowingLoginUserAttributesEvent.m │ ├── GrowingNodeProtocol.h │ ├── GrowingTrackEventType.h │ ├── GrowingTrackEventType.m │ ├── GrowingVisitEvent.h │ ├── GrowingVisitEvent.m │ └── Tools │ │ ├── GrowingPersistenceDataProvider.h │ │ └── GrowingPersistenceDataProvider.m ├── FileStorage │ ├── GrowingFileStorage.h │ └── GrowingFileStorage.m ├── GrowingRealTracker.h ├── GrowingRealTracker.m ├── GrowingTrackConfiguration.m ├── GrowingWindow.h ├── GrowingWindow.m ├── Helpers │ ├── Foundation │ │ ├── NSArray+GrowingHelper.h │ │ ├── NSArray+GrowingHelper.m │ │ ├── NSData+GrowingHelper.h │ │ ├── NSData+GrowingHelper.m │ │ ├── NSDictionary+GrowingHelper.h │ │ ├── NSDictionary+GrowingHelper.m │ │ ├── NSObject+GrowingIvarHelper.h │ │ ├── NSObject+GrowingIvarHelper.m │ │ ├── NSString+GrowingHelper.h │ │ ├── NSString+GrowingHelper.m │ │ ├── NSURL+GrowingHelper.h │ │ └── NSURL+GrowingHelper.m │ ├── GrowingHelpers.h │ └── UIKit │ │ ├── UIApplication+GrowingHelper.h │ │ ├── UIApplication+GrowingHelper.m │ │ ├── UIImage+GrowingHelper.h │ │ ├── UIImage+GrowingHelper.m │ │ ├── UIView+GrowingHelper.h │ │ └── UIView+GrowingHelper.m ├── LogFormat │ ├── GrowingWSLoggerFormat.h │ └── GrowingWSLoggerFormat.m ├── Manager │ ├── GrowingConfigurationManager.h │ ├── GrowingConfigurationManager.m │ ├── GrowingSession.h │ └── GrowingSession.m ├── Menu │ ├── GrowingAlert.h │ ├── GrowingAlert.m │ ├── GrowingStatusBar.h │ └── GrowingStatusBar.m ├── Network │ ├── GrowingNetworkInterfaceManager.h │ ├── GrowingNetworkInterfaceManager.m │ ├── GrowingNetworkPathMonitor.h │ ├── GrowingNetworkPathMonitor.m │ └── Request │ │ ├── Adapter │ │ ├── GrowingEventRequestAdapters.h │ │ ├── GrowingEventRequestAdapters.m │ │ ├── GrowingRequestAdapter.h │ │ └── GrowingRequestAdapter.m │ │ ├── GrowingEventRequest.h │ │ ├── GrowingEventRequest.m │ │ └── GrowingNetworkConfig.m ├── Public │ ├── GrowingAnnotationCore.h │ ├── GrowingAttributesBuilder.h │ ├── GrowingBaseEvent.h │ ├── GrowingBaseService.h │ ├── GrowingCompressService.h │ ├── GrowingDeepLinkHandler.h │ ├── GrowingDynamicProxy.h │ ├── GrowingEncryptionService.h │ ├── GrowingEventDatabaseService.h │ ├── GrowingEventFilter.h │ ├── GrowingEventNetworkService.h │ ├── GrowingEventPersistenceProtocol.h │ ├── GrowingFieldsIgnore.h │ ├── GrowingFlutterService.h │ ├── GrowingModuleManager.h │ ├── GrowingModuleProtocol.h │ ├── GrowingNetworkConfig.h │ ├── GrowingRequestProtocol.h │ ├── GrowingScreenshotService.h │ ├── GrowingServiceManager.h │ ├── GrowingTrackConfiguration.h │ └── GrowingWebSocketService.h ├── Thirdparty │ ├── Logger │ │ ├── GrowingLog.h │ │ ├── GrowingLog.m │ │ ├── GrowingLogMacros.h │ │ ├── GrowingLogger.h │ │ ├── GrowingLoggerNames.h │ │ ├── GrowingLoggerNames.m │ │ ├── GrowingOSLogger.h │ │ ├── GrowingOSLogger.m │ │ ├── GrowingWSLogger.h │ │ └── GrowingWSLogger.m │ └── Reachability │ │ ├── GrowingReachability.h │ │ └── GrowingReachability.m ├── Thread │ ├── GrowingDispatchManager.h │ ├── GrowingDispatchManager.m │ ├── GrowingThread.h │ └── GrowingThread.m ├── Timer │ ├── GrowingEventTimer.h │ └── GrowingEventTimer.m └── Utils │ ├── GrowingArgumentChecker.h │ ├── GrowingArgumentChecker.m │ ├── GrowingDeviceInfo.h │ ├── GrowingDeviceInfo.m │ ├── GrowingDynamicProxy.m │ ├── GrowingInternalMacros.h │ ├── GrowingKeyChainWrapper.h │ ├── GrowingKeyChainWrapper.m │ └── UserIdentifier │ ├── GrowingUserIdentifier.h │ └── GrowingUserIdentifier.m ├── LICENSE ├── Modules ├── ABTesting │ ├── GrowingABTExperiment+Private.h │ ├── GrowingABTExperiment.m │ ├── GrowingABTExperimentStorage.h │ ├── GrowingABTExperimentStorage.m │ ├── GrowingABTesting.m │ ├── Public │ │ ├── GrowingABTExperiment.h │ │ └── GrowingABTesting.h │ └── Request │ │ ├── GrowingABTRequest.h │ │ ├── GrowingABTRequest.m │ │ ├── GrowingABTRequestAdapter.h │ │ └── GrowingABTRequestAdapter.m ├── APM │ ├── GrowingAPMModule.m │ └── Public │ │ └── GrowingAPMModule.h ├── Advertising │ ├── AppleSearchAds │ │ ├── GrowingAsaFetcher.h │ │ └── GrowingAsaFetcher.m │ ├── CAID │ │ ├── GrowingCAIDFetcher.h │ │ └── GrowingCAIDFetcher.m │ ├── Event │ │ ├── GrowingActivateEvent.h │ │ ├── GrowingActivateEvent.m │ │ └── GrowingAdEventType.h │ ├── GrowingAdvertising.m │ ├── Public │ │ └── GrowingAdvertising.h │ ├── Request │ │ ├── GrowingAdPreRequest.h │ │ ├── GrowingAdPreRequest.m │ │ ├── GrowingAdRequestHeaderAdapter.h │ │ └── GrowingAdRequestHeaderAdapter.m │ └── Utils │ │ ├── GrowingAdUtils.h │ │ └── GrowingAdUtils.m ├── DefaultServices │ ├── GrowingDefaultServicesWrapper.h │ ├── GrowingDefaultServicesWrapper.m │ ├── GrowingEventRequestCompressionAdapter.h │ ├── GrowingEventRequestCompressionAdapter.m │ ├── GrowingEventRequestEncryptionAdapter.h │ ├── GrowingEventRequestEncryptionAdapter.m │ ├── GrowingEventRequestJSONAdapter.h │ ├── GrowingEventRequestJSONAdapter.m │ ├── GrowingEventRequestProtobufAdapter.h │ ├── GrowingEventRequestProtobufAdapter.m │ └── include │ │ └── Dummy-GrowingModule-DefaultServices.h ├── Flutter │ ├── GrowingFlutterPlugin.h │ ├── GrowingFlutterPlugin.m │ ├── GrowingFlutterWebCircleBridge.h │ ├── GrowingFlutterWebCircleBridge.m │ └── include │ │ └── Dummy-GrowingModule-FlutterPlugin.h ├── Hybrid │ ├── Events │ │ ├── GrowingHybridCustomEvent.h │ │ ├── GrowingHybridCustomEvent.m │ │ ├── GrowingHybridEventType.h │ │ ├── GrowingHybridEventType.m │ │ ├── GrowingHybridPageEvent.h │ │ ├── GrowingHybridPageEvent.m │ │ ├── GrowingHybridViewElementEvent.h │ │ └── GrowingHybridViewElementEvent.m │ ├── GrowingHybridBridgeProvider.h │ ├── GrowingHybridBridgeProvider.m │ ├── GrowingHybridModule.m │ ├── GrowingWKWebViewJavascriptBridge.h │ ├── GrowingWKWebViewJavascriptBridge.m │ ├── GrowingWKWebViewJavascriptBridge_JS.h │ ├── GrowingWKWebViewJavascriptBridge_JS.m │ ├── GrowingWebViewDomChangedDelegate.h │ ├── GrowingWebViewJavascriptBridgeConfiguration.h │ ├── GrowingWebViewJavascriptBridgeConfiguration.m │ ├── Public │ │ └── GrowingHybridModule.h │ ├── WKWebView+GrowingAutotracker.h │ ├── WKWebView+GrowingAutotracker.m │ ├── WKWebView+GrowingNode.h │ └── WKWebView+GrowingNode.m ├── ImpressionTrack │ ├── GrowingImpressionTrack.h │ ├── GrowingImpressionTrack.m │ ├── Public │ │ └── UIView+GrowingImpression.h │ ├── UIView+GrowingImpressionInternal.h │ └── UIView+GrowingImpressionInternal.m ├── MobileDebugger │ ├── GrowingDebuggerEventQueue.h │ ├── GrowingDebuggerEventQueue.m │ ├── GrowingMobileDebugger.h │ ├── GrowingMobileDebugger.m │ └── include │ │ └── Dummy-GrowingModule-MobileDebugger.h ├── UniApp │ ├── GrowingUniAppPlugin.m │ └── Public │ │ └── GrowingUniAppPlugin.h ├── V2Adapter │ ├── GrowingAutoTrackKit.m │ └── Public │ │ └── GrowingAutoTrackKit.h ├── V2AdapterTrackOnly │ ├── GrowingCoreKit.m │ ├── GrowingV2Adapter.m │ └── Public │ │ ├── Growing.h │ │ ├── GrowingCoreKit.h │ │ └── GrowingV2Adapter.h └── WebCircle │ ├── GrowingWebCircle.h │ ├── GrowingWebCircle.m │ ├── GrowingWebCircleElement.h │ ├── GrowingWebCircleElement.m │ ├── GrowingWebCircleStatusView.h │ ├── GrowingWebCircleStatusView.m │ └── include │ └── Dummy-GrowingModule-WebCircle.h ├── Package.swift ├── README.md ├── Resources ├── iOS │ └── GrowingAnalytics.bundle │ │ └── PrivacyInfo.xcprivacy ├── macOS │ └── GrowingAnalytics.bundle │ │ └── PrivacyInfo.xcprivacy ├── tvOS │ └── GrowingAnalytics.bundle │ │ └── PrivacyInfo.xcprivacy ├── visionOS │ └── GrowingAnalytics.bundle │ │ └── PrivacyInfo.xcprivacy └── watchOS │ └── GrowingAnalytics.bundle │ └── PrivacyInfo.xcprivacy ├── Services ├── Compression │ ├── GrowingDataCompression.h │ ├── GrowingDataCompression.m │ ├── LZ4 │ │ ├── GrowingLZ4.c │ │ └── GrowingLZ4.h │ └── include │ │ └── Dummy-GrowingService-Compression.h ├── Database │ ├── FMDB │ │ ├── GrowingFMDB.h │ │ ├── GrowingFMDatabase.h │ │ ├── GrowingFMDatabase.m │ │ ├── GrowingFMDatabaseAdditions.h │ │ ├── GrowingFMDatabaseAdditions.m │ │ ├── GrowingFMDatabasePool.h │ │ ├── GrowingFMDatabasePool.m │ │ ├── GrowingFMDatabaseQueue.h │ │ ├── GrowingFMDatabaseQueue.m │ │ ├── GrowingFMResultSet.h │ │ └── GrowingFMResultSet.m │ ├── GrowingEventFMDatabase+Private.h │ ├── GrowingEventFMDatabase.h │ ├── GrowingEventFMDatabase.m │ └── include │ │ └── Dummy-GrowingService-Database.h ├── Encryption │ ├── GrowingDataEncoder.h │ ├── GrowingDataEncoder.m │ └── include │ │ └── Dummy-GrowingService-Encryption.h ├── JSON │ ├── GrowingEventJSONDatabase.h │ ├── GrowingEventJSONDatabase.m │ ├── GrowingEventJSONPersistence.h │ ├── GrowingEventJSONPersistence.m │ └── include │ │ └── Dummy-GrowingService-JSON.h ├── Network │ ├── GrowingNetworkManager.h │ ├── GrowingNetworkManager.m │ ├── GrowingURLSessionDataTaskProtocol.h │ ├── GrowingURLSessionProtocol.h │ ├── NSURLSession+GrowingURLSessionHelper.h │ ├── NSURLSession+GrowingURLSessionHelper.m │ ├── NSURLSessionDataTask+GrowingURLSessionDataTaskHelper.h │ ├── NSURLSessionDataTask+GrowingURLSessionDataTaskHelper.m │ └── include │ │ └── Dummy-GrowingService-Network.h ├── Protobuf │ ├── Catagory │ │ ├── GrowingBaseEvent+Protobuf.h │ │ ├── GrowingBaseEvent+Protobuf.m │ │ ├── GrowingPBEventV3Dto+GrowingHelper.h │ │ └── GrowingPBEventV3Dto+GrowingHelper.m │ ├── GrowingEventProtobufDatabase.h │ ├── GrowingEventProtobufDatabase.m │ ├── GrowingEventProtobufPersistence.h │ ├── GrowingEventProtobufPersistence.m │ ├── Proto │ │ ├── GrowingEvent.pbobjc.h │ │ ├── GrowingEvent.pbobjc.m │ │ ├── event_v3.proto │ │ └── include │ │ │ └── Dummy-GrowingService-Protobuf-Proto.h │ └── include │ │ └── Dummy-GrowingService-Protobuf.h ├── Screenshot │ ├── GrowingScreenshotProvider.h │ ├── GrowingScreenshotProvider.m │ ├── UIApplication+Screenshot.h │ ├── UIApplication+Screenshot.m │ └── include │ │ └── Dummy-GrowingService-Screenshot.h ├── SwiftProtobuf │ ├── SwiftProtobuf.swift │ └── event_v3.pb.swift └── WebSocket │ ├── GrowingSRWebSocket.h │ ├── GrowingSRWebSocket.m │ └── include │ └── Dummy-GrowingService-WebSocket.h ├── SwiftPM-Wrap ├── GrowingAutotracker │ └── Exports.swift ├── GrowingPrivacy-Wrapper │ ├── Resources │ │ └── GrowingAnalytics.bundle │ ├── dummy.m │ └── include │ │ └── dummy.h ├── GrowingPrivacy-macOS-Wrapper │ ├── Resources │ │ └── GrowingAnalytics.bundle │ ├── dummy.m │ └── include │ │ └── dummy.h ├── GrowingPrivacy-tvOS-Wrapper │ ├── Resources │ │ └── GrowingAnalytics.bundle │ ├── dummy.m │ └── include │ │ └── dummy.h ├── GrowingPrivacy-visionOS-Wrapper │ ├── Resources │ │ └── GrowingAnalytics.bundle │ ├── dummy.m │ └── include │ │ └── dummy.h ├── GrowingPrivacy-watchOS-Wrapper │ ├── Resources │ │ └── GrowingAnalytics.bundle │ ├── dummy.m │ └── include │ │ └── dummy.h └── GrowingTracker │ └── Exports.swift ├── codecov.yml ├── scripts ├── Package.swift ├── cocoapods-beta.sh ├── code-checker.sh ├── generate_xcframework.sh ├── modifyPodsXcodeproj.ruby └── update_version.sh └── sonar-project.properties /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-bug-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/.github/ISSUE_TEMPLATE/1-bug-report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-feature-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/.github/ISSUE_TEMPLATE/2-feature-request.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3-docs-bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/.github/ISSUE_TEMPLATE/3-docs-bug.yaml -------------------------------------------------------------------------------- /.github/workflows/build_xcframework_manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/.github/workflows/build_xcframework_manual.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/cocoapods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/.github/workflows/cocoapods.yml -------------------------------------------------------------------------------- /.github/workflows/cocoapods_beta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/.github/workflows/cocoapods_beta.yml -------------------------------------------------------------------------------- /.github/workflows/cocoapods_beta_manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/.github/workflows/cocoapods_beta_manual.yml -------------------------------------------------------------------------------- /.github/workflows/code_format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/.github/workflows/code_format.yml -------------------------------------------------------------------------------- /.github/workflows/draft_release_with_tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/.github/workflows/draft_release_with_tag.yml -------------------------------------------------------------------------------- /.github/workflows/draft_release_without_tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/.github/workflows/draft_release_without_tag.yml -------------------------------------------------------------------------------- /.github/workflows/spm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/.github/workflows/spm.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/.gitignore -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/.spi.yml -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/.swiftformat -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Example/Example-SwiftUI/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-SwiftUI/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Example/Example-SwiftUI/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-SwiftUI/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example-SwiftUI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-SwiftUI/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example-SwiftUI/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-SwiftUI/ContentView.swift -------------------------------------------------------------------------------- /Example/Example-SwiftUI/CustomAppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-SwiftUI/CustomAppDelegate.swift -------------------------------------------------------------------------------- /Example/Example-SwiftUI/Example_SwiftUIApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-SwiftUI/Example_SwiftUIApp.swift -------------------------------------------------------------------------------- /Example/Example-SwiftUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-SwiftUI/Info.plist -------------------------------------------------------------------------------- /Example/Example-SwiftUI/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-SwiftUI/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example-macOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-macOS/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example-macOS/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-macOS/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Example/Example-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example-macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-macOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example-macOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-macOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example-macOS/Example_macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-macOS/Example_macOS.entitlements -------------------------------------------------------------------------------- /Example/Example-macOS/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-macOS/ViewController.swift -------------------------------------------------------------------------------- /Example/Example-tvOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-tvOS/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example-tvOS/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-tvOS/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Example/Example-tvOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-tvOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example-tvOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-tvOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Example-tvOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-tvOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example-tvOS/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-tvOS/ViewController.swift -------------------------------------------------------------------------------- /Example/Example-visionOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-visionOS/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example-visionOS/Assets.xcassets/AppIcon.solidimagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-visionOS/Assets.xcassets/AppIcon.solidimagestack/Contents.json -------------------------------------------------------------------------------- /Example/Example-visionOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-visionOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example-visionOS/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-visionOS/ContentView.swift -------------------------------------------------------------------------------- /Example/Example-visionOS/Example_visionOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-visionOS/Example_visionOSApp.swift -------------------------------------------------------------------------------- /Example/Example-visionOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-visionOS/Info.plist -------------------------------------------------------------------------------- /Example/Example-visionOS/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-visionOS/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example-watchOS Watch App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-watchOS Watch App/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example-watchOS Watch App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-watchOS Watch App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example-watchOS Watch App/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-watchOS Watch App/ContentView.swift -------------------------------------------------------------------------------- /Example/Example-watchOS Watch App/Example_watchOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example-watchOS Watch App/Example_watchOSApp.swift -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/GrowingAnalyticsTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/GrowingAnalyticsTests.xcscheme -------------------------------------------------------------------------------- /Example/Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/AppDelegate.h -------------------------------------------------------------------------------- /Example/Example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/AppDelegate.m -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/icon-29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/icon-29@2x-1.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/icon-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/icon-40@2x-1.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Common/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/Common/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Common/icon_back_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/Common/icon_back_white.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/TabBar/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/TabBar/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/TabBar/agree.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/TabBar/agree.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/TabBar/agree.imageset/agree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/TabBar/agree.imageset/agree.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/TabBar/merge.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/TabBar/merge.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/TabBar/merge.imageset/merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/TabBar/merge.imageset/merge.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/TabBar/uipage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/TabBar/uipage.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/TabBar/uipage.imageset/uipage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/TabBar/uipage.imageset/uipage.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/cycle_01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/cycle_01.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/cycle_01.imageset/cycle_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/cycle_01.imageset/cycle_01.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/cycle_02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/cycle_02.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/cycle_02.imageset/cycle_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/cycle_02.imageset/cycle_02.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/cycle_03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/cycle_03.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/cycle_03.imageset/cycle_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/cycle_03.imageset/cycle_03.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/cycle_04.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/cycle_04.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/cycle_04.imageset/cycle_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/cycle_04.imageset/cycle_04.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/cycle_05.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/cycle_05.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/cycle_05.imageset/cycle_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/cycle_05.imageset/cycle_05.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/cycle_06.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/cycle_06.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/cycle_06.imageset/cycle_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/cycle_06.imageset/cycle_06.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/cycle_07.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/cycle_07.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/cycle_07.imageset/cycle_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/cycle_07.imageset/cycle_07.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/cycle_08.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/cycle_08.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/cycle_08.imageset/cycle_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/cycle_08.imageset/cycle_08.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/fire.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/fire.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/fire.imageset/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/fire.imageset/fire.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/food1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/food1.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/food1.imageset/food1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/food1.imageset/food1.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/food2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/food2.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/food2.imageset/food3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/food2.imageset/food3.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/food3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/food3.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/food3.imageset/food4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/food3.imageset/food4.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/food4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/food4.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/food4.imageset/food5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/food4.imageset/food5.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/food5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/food5.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/food5.imageset/food6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/food5.imageset/food6.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/food6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/food6.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/food6.imageset/food7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/food6.imageset/food7.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/food7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/food7.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/food7.imageset/food8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/food7.imageset/food8.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/food8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/food8.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/food8.imageset/food9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/food8.imageset/food9.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/food9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/food9.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/food9.imageset/food2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/food9.imageset/food2.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/scanqr.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/scanqr.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/UICatalogTests/scanqr.imageset/scanqr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Assets.xcassets/UICatalogTests/scanqr.imageset/scanqr.png -------------------------------------------------------------------------------- /Example/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example/Example-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Example-Bridging-Header.h -------------------------------------------------------------------------------- /Example/Example/Example.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Example.entitlements -------------------------------------------------------------------------------- /Example/Example/GrowingIO-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/GrowingIO-Info.plist -------------------------------------------------------------------------------- /Example/Example/GrowingIO-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/GrowingIO-Prefix.pch -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/ClickEvent/GIOClickEventViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/ClickEvent/GIOClickEventViewController.h -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/ClickEvent/GIOClickEventViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/ClickEvent/GIOClickEventViewController.m -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/CustomEvent/GIOCustomEventViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/CustomEvent/GIOCustomEventViewController.h -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/CustomEvent/GIOCustomEventViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/CustomEvent/GIOCustomEventViewController.m -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/GIOMeasurementProtocolTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/GIOMeasurementProtocolTableViewController.h -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/GIOMeasurementProtocolTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/GIOMeasurementProtocolTableViewController.m -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/MeasurementProtocolTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/MeasurementProtocolTableViewController.h -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/PageEvent/GIOContainerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/PageEvent/GIOContainerViewController.h -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/PageEvent/GIOContainerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/PageEvent/GIOContainerViewController.m -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/PageEvent/GIOFirstViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/PageEvent/GIOFirstViewController.h -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/PageEvent/GIOFirstViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/PageEvent/GIOFirstViewController.m -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/PageEvent/GIOPageEventViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/PageEvent/GIOPageEventViewController.h -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/PageEvent/GIOPageEventViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/PageEvent/GIOPageEventViewController.m -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/PageEvent/GIOSecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/PageEvent/GIOSecondViewController.h -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/PageEvent/GIOSecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/PageEvent/GIOSecondViewController.m -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/TrackTimer/GIOTrackTimerEventViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/TrackTimer/GIOTrackTimerEventViewController.h -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/TrackTimer/GIOTrackTimerEventViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/TrackTimer/GIOTrackTimerEventViewController.m -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/TrackTimer/View/GIOTrackTimerTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/TrackTimer/View/GIOTrackTimerTableViewCell.h -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/UserId/GIOUserIdViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/UserId/GIOUserIdViewController.h -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/UserId/GIOUserIdViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/UserId/GIOUserIdViewController.m -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/View/GIOKeyValueCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/View/GIOKeyValueCell.h -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/View/GIOKeyValueCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/View/GIOKeyValueCell.m -------------------------------------------------------------------------------- /Example/Example/MeasurementProtocol/View/GIOKeyValueCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/MeasurementProtocol/View/GIOKeyValueCell.xib -------------------------------------------------------------------------------- /Example/Example/Others/Crasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Others/Crasher.h -------------------------------------------------------------------------------- /Example/Example/Others/Crasher.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Others/Crasher.mm -------------------------------------------------------------------------------- /Example/Example/Others/GIOCrashMonitorTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Others/GIOCrashMonitorTableViewController.h -------------------------------------------------------------------------------- /Example/Example/Others/GIOCrashMonitorTableViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Others/GIOCrashMonitorTableViewController.mm -------------------------------------------------------------------------------- /Example/Example/Others/GIOSwiftUIContentViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Others/GIOSwiftUIContentViewController.h -------------------------------------------------------------------------------- /Example/Example/Others/GIOSwiftUIContentViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Others/GIOSwiftUIContentViewController.m -------------------------------------------------------------------------------- /Example/Example/Others/SwiftUIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Others/SwiftUIView.swift -------------------------------------------------------------------------------- /Example/Example/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/SceneDelegate.h -------------------------------------------------------------------------------- /Example/Example/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/SceneDelegate.m -------------------------------------------------------------------------------- /Example/Example/Storyboard/MeasurementProtocol.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Storyboard/MeasurementProtocol.storyboard -------------------------------------------------------------------------------- /Example/Example/Storyboard/Others.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Storyboard/Others.storyboard -------------------------------------------------------------------------------- /Example/Example/Storyboard/UICatalogTests.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Storyboard/UICatalogTests.storyboard -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/ActionSheets/GIOActionSheetViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/ActionSheets/GIOActionSheetViewController.h -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/ActionSheets/GIOActionSheetViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/ActionSheets/GIOActionSheetViewController.m -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/Banner&TableView/View/GIOFoodTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/Banner&TableView/View/GIOFoodTableViewCell.h -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/Banner&TableView/View/GIOFoodTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/Banner&TableView/View/GIOFoodTableViewCell.m -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/Banner&TableView/View/GIOFoodTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/Banner&TableView/View/GIOFoodTableViewCell.xib -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/Banner&TableView/View/GIOListTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/Banner&TableView/View/GIOListTableViewCell.h -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/Banner&TableView/View/GIOListTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/Banner&TableView/View/GIOListTableViewCell.m -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/Banner&TableView/View/GIOListTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/Banner&TableView/View/GIOListTableViewCell.xib -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/Button&AlertView/GIOButtonViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/Button&AlertView/GIOButtonViewController.h -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/Button&AlertView/GIOButtonViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/Button&AlertView/GIOButtonViewController.m -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/CollectionView/GIOCollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/CollectionView/GIOCollectionViewController.h -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/CollectionView/GIOCollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/CollectionView/GIOCollectionViewController.m -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/CollectionView/View/GIOCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/CollectionView/View/GIOCollectionViewCell.h -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/CollectionView/View/GIOCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/CollectionView/View/GIOCollectionViewCell.m -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/CollectionView/View/GIOCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/CollectionView/View/GIOCollectionViewCell.xib -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/GIOUICategoryViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/GIOUICategoryViewController.h -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/GIOUICategoryViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/GIOUICategoryViewController.m -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/H5Browser/GIODefaultWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/H5Browser/GIODefaultWebViewController.h -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/H5Browser/GIODefaultWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/H5Browser/GIODefaultWebViewController.m -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/H5Browser/GIOH5BrowserViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/H5Browser/GIOH5BrowserViewController.h -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/H5Browser/GIOH5BrowserViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/H5Browser/GIOH5BrowserViewController.m -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/Hybrid/GIOHybridViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/Hybrid/GIOHybridViewController.h -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/Hybrid/GIOHybridViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/Hybrid/GIOHybridViewController.m -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/Hybrid/gio_hybrideventtest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/Hybrid/gio_hybrideventtest.html -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/Hybrid/testweb copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/Hybrid/testweb copy.html -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/IgnoreViewClass/View/GrowingIgnoreButton1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/IgnoreViewClass/View/GrowingIgnoreButton1.h -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/IgnoreViewClass/View/GrowingIgnoreButton1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/IgnoreViewClass/View/GrowingIgnoreButton1.m -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/IgnoreViewClass/View/GrowingIgnoreButton2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/IgnoreViewClass/View/GrowingIgnoreButton2.h -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/IgnoreViewClass/View/GrowingIgnoreButton2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/IgnoreViewClass/View/GrowingIgnoreButton2.m -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/IgnoreViewClass/View/GrowingIgnoreButton3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/IgnoreViewClass/View/GrowingIgnoreButton3.h -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/IgnoreViewClass/View/GrowingIgnoreButton3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/IgnoreViewClass/View/GrowingIgnoreButton3.m -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/IgnoreViewClass/View/GrowingNotIgnoreButton4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/IgnoreViewClass/View/GrowingNotIgnoreButton4.h -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/IgnoreViewClass/View/GrowingNotIgnoreButton4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/IgnoreViewClass/View/GrowingNotIgnoreButton4.m -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/PageStructure/GIOBaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/PageStructure/GIOBaseViewController.h -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/PageStructure/GIOBaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/PageStructure/GIOBaseViewController.m -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/PageStructure/GIOChildsAddViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/PageStructure/GIOChildsAddViewController.h -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/PageStructure/GIOChildsAddViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/PageStructure/GIOChildsAddViewController.m -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/PageStructure/GIOMultiViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/PageStructure/GIOMultiViewController.h -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/PageStructure/GIOMultiViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/PageStructure/GIOMultiViewController.m -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/PageStructure/GIOPageStructure.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/PageStructure/GIOPageStructure.storyboard -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/PageStructure/GIOPageStructureViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/PageStructure/GIOPageStructureViewController.h -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/PageStructure/GIOPageStructureViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/PageStructure/GIOPageStructureViewController.m -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/PageStructure/GIOPagingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/PageStructure/GIOPagingViewController.h -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/PageStructure/GIOPagingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/PageStructure/GIOPagingViewController.m -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/PageStructure/GIOPresentViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/PageStructure/GIOPresentViewController.h -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/PageStructure/GIOPresentViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/PageStructure/GIOPresentViewController.m -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/TextFields/GIOTextFieldViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/TextFields/GIOTextFieldViewController.h -------------------------------------------------------------------------------- /Example/Example/UICategoryTests/TextFields/GIOTextFieldViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/UICategoryTests/TextFields/GIOTextFieldViewController.m -------------------------------------------------------------------------------- /Example/Example/Util/GIOConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Util/GIOConstants.h -------------------------------------------------------------------------------- /Example/Example/Util/GIOConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Util/GIOConstants.m -------------------------------------------------------------------------------- /Example/Example/Util/GIODataProcessOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Util/GIODataProcessOperation.h -------------------------------------------------------------------------------- /Example/Example/Util/GIODataProcessOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Util/GIODataProcessOperation.m -------------------------------------------------------------------------------- /Example/Example/Util/GIOScanViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Util/GIOScanViewController.h -------------------------------------------------------------------------------- /Example/Example/Util/GIOScanViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Util/GIOScanViewController.m -------------------------------------------------------------------------------- /Example/Example/Util/GIOWebViewWarmuper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Util/GIOWebViewWarmuper.h -------------------------------------------------------------------------------- /Example/Example/Util/GIOWebViewWarmuper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Util/GIOWebViewWarmuper.m -------------------------------------------------------------------------------- /Example/Example/Util/UIColor+Hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Util/UIColor+Hex.h -------------------------------------------------------------------------------- /Example/Example/Util/UIColor+Hex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/Util/UIColor+Hex.m -------------------------------------------------------------------------------- /Example/Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Example/main.m -------------------------------------------------------------------------------- /Example/ExampleiOS13/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/AppDelegate.h -------------------------------------------------------------------------------- /Example/ExampleiOS13/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/AppDelegate.m -------------------------------------------------------------------------------- /Example/ExampleiOS13/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png -------------------------------------------------------------------------------- /Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png -------------------------------------------------------------------------------- /Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-29@2x-1.png -------------------------------------------------------------------------------- /Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-40@2x-1.png -------------------------------------------------------------------------------- /Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /Example/ExampleiOS13/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/ExampleiOS13/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/ExampleiOS13/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/ExampleiOS13/ExampleiOS13.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/ExampleiOS13.entitlements -------------------------------------------------------------------------------- /Example/ExampleiOS13/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/Info.plist -------------------------------------------------------------------------------- /Example/ExampleiOS13/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/SceneDelegate.h -------------------------------------------------------------------------------- /Example/ExampleiOS13/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/SceneDelegate.m -------------------------------------------------------------------------------- /Example/ExampleiOS13/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/ViewController.h -------------------------------------------------------------------------------- /Example/ExampleiOS13/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/ViewController.m -------------------------------------------------------------------------------- /Example/ExampleiOS13/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ExampleiOS13/main.m -------------------------------------------------------------------------------- /Example/GrowingAnalytics.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalytics.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/GrowingAnalytics.xcworkspace/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalytics.xcworkspace/xcshareddata/IDETemplateMacros.plist -------------------------------------------------------------------------------- /Example/GrowingAnalytics.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalytics.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/GrowingAnalytics.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalytics.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/A0GrowingAnalyticsTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/A0GrowingAnalyticsTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/AutotrackerCoreTests/GrowingNodeTests/NodeTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/AutotrackerCoreTests/GrowingNodeTests/NodeTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/GrowingAnalyticsTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/GrowingAnalyticsTests.xctestplan -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/Helper/InvocationHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/Helper/InvocationHelper.h -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/Helper/InvocationHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/Helper/InvocationHelper.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/Helper/ManualTrackHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/Helper/ManualTrackHelper.h -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/Helper/ManualTrackHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/Helper/ManualTrackHelper.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/Helper/MockEventQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/Helper/MockEventQueue.h -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/Helper/MockEventQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/Helper/MockEventQueue.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/ModulesTests/ABTestingTests/ABTestingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/ModulesTests/ABTestingTests/ABTestingTests.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/ModulesTests/AdvertisingTests/AdvertisingTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/ModulesTests/AdvertisingTests/AdvertisingTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/ModulesTests/Helper/WebSocketTestHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/ModulesTests/Helper/WebSocketTestHelper.h -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/ModulesTests/Helper/WebSocketTestHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/ModulesTests/Helper/WebSocketTestHelper.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/ModulesTests/HybridTests/HybridEventTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/ModulesTests/HybridTests/HybridEventTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/ModulesTests/HybridTests/HybridTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/ModulesTests/HybridTests/HybridTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/ModulesTests/ProtobufTests/ProtobufDatabaseTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/ModulesTests/ProtobufTests/ProtobufDatabaseTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/ModulesTests/ProtobufTests/ProtobufEventsTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/ModulesTests/ProtobufTests/ProtobufEventsTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/ModulesTests/WebCircleTests/WebCircleTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/ModulesTests/WebCircleTests/WebCircleTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/ServicesTests/CompressionTests/CompressionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/ServicesTests/CompressionTests/CompressionTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/ServicesTests/DatabaseTests/JSONDatabaseTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/ServicesTests/DatabaseTests/JSONDatabaseTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/ServicesTests/DatabaseTests/JSONPersistenceTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/ServicesTests/DatabaseTests/JSONPersistenceTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/ServicesTests/EncryptionTests/EncryptionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/ServicesTests/EncryptionTests/EncryptionTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/ServicesTests/ScreenshotTests/ScreenshotTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/ServicesTests/ScreenshotTests/ScreenshotTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/TrackerCoreTests/CoreTests/GrowingModuleTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/TrackerCoreTests/CoreTests/GrowingModuleTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/TrackerCoreTests/CoreTests/GrowingServiceTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/TrackerCoreTests/CoreTests/GrowingServiceTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/TrackerCoreTests/DatabaseTests/DatabaseTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/TrackerCoreTests/DatabaseTests/DatabaseTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/TrackerCoreTests/DeepLinkTests/DeepLinkTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/TrackerCoreTests/DeepLinkTests/DeepLinkTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/TrackerCoreTests/EventTests/DataTrafficTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/TrackerCoreTests/EventTests/DataTrafficTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/TrackerCoreTests/EventTests/EventTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/TrackerCoreTests/EventTests/EventTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/TrackerCoreTests/GrowingWindowTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/TrackerCoreTests/GrowingWindowTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/TrackerCoreTests/MenuTests/GrowingAlertTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/TrackerCoreTests/MenuTests/GrowingAlertTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/TrackerCoreTests/MenuTests/GrowingStatusBarTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/TrackerCoreTests/MenuTests/GrowingStatusBarTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/TrackerCoreTests/UtilsTests/DeviceInfoTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/TrackerCoreTests/UtilsTests/DeviceInfoTest.m -------------------------------------------------------------------------------- /Example/GrowingAnalyticsTests/TrackerCoreTests/UtilsTests/DynamicProxyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/GrowingAnalyticsTests/TrackerCoreTests/UtilsTests/DynamicProxyTest.m -------------------------------------------------------------------------------- /Example/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Package.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/ShareExtension/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ShareExtension/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /Example/ShareExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ShareExtension/Info.plist -------------------------------------------------------------------------------- /Example/ShareExtension/ShareExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ShareExtension/ShareExtension.entitlements -------------------------------------------------------------------------------- /Example/ShareExtension/ShareViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ShareExtension/ShareViewController.h -------------------------------------------------------------------------------- /Example/ShareExtension/ShareViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Example/ShareExtension/ShareViewController.m -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Gemfile -------------------------------------------------------------------------------- /GrowingAnalytics.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAnalytics.podspec -------------------------------------------------------------------------------- /GrowingAutotracker/GrowingAutotracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotracker/GrowingAutotracker.h -------------------------------------------------------------------------------- /GrowingAutotracker/GrowingAutotracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotracker/GrowingAutotracker.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/Autotrack/GrowingPropertyDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/Autotrack/GrowingPropertyDefine.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/Autotrack/UIAlertController+GrowingAutotracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/Autotrack/UIAlertController+GrowingAutotracker.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/Autotrack/UIAlertController+GrowingAutotracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/Autotrack/UIAlertController+GrowingAutotracker.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/Autotrack/UIApplication+GrowingAutotracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/Autotrack/UIApplication+GrowingAutotracker.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/Autotrack/UIApplication+GrowingAutotracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/Autotrack/UIApplication+GrowingAutotracker.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/Autotrack/UICollectionView+GrowingAutotracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/Autotrack/UICollectionView+GrowingAutotracker.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/Autotrack/UICollectionView+GrowingAutotracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/Autotrack/UICollectionView+GrowingAutotracker.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/Autotrack/UISegmentedControl+GrowingAutotracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/Autotrack/UISegmentedControl+GrowingAutotracker.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/Autotrack/UISegmentedControl+GrowingAutotracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/Autotrack/UISegmentedControl+GrowingAutotracker.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/Autotrack/UITableView+GrowingAutotracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/Autotrack/UITableView+GrowingAutotracker.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/Autotrack/UITableView+GrowingAutotracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/Autotrack/UITableView+GrowingAutotracker.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/Autotrack/UITapGestureRecognizer+GrowingAutotracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/Autotrack/UITapGestureRecognizer+GrowingAutotracker.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/Autotrack/UITapGestureRecognizer+GrowingAutotracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/Autotrack/UITapGestureRecognizer+GrowingAutotracker.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/Autotrack/UIViewController+GrowingAutotracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/Autotrack/UIViewController+GrowingAutotracker.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/Autotrack/UIViewController+GrowingAutotracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/Autotrack/UIViewController+GrowingAutotracker.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingAutotrackConfiguration+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingAutotrackConfiguration+Private.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingAutotrackConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingAutotrackConfiguration.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UIAlertController+GrowingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UIAlertController+GrowingNode.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UIAlertController+GrowingNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UIAlertController+GrowingNode.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UICollectionView+GrowingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UICollectionView+GrowingNode.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UICollectionView+GrowingNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UICollectionView+GrowingNode.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UIControl+GrowingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UIControl+GrowingNode.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UIControl+GrowingNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UIControl+GrowingNode.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UIImageView+GrowingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UIImageView+GrowingNode.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UIImageView+GrowingNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UIImageView+GrowingNode.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UILabel+GrowingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UILabel+GrowingNode.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UILabel+GrowingNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UILabel+GrowingNode.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UISegmentedControl+GrowingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UISegmentedControl+GrowingNode.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UISegmentedControl+GrowingNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UISegmentedControl+GrowingNode.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UISlider+GrowingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UISlider+GrowingNode.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UISlider+GrowingNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UISlider+GrowingNode.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UISwitch+GrowingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UISwitch+GrowingNode.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UISwitch+GrowingNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UISwitch+GrowingNode.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UITabBarController+GrowingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UITabBarController+GrowingNode.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UITabBarController+GrowingNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UITabBarController+GrowingNode.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UITableView+GrowingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UITableView+GrowingNode.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UITableView+GrowingNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UITableView+GrowingNode.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UIView+GrowingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UIView+GrowingNode.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UIView+GrowingNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UIView+GrowingNode.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UIViewController+GrowingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UIViewController+GrowingNode.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UIViewController+GrowingNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UIViewController+GrowingNode.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UIWindow+GrowingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UIWindow+GrowingNode.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/Category/UIWindow+GrowingNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/Category/UIWindow+GrowingNode.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/GrowingNodeHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/GrowingNodeHelper.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/GrowingNodeHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/GrowingNodeHelper.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/GrowingViewChangeProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/GrowingViewChangeProvider.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/GrowingViewChangeProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/GrowingViewChangeProvider.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/GrowingViewClickProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/GrowingViewClickProvider.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/GrowingViewClickProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/GrowingViewClickProvider.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/GrowingViewNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/GrowingViewNode.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingNode/GrowingViewNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingNode/GrowingViewNode.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingRealAutotracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingRealAutotracker.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/GrowingRealAutotracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/GrowingRealAutotracker.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/Page/GrowingPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/Page/GrowingPage.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/Page/GrowingPage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/Page/GrowingPage.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/Page/GrowingPageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/Page/GrowingPageManager.h -------------------------------------------------------------------------------- /GrowingAutotrackerCore/Page/GrowingPageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/Page/GrowingPageManager.m -------------------------------------------------------------------------------- /GrowingAutotrackerCore/Public/GrowingAutotrackConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingAutotrackerCore/Public/GrowingAutotrackConfiguration.h -------------------------------------------------------------------------------- /GrowingTracker/GrowingTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTracker/GrowingTracker.h -------------------------------------------------------------------------------- /GrowingTracker/GrowingTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTracker/GrowingTracker.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Core/GrowingAnnotationCore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Core/GrowingAnnotationCore.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Core/GrowingContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Core/GrowingContext.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Core/GrowingContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Core/GrowingContext.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Core/GrowingModuleManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Core/GrowingModuleManager.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Core/GrowingServiceManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Core/GrowingServiceManager.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Database/GrowingEventDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Database/GrowingEventDatabase.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Database/GrowingEventDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Database/GrowingEventDatabase.m -------------------------------------------------------------------------------- /GrowingTrackerCore/DeepLink/GrowingAppDelegateAutotracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/DeepLink/GrowingAppDelegateAutotracker.h -------------------------------------------------------------------------------- /GrowingTrackerCore/DeepLink/GrowingAppDelegateAutotracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/DeepLink/GrowingAppDelegateAutotracker.m -------------------------------------------------------------------------------- /GrowingTrackerCore/DeepLink/GrowingDeepLinkHandler+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/DeepLink/GrowingDeepLinkHandler+Private.h -------------------------------------------------------------------------------- /GrowingTrackerCore/DeepLink/GrowingDeepLinkHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/DeepLink/GrowingDeepLinkHandler.m -------------------------------------------------------------------------------- /GrowingTrackerCore/DeepLink/GrowingSceneDelegateAutotracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/DeepLink/GrowingSceneDelegateAutotracker.h -------------------------------------------------------------------------------- /GrowingTrackerCore/DeepLink/GrowingSceneDelegateAutotracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/DeepLink/GrowingSceneDelegateAutotracker.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/Autotrack/GrowingAutotrackEventType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/Autotrack/GrowingAutotrackEventType.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/Autotrack/GrowingAutotrackEventType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/Autotrack/GrowingAutotrackEventType.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/Autotrack/GrowingPageEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/Autotrack/GrowingPageEvent.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/Autotrack/GrowingPageEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/Autotrack/GrowingPageEvent.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/Autotrack/GrowingViewElementEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/Autotrack/GrowingViewElementEvent.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/Autotrack/GrowingViewElementEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/Autotrack/GrowingViewElementEvent.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/Base/GrowingAttributesBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/Base/GrowingAttributesBuilder.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/Base/GrowingBaseEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/Base/GrowingBaseEvent.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingAppCloseEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingAppCloseEvent.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingAppCloseEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingAppCloseEvent.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingCustomEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingCustomEvent.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingCustomEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingCustomEvent.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingDataTraffic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingDataTraffic.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingDataTraffic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingDataTraffic.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingEventChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingEventChannel.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingEventChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingEventChannel.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingEventFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingEventFilter.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingEventGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingEventGenerator.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingEventGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingEventGenerator.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingEventManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingEventManager.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingEventManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingEventManager.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingFieldsIgnore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingFieldsIgnore.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingGeneralProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingGeneralProps.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingGeneralProps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingGeneralProps.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingLoginUserAttributesEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingLoginUserAttributesEvent.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingLoginUserAttributesEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingLoginUserAttributesEvent.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingNodeProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingNodeProtocol.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingTrackEventType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingTrackEventType.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingTrackEventType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingTrackEventType.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingVisitEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingVisitEvent.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/GrowingVisitEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/GrowingVisitEvent.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/Tools/GrowingPersistenceDataProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/Tools/GrowingPersistenceDataProvider.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Event/Tools/GrowingPersistenceDataProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Event/Tools/GrowingPersistenceDataProvider.m -------------------------------------------------------------------------------- /GrowingTrackerCore/FileStorage/GrowingFileStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/FileStorage/GrowingFileStorage.h -------------------------------------------------------------------------------- /GrowingTrackerCore/FileStorage/GrowingFileStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/FileStorage/GrowingFileStorage.m -------------------------------------------------------------------------------- /GrowingTrackerCore/GrowingRealTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/GrowingRealTracker.h -------------------------------------------------------------------------------- /GrowingTrackerCore/GrowingRealTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/GrowingRealTracker.m -------------------------------------------------------------------------------- /GrowingTrackerCore/GrowingTrackConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/GrowingTrackConfiguration.m -------------------------------------------------------------------------------- /GrowingTrackerCore/GrowingWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/GrowingWindow.h -------------------------------------------------------------------------------- /GrowingTrackerCore/GrowingWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/GrowingWindow.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Helpers/Foundation/NSArray+GrowingHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Helpers/Foundation/NSArray+GrowingHelper.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Helpers/Foundation/NSArray+GrowingHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Helpers/Foundation/NSArray+GrowingHelper.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Helpers/Foundation/NSData+GrowingHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Helpers/Foundation/NSData+GrowingHelper.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Helpers/Foundation/NSData+GrowingHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Helpers/Foundation/NSData+GrowingHelper.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Helpers/Foundation/NSDictionary+GrowingHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Helpers/Foundation/NSDictionary+GrowingHelper.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Helpers/Foundation/NSDictionary+GrowingHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Helpers/Foundation/NSDictionary+GrowingHelper.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Helpers/Foundation/NSObject+GrowingIvarHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Helpers/Foundation/NSObject+GrowingIvarHelper.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Helpers/Foundation/NSObject+GrowingIvarHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Helpers/Foundation/NSObject+GrowingIvarHelper.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Helpers/Foundation/NSString+GrowingHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Helpers/Foundation/NSString+GrowingHelper.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Helpers/Foundation/NSString+GrowingHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Helpers/Foundation/NSString+GrowingHelper.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Helpers/Foundation/NSURL+GrowingHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Helpers/Foundation/NSURL+GrowingHelper.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Helpers/Foundation/NSURL+GrowingHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Helpers/Foundation/NSURL+GrowingHelper.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Helpers/GrowingHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Helpers/GrowingHelpers.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Helpers/UIKit/UIApplication+GrowingHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Helpers/UIKit/UIApplication+GrowingHelper.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Helpers/UIKit/UIApplication+GrowingHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Helpers/UIKit/UIApplication+GrowingHelper.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Helpers/UIKit/UIImage+GrowingHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Helpers/UIKit/UIImage+GrowingHelper.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Helpers/UIKit/UIImage+GrowingHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Helpers/UIKit/UIImage+GrowingHelper.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Helpers/UIKit/UIView+GrowingHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Helpers/UIKit/UIView+GrowingHelper.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Helpers/UIKit/UIView+GrowingHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Helpers/UIKit/UIView+GrowingHelper.m -------------------------------------------------------------------------------- /GrowingTrackerCore/LogFormat/GrowingWSLoggerFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/LogFormat/GrowingWSLoggerFormat.h -------------------------------------------------------------------------------- /GrowingTrackerCore/LogFormat/GrowingWSLoggerFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/LogFormat/GrowingWSLoggerFormat.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Manager/GrowingConfigurationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Manager/GrowingConfigurationManager.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Manager/GrowingConfigurationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Manager/GrowingConfigurationManager.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Manager/GrowingSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Manager/GrowingSession.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Manager/GrowingSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Manager/GrowingSession.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Menu/GrowingAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Menu/GrowingAlert.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Menu/GrowingAlert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Menu/GrowingAlert.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Menu/GrowingStatusBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Menu/GrowingStatusBar.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Menu/GrowingStatusBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Menu/GrowingStatusBar.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Network/GrowingNetworkInterfaceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Network/GrowingNetworkInterfaceManager.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Network/GrowingNetworkInterfaceManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Network/GrowingNetworkInterfaceManager.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Network/GrowingNetworkPathMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Network/GrowingNetworkPathMonitor.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Network/GrowingNetworkPathMonitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Network/GrowingNetworkPathMonitor.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Network/Request/Adapter/GrowingEventRequestAdapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Network/Request/Adapter/GrowingEventRequestAdapters.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Network/Request/Adapter/GrowingEventRequestAdapters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Network/Request/Adapter/GrowingEventRequestAdapters.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Network/Request/Adapter/GrowingRequestAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Network/Request/Adapter/GrowingRequestAdapter.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Network/Request/Adapter/GrowingRequestAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Network/Request/Adapter/GrowingRequestAdapter.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Network/Request/GrowingEventRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Network/Request/GrowingEventRequest.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Network/Request/GrowingEventRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Network/Request/GrowingEventRequest.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Network/Request/GrowingNetworkConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Network/Request/GrowingNetworkConfig.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Public/GrowingAnnotationCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Public/GrowingAnnotationCore.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Public/GrowingAttributesBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Public/GrowingAttributesBuilder.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Public/GrowingBaseEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Public/GrowingBaseEvent.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Public/GrowingBaseService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Public/GrowingBaseService.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Public/GrowingCompressService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Public/GrowingCompressService.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Public/GrowingDeepLinkHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Public/GrowingDeepLinkHandler.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Public/GrowingDynamicProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Public/GrowingDynamicProxy.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Public/GrowingEncryptionService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Public/GrowingEncryptionService.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Public/GrowingEventDatabaseService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Public/GrowingEventDatabaseService.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Public/GrowingEventFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Public/GrowingEventFilter.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Public/GrowingEventNetworkService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Public/GrowingEventNetworkService.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Public/GrowingEventPersistenceProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Public/GrowingEventPersistenceProtocol.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Public/GrowingFieldsIgnore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Public/GrowingFieldsIgnore.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Public/GrowingFlutterService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Public/GrowingFlutterService.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Public/GrowingModuleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Public/GrowingModuleManager.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Public/GrowingModuleProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Public/GrowingModuleProtocol.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Public/GrowingNetworkConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Public/GrowingNetworkConfig.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Public/GrowingRequestProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Public/GrowingRequestProtocol.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Public/GrowingScreenshotService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Public/GrowingScreenshotService.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Public/GrowingServiceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Public/GrowingServiceManager.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Public/GrowingTrackConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Public/GrowingTrackConfiguration.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Public/GrowingWebSocketService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Public/GrowingWebSocketService.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Thirdparty/Logger/GrowingLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Thirdparty/Logger/GrowingLog.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Thirdparty/Logger/GrowingLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Thirdparty/Logger/GrowingLog.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Thirdparty/Logger/GrowingLogMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Thirdparty/Logger/GrowingLogMacros.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Thirdparty/Logger/GrowingLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Thirdparty/Logger/GrowingLogger.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Thirdparty/Logger/GrowingLoggerNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Thirdparty/Logger/GrowingLoggerNames.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Thirdparty/Logger/GrowingLoggerNames.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Thirdparty/Logger/GrowingLoggerNames.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Thirdparty/Logger/GrowingOSLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Thirdparty/Logger/GrowingOSLogger.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Thirdparty/Logger/GrowingOSLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Thirdparty/Logger/GrowingOSLogger.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Thirdparty/Logger/GrowingWSLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Thirdparty/Logger/GrowingWSLogger.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Thirdparty/Logger/GrowingWSLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Thirdparty/Logger/GrowingWSLogger.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Thirdparty/Reachability/GrowingReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Thirdparty/Reachability/GrowingReachability.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Thirdparty/Reachability/GrowingReachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Thirdparty/Reachability/GrowingReachability.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Thread/GrowingDispatchManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Thread/GrowingDispatchManager.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Thread/GrowingDispatchManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Thread/GrowingDispatchManager.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Thread/GrowingThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Thread/GrowingThread.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Thread/GrowingThread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Thread/GrowingThread.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Timer/GrowingEventTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Timer/GrowingEventTimer.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Timer/GrowingEventTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Timer/GrowingEventTimer.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Utils/GrowingArgumentChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Utils/GrowingArgumentChecker.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Utils/GrowingArgumentChecker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Utils/GrowingArgumentChecker.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Utils/GrowingDeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Utils/GrowingDeviceInfo.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Utils/GrowingDeviceInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Utils/GrowingDeviceInfo.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Utils/GrowingDynamicProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Utils/GrowingDynamicProxy.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Utils/GrowingInternalMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Utils/GrowingInternalMacros.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Utils/GrowingKeyChainWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Utils/GrowingKeyChainWrapper.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Utils/GrowingKeyChainWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Utils/GrowingKeyChainWrapper.m -------------------------------------------------------------------------------- /GrowingTrackerCore/Utils/UserIdentifier/GrowingUserIdentifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Utils/UserIdentifier/GrowingUserIdentifier.h -------------------------------------------------------------------------------- /GrowingTrackerCore/Utils/UserIdentifier/GrowingUserIdentifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/GrowingTrackerCore/Utils/UserIdentifier/GrowingUserIdentifier.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/LICENSE -------------------------------------------------------------------------------- /Modules/ABTesting/GrowingABTExperiment+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/ABTesting/GrowingABTExperiment+Private.h -------------------------------------------------------------------------------- /Modules/ABTesting/GrowingABTExperiment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/ABTesting/GrowingABTExperiment.m -------------------------------------------------------------------------------- /Modules/ABTesting/GrowingABTExperimentStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/ABTesting/GrowingABTExperimentStorage.h -------------------------------------------------------------------------------- /Modules/ABTesting/GrowingABTExperimentStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/ABTesting/GrowingABTExperimentStorage.m -------------------------------------------------------------------------------- /Modules/ABTesting/GrowingABTesting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/ABTesting/GrowingABTesting.m -------------------------------------------------------------------------------- /Modules/ABTesting/Public/GrowingABTExperiment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/ABTesting/Public/GrowingABTExperiment.h -------------------------------------------------------------------------------- /Modules/ABTesting/Public/GrowingABTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/ABTesting/Public/GrowingABTesting.h -------------------------------------------------------------------------------- /Modules/ABTesting/Request/GrowingABTRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/ABTesting/Request/GrowingABTRequest.h -------------------------------------------------------------------------------- /Modules/ABTesting/Request/GrowingABTRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/ABTesting/Request/GrowingABTRequest.m -------------------------------------------------------------------------------- /Modules/ABTesting/Request/GrowingABTRequestAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/ABTesting/Request/GrowingABTRequestAdapter.h -------------------------------------------------------------------------------- /Modules/ABTesting/Request/GrowingABTRequestAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/ABTesting/Request/GrowingABTRequestAdapter.m -------------------------------------------------------------------------------- /Modules/APM/GrowingAPMModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/APM/GrowingAPMModule.m -------------------------------------------------------------------------------- /Modules/APM/Public/GrowingAPMModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/APM/Public/GrowingAPMModule.h -------------------------------------------------------------------------------- /Modules/Advertising/AppleSearchAds/GrowingAsaFetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Advertising/AppleSearchAds/GrowingAsaFetcher.h -------------------------------------------------------------------------------- /Modules/Advertising/AppleSearchAds/GrowingAsaFetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Advertising/AppleSearchAds/GrowingAsaFetcher.m -------------------------------------------------------------------------------- /Modules/Advertising/CAID/GrowingCAIDFetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Advertising/CAID/GrowingCAIDFetcher.h -------------------------------------------------------------------------------- /Modules/Advertising/CAID/GrowingCAIDFetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Advertising/CAID/GrowingCAIDFetcher.m -------------------------------------------------------------------------------- /Modules/Advertising/Event/GrowingActivateEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Advertising/Event/GrowingActivateEvent.h -------------------------------------------------------------------------------- /Modules/Advertising/Event/GrowingActivateEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Advertising/Event/GrowingActivateEvent.m -------------------------------------------------------------------------------- /Modules/Advertising/Event/GrowingAdEventType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Advertising/Event/GrowingAdEventType.h -------------------------------------------------------------------------------- /Modules/Advertising/GrowingAdvertising.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Advertising/GrowingAdvertising.m -------------------------------------------------------------------------------- /Modules/Advertising/Public/GrowingAdvertising.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Advertising/Public/GrowingAdvertising.h -------------------------------------------------------------------------------- /Modules/Advertising/Request/GrowingAdPreRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Advertising/Request/GrowingAdPreRequest.h -------------------------------------------------------------------------------- /Modules/Advertising/Request/GrowingAdPreRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Advertising/Request/GrowingAdPreRequest.m -------------------------------------------------------------------------------- /Modules/Advertising/Request/GrowingAdRequestHeaderAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Advertising/Request/GrowingAdRequestHeaderAdapter.h -------------------------------------------------------------------------------- /Modules/Advertising/Request/GrowingAdRequestHeaderAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Advertising/Request/GrowingAdRequestHeaderAdapter.m -------------------------------------------------------------------------------- /Modules/Advertising/Utils/GrowingAdUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Advertising/Utils/GrowingAdUtils.h -------------------------------------------------------------------------------- /Modules/Advertising/Utils/GrowingAdUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Advertising/Utils/GrowingAdUtils.m -------------------------------------------------------------------------------- /Modules/DefaultServices/GrowingDefaultServicesWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/DefaultServices/GrowingDefaultServicesWrapper.h -------------------------------------------------------------------------------- /Modules/DefaultServices/GrowingDefaultServicesWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/DefaultServices/GrowingDefaultServicesWrapper.m -------------------------------------------------------------------------------- /Modules/DefaultServices/GrowingEventRequestCompressionAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/DefaultServices/GrowingEventRequestCompressionAdapter.h -------------------------------------------------------------------------------- /Modules/DefaultServices/GrowingEventRequestCompressionAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/DefaultServices/GrowingEventRequestCompressionAdapter.m -------------------------------------------------------------------------------- /Modules/DefaultServices/GrowingEventRequestEncryptionAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/DefaultServices/GrowingEventRequestEncryptionAdapter.h -------------------------------------------------------------------------------- /Modules/DefaultServices/GrowingEventRequestEncryptionAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/DefaultServices/GrowingEventRequestEncryptionAdapter.m -------------------------------------------------------------------------------- /Modules/DefaultServices/GrowingEventRequestJSONAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/DefaultServices/GrowingEventRequestJSONAdapter.h -------------------------------------------------------------------------------- /Modules/DefaultServices/GrowingEventRequestJSONAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/DefaultServices/GrowingEventRequestJSONAdapter.m -------------------------------------------------------------------------------- /Modules/DefaultServices/GrowingEventRequestProtobufAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/DefaultServices/GrowingEventRequestProtobufAdapter.h -------------------------------------------------------------------------------- /Modules/DefaultServices/GrowingEventRequestProtobufAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/DefaultServices/GrowingEventRequestProtobufAdapter.m -------------------------------------------------------------------------------- /Modules/DefaultServices/include/Dummy-GrowingModule-DefaultServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/DefaultServices/include/Dummy-GrowingModule-DefaultServices.h -------------------------------------------------------------------------------- /Modules/Flutter/GrowingFlutterPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Flutter/GrowingFlutterPlugin.h -------------------------------------------------------------------------------- /Modules/Flutter/GrowingFlutterPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Flutter/GrowingFlutterPlugin.m -------------------------------------------------------------------------------- /Modules/Flutter/GrowingFlutterWebCircleBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Flutter/GrowingFlutterWebCircleBridge.h -------------------------------------------------------------------------------- /Modules/Flutter/GrowingFlutterWebCircleBridge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Flutter/GrowingFlutterWebCircleBridge.m -------------------------------------------------------------------------------- /Modules/Flutter/include/Dummy-GrowingModule-FlutterPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Flutter/include/Dummy-GrowingModule-FlutterPlugin.h -------------------------------------------------------------------------------- /Modules/Hybrid/Events/GrowingHybridCustomEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/Events/GrowingHybridCustomEvent.h -------------------------------------------------------------------------------- /Modules/Hybrid/Events/GrowingHybridCustomEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/Events/GrowingHybridCustomEvent.m -------------------------------------------------------------------------------- /Modules/Hybrid/Events/GrowingHybridEventType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/Events/GrowingHybridEventType.h -------------------------------------------------------------------------------- /Modules/Hybrid/Events/GrowingHybridEventType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/Events/GrowingHybridEventType.m -------------------------------------------------------------------------------- /Modules/Hybrid/Events/GrowingHybridPageEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/Events/GrowingHybridPageEvent.h -------------------------------------------------------------------------------- /Modules/Hybrid/Events/GrowingHybridPageEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/Events/GrowingHybridPageEvent.m -------------------------------------------------------------------------------- /Modules/Hybrid/Events/GrowingHybridViewElementEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/Events/GrowingHybridViewElementEvent.h -------------------------------------------------------------------------------- /Modules/Hybrid/Events/GrowingHybridViewElementEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/Events/GrowingHybridViewElementEvent.m -------------------------------------------------------------------------------- /Modules/Hybrid/GrowingHybridBridgeProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/GrowingHybridBridgeProvider.h -------------------------------------------------------------------------------- /Modules/Hybrid/GrowingHybridBridgeProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/GrowingHybridBridgeProvider.m -------------------------------------------------------------------------------- /Modules/Hybrid/GrowingHybridModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/GrowingHybridModule.m -------------------------------------------------------------------------------- /Modules/Hybrid/GrowingWKWebViewJavascriptBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/GrowingWKWebViewJavascriptBridge.h -------------------------------------------------------------------------------- /Modules/Hybrid/GrowingWKWebViewJavascriptBridge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/GrowingWKWebViewJavascriptBridge.m -------------------------------------------------------------------------------- /Modules/Hybrid/GrowingWKWebViewJavascriptBridge_JS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/GrowingWKWebViewJavascriptBridge_JS.h -------------------------------------------------------------------------------- /Modules/Hybrid/GrowingWKWebViewJavascriptBridge_JS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/GrowingWKWebViewJavascriptBridge_JS.m -------------------------------------------------------------------------------- /Modules/Hybrid/GrowingWebViewDomChangedDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/GrowingWebViewDomChangedDelegate.h -------------------------------------------------------------------------------- /Modules/Hybrid/GrowingWebViewJavascriptBridgeConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/GrowingWebViewJavascriptBridgeConfiguration.h -------------------------------------------------------------------------------- /Modules/Hybrid/GrowingWebViewJavascriptBridgeConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/GrowingWebViewJavascriptBridgeConfiguration.m -------------------------------------------------------------------------------- /Modules/Hybrid/Public/GrowingHybridModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/Public/GrowingHybridModule.h -------------------------------------------------------------------------------- /Modules/Hybrid/WKWebView+GrowingAutotracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/WKWebView+GrowingAutotracker.h -------------------------------------------------------------------------------- /Modules/Hybrid/WKWebView+GrowingAutotracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/WKWebView+GrowingAutotracker.m -------------------------------------------------------------------------------- /Modules/Hybrid/WKWebView+GrowingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/WKWebView+GrowingNode.h -------------------------------------------------------------------------------- /Modules/Hybrid/WKWebView+GrowingNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/Hybrid/WKWebView+GrowingNode.m -------------------------------------------------------------------------------- /Modules/ImpressionTrack/GrowingImpressionTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/ImpressionTrack/GrowingImpressionTrack.h -------------------------------------------------------------------------------- /Modules/ImpressionTrack/GrowingImpressionTrack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/ImpressionTrack/GrowingImpressionTrack.m -------------------------------------------------------------------------------- /Modules/ImpressionTrack/Public/UIView+GrowingImpression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/ImpressionTrack/Public/UIView+GrowingImpression.h -------------------------------------------------------------------------------- /Modules/ImpressionTrack/UIView+GrowingImpressionInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/ImpressionTrack/UIView+GrowingImpressionInternal.h -------------------------------------------------------------------------------- /Modules/ImpressionTrack/UIView+GrowingImpressionInternal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/ImpressionTrack/UIView+GrowingImpressionInternal.m -------------------------------------------------------------------------------- /Modules/MobileDebugger/GrowingDebuggerEventQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/MobileDebugger/GrowingDebuggerEventQueue.h -------------------------------------------------------------------------------- /Modules/MobileDebugger/GrowingDebuggerEventQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/MobileDebugger/GrowingDebuggerEventQueue.m -------------------------------------------------------------------------------- /Modules/MobileDebugger/GrowingMobileDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/MobileDebugger/GrowingMobileDebugger.h -------------------------------------------------------------------------------- /Modules/MobileDebugger/GrowingMobileDebugger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/MobileDebugger/GrowingMobileDebugger.m -------------------------------------------------------------------------------- /Modules/MobileDebugger/include/Dummy-GrowingModule-MobileDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/MobileDebugger/include/Dummy-GrowingModule-MobileDebugger.h -------------------------------------------------------------------------------- /Modules/UniApp/GrowingUniAppPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/UniApp/GrowingUniAppPlugin.m -------------------------------------------------------------------------------- /Modules/UniApp/Public/GrowingUniAppPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/UniApp/Public/GrowingUniAppPlugin.h -------------------------------------------------------------------------------- /Modules/V2Adapter/GrowingAutoTrackKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/V2Adapter/GrowingAutoTrackKit.m -------------------------------------------------------------------------------- /Modules/V2Adapter/Public/GrowingAutoTrackKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/V2Adapter/Public/GrowingAutoTrackKit.h -------------------------------------------------------------------------------- /Modules/V2AdapterTrackOnly/GrowingCoreKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/V2AdapterTrackOnly/GrowingCoreKit.m -------------------------------------------------------------------------------- /Modules/V2AdapterTrackOnly/GrowingV2Adapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/V2AdapterTrackOnly/GrowingV2Adapter.m -------------------------------------------------------------------------------- /Modules/V2AdapterTrackOnly/Public/Growing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/V2AdapterTrackOnly/Public/Growing.h -------------------------------------------------------------------------------- /Modules/V2AdapterTrackOnly/Public/GrowingCoreKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/V2AdapterTrackOnly/Public/GrowingCoreKit.h -------------------------------------------------------------------------------- /Modules/V2AdapterTrackOnly/Public/GrowingV2Adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/V2AdapterTrackOnly/Public/GrowingV2Adapter.h -------------------------------------------------------------------------------- /Modules/WebCircle/GrowingWebCircle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/WebCircle/GrowingWebCircle.h -------------------------------------------------------------------------------- /Modules/WebCircle/GrowingWebCircle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/WebCircle/GrowingWebCircle.m -------------------------------------------------------------------------------- /Modules/WebCircle/GrowingWebCircleElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/WebCircle/GrowingWebCircleElement.h -------------------------------------------------------------------------------- /Modules/WebCircle/GrowingWebCircleElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/WebCircle/GrowingWebCircleElement.m -------------------------------------------------------------------------------- /Modules/WebCircle/GrowingWebCircleStatusView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/WebCircle/GrowingWebCircleStatusView.h -------------------------------------------------------------------------------- /Modules/WebCircle/GrowingWebCircleStatusView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/WebCircle/GrowingWebCircleStatusView.m -------------------------------------------------------------------------------- /Modules/WebCircle/include/Dummy-GrowingModule-WebCircle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Modules/WebCircle/include/Dummy-GrowingModule-WebCircle.h -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/README.md -------------------------------------------------------------------------------- /Resources/iOS/GrowingAnalytics.bundle/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Resources/iOS/GrowingAnalytics.bundle/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Resources/macOS/GrowingAnalytics.bundle/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Resources/macOS/GrowingAnalytics.bundle/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Resources/tvOS/GrowingAnalytics.bundle/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Resources/tvOS/GrowingAnalytics.bundle/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Resources/visionOS/GrowingAnalytics.bundle/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Resources/visionOS/GrowingAnalytics.bundle/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Resources/watchOS/GrowingAnalytics.bundle/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Resources/watchOS/GrowingAnalytics.bundle/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Services/Compression/GrowingDataCompression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Compression/GrowingDataCompression.h -------------------------------------------------------------------------------- /Services/Compression/GrowingDataCompression.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Compression/GrowingDataCompression.m -------------------------------------------------------------------------------- /Services/Compression/LZ4/GrowingLZ4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Compression/LZ4/GrowingLZ4.c -------------------------------------------------------------------------------- /Services/Compression/LZ4/GrowingLZ4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Compression/LZ4/GrowingLZ4.h -------------------------------------------------------------------------------- /Services/Compression/include/Dummy-GrowingService-Compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Compression/include/Dummy-GrowingService-Compression.h -------------------------------------------------------------------------------- /Services/Database/FMDB/GrowingFMDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Database/FMDB/GrowingFMDB.h -------------------------------------------------------------------------------- /Services/Database/FMDB/GrowingFMDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Database/FMDB/GrowingFMDatabase.h -------------------------------------------------------------------------------- /Services/Database/FMDB/GrowingFMDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Database/FMDB/GrowingFMDatabase.m -------------------------------------------------------------------------------- /Services/Database/FMDB/GrowingFMDatabaseAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Database/FMDB/GrowingFMDatabaseAdditions.h -------------------------------------------------------------------------------- /Services/Database/FMDB/GrowingFMDatabaseAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Database/FMDB/GrowingFMDatabaseAdditions.m -------------------------------------------------------------------------------- /Services/Database/FMDB/GrowingFMDatabasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Database/FMDB/GrowingFMDatabasePool.h -------------------------------------------------------------------------------- /Services/Database/FMDB/GrowingFMDatabasePool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Database/FMDB/GrowingFMDatabasePool.m -------------------------------------------------------------------------------- /Services/Database/FMDB/GrowingFMDatabaseQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Database/FMDB/GrowingFMDatabaseQueue.h -------------------------------------------------------------------------------- /Services/Database/FMDB/GrowingFMDatabaseQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Database/FMDB/GrowingFMDatabaseQueue.m -------------------------------------------------------------------------------- /Services/Database/FMDB/GrowingFMResultSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Database/FMDB/GrowingFMResultSet.h -------------------------------------------------------------------------------- /Services/Database/FMDB/GrowingFMResultSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Database/FMDB/GrowingFMResultSet.m -------------------------------------------------------------------------------- /Services/Database/GrowingEventFMDatabase+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Database/GrowingEventFMDatabase+Private.h -------------------------------------------------------------------------------- /Services/Database/GrowingEventFMDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Database/GrowingEventFMDatabase.h -------------------------------------------------------------------------------- /Services/Database/GrowingEventFMDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Database/GrowingEventFMDatabase.m -------------------------------------------------------------------------------- /Services/Database/include/Dummy-GrowingService-Database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Database/include/Dummy-GrowingService-Database.h -------------------------------------------------------------------------------- /Services/Encryption/GrowingDataEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Encryption/GrowingDataEncoder.h -------------------------------------------------------------------------------- /Services/Encryption/GrowingDataEncoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Encryption/GrowingDataEncoder.m -------------------------------------------------------------------------------- /Services/Encryption/include/Dummy-GrowingService-Encryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Encryption/include/Dummy-GrowingService-Encryption.h -------------------------------------------------------------------------------- /Services/JSON/GrowingEventJSONDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/JSON/GrowingEventJSONDatabase.h -------------------------------------------------------------------------------- /Services/JSON/GrowingEventJSONDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/JSON/GrowingEventJSONDatabase.m -------------------------------------------------------------------------------- /Services/JSON/GrowingEventJSONPersistence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/JSON/GrowingEventJSONPersistence.h -------------------------------------------------------------------------------- /Services/JSON/GrowingEventJSONPersistence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/JSON/GrowingEventJSONPersistence.m -------------------------------------------------------------------------------- /Services/JSON/include/Dummy-GrowingService-JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/JSON/include/Dummy-GrowingService-JSON.h -------------------------------------------------------------------------------- /Services/Network/GrowingNetworkManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Network/GrowingNetworkManager.h -------------------------------------------------------------------------------- /Services/Network/GrowingNetworkManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Network/GrowingNetworkManager.m -------------------------------------------------------------------------------- /Services/Network/GrowingURLSessionDataTaskProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Network/GrowingURLSessionDataTaskProtocol.h -------------------------------------------------------------------------------- /Services/Network/GrowingURLSessionProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Network/GrowingURLSessionProtocol.h -------------------------------------------------------------------------------- /Services/Network/NSURLSession+GrowingURLSessionHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Network/NSURLSession+GrowingURLSessionHelper.h -------------------------------------------------------------------------------- /Services/Network/NSURLSession+GrowingURLSessionHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Network/NSURLSession+GrowingURLSessionHelper.m -------------------------------------------------------------------------------- /Services/Network/NSURLSessionDataTask+GrowingURLSessionDataTaskHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Network/NSURLSessionDataTask+GrowingURLSessionDataTaskHelper.h -------------------------------------------------------------------------------- /Services/Network/NSURLSessionDataTask+GrowingURLSessionDataTaskHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Network/NSURLSessionDataTask+GrowingURLSessionDataTaskHelper.m -------------------------------------------------------------------------------- /Services/Network/include/Dummy-GrowingService-Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Network/include/Dummy-GrowingService-Network.h -------------------------------------------------------------------------------- /Services/Protobuf/Catagory/GrowingBaseEvent+Protobuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Protobuf/Catagory/GrowingBaseEvent+Protobuf.h -------------------------------------------------------------------------------- /Services/Protobuf/Catagory/GrowingBaseEvent+Protobuf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Protobuf/Catagory/GrowingBaseEvent+Protobuf.m -------------------------------------------------------------------------------- /Services/Protobuf/Catagory/GrowingPBEventV3Dto+GrowingHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Protobuf/Catagory/GrowingPBEventV3Dto+GrowingHelper.h -------------------------------------------------------------------------------- /Services/Protobuf/Catagory/GrowingPBEventV3Dto+GrowingHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Protobuf/Catagory/GrowingPBEventV3Dto+GrowingHelper.m -------------------------------------------------------------------------------- /Services/Protobuf/GrowingEventProtobufDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Protobuf/GrowingEventProtobufDatabase.h -------------------------------------------------------------------------------- /Services/Protobuf/GrowingEventProtobufDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Protobuf/GrowingEventProtobufDatabase.m -------------------------------------------------------------------------------- /Services/Protobuf/GrowingEventProtobufPersistence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Protobuf/GrowingEventProtobufPersistence.h -------------------------------------------------------------------------------- /Services/Protobuf/GrowingEventProtobufPersistence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Protobuf/GrowingEventProtobufPersistence.m -------------------------------------------------------------------------------- /Services/Protobuf/Proto/GrowingEvent.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Protobuf/Proto/GrowingEvent.pbobjc.h -------------------------------------------------------------------------------- /Services/Protobuf/Proto/GrowingEvent.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Protobuf/Proto/GrowingEvent.pbobjc.m -------------------------------------------------------------------------------- /Services/Protobuf/Proto/event_v3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Protobuf/Proto/event_v3.proto -------------------------------------------------------------------------------- /Services/Protobuf/Proto/include/Dummy-GrowingService-Protobuf-Proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Protobuf/Proto/include/Dummy-GrowingService-Protobuf-Proto.h -------------------------------------------------------------------------------- /Services/Protobuf/include/Dummy-GrowingService-Protobuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Protobuf/include/Dummy-GrowingService-Protobuf.h -------------------------------------------------------------------------------- /Services/Screenshot/GrowingScreenshotProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Screenshot/GrowingScreenshotProvider.h -------------------------------------------------------------------------------- /Services/Screenshot/GrowingScreenshotProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Screenshot/GrowingScreenshotProvider.m -------------------------------------------------------------------------------- /Services/Screenshot/UIApplication+Screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Screenshot/UIApplication+Screenshot.h -------------------------------------------------------------------------------- /Services/Screenshot/UIApplication+Screenshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Screenshot/UIApplication+Screenshot.m -------------------------------------------------------------------------------- /Services/Screenshot/include/Dummy-GrowingService-Screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/Screenshot/include/Dummy-GrowingService-Screenshot.h -------------------------------------------------------------------------------- /Services/SwiftProtobuf/SwiftProtobuf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/SwiftProtobuf/SwiftProtobuf.swift -------------------------------------------------------------------------------- /Services/SwiftProtobuf/event_v3.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/SwiftProtobuf/event_v3.pb.swift -------------------------------------------------------------------------------- /Services/WebSocket/GrowingSRWebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/WebSocket/GrowingSRWebSocket.h -------------------------------------------------------------------------------- /Services/WebSocket/GrowingSRWebSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/WebSocket/GrowingSRWebSocket.m -------------------------------------------------------------------------------- /Services/WebSocket/include/Dummy-GrowingService-WebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/Services/WebSocket/include/Dummy-GrowingService-WebSocket.h -------------------------------------------------------------------------------- /SwiftPM-Wrap/GrowingAutotracker/Exports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/SwiftPM-Wrap/GrowingAutotracker/Exports.swift -------------------------------------------------------------------------------- /SwiftPM-Wrap/GrowingPrivacy-Wrapper/Resources/GrowingAnalytics.bundle: -------------------------------------------------------------------------------- 1 | ../../../Resources/iOS/GrowingAnalytics.bundle -------------------------------------------------------------------------------- /SwiftPM-Wrap/GrowingPrivacy-Wrapper/dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/SwiftPM-Wrap/GrowingPrivacy-Wrapper/dummy.m -------------------------------------------------------------------------------- /SwiftPM-Wrap/GrowingPrivacy-Wrapper/include/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/SwiftPM-Wrap/GrowingPrivacy-Wrapper/include/dummy.h -------------------------------------------------------------------------------- /SwiftPM-Wrap/GrowingPrivacy-macOS-Wrapper/Resources/GrowingAnalytics.bundle: -------------------------------------------------------------------------------- 1 | ../../../Resources/macOS/GrowingAnalytics.bundle -------------------------------------------------------------------------------- /SwiftPM-Wrap/GrowingPrivacy-macOS-Wrapper/dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/SwiftPM-Wrap/GrowingPrivacy-macOS-Wrapper/dummy.m -------------------------------------------------------------------------------- /SwiftPM-Wrap/GrowingPrivacy-macOS-Wrapper/include/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/SwiftPM-Wrap/GrowingPrivacy-macOS-Wrapper/include/dummy.h -------------------------------------------------------------------------------- /SwiftPM-Wrap/GrowingPrivacy-tvOS-Wrapper/Resources/GrowingAnalytics.bundle: -------------------------------------------------------------------------------- 1 | ../../../Resources/tvOS/GrowingAnalytics.bundle -------------------------------------------------------------------------------- /SwiftPM-Wrap/GrowingPrivacy-tvOS-Wrapper/dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/SwiftPM-Wrap/GrowingPrivacy-tvOS-Wrapper/dummy.m -------------------------------------------------------------------------------- /SwiftPM-Wrap/GrowingPrivacy-tvOS-Wrapper/include/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/SwiftPM-Wrap/GrowingPrivacy-tvOS-Wrapper/include/dummy.h -------------------------------------------------------------------------------- /SwiftPM-Wrap/GrowingPrivacy-visionOS-Wrapper/Resources/GrowingAnalytics.bundle: -------------------------------------------------------------------------------- 1 | ../../../Resources/visionOS/GrowingAnalytics.bundle -------------------------------------------------------------------------------- /SwiftPM-Wrap/GrowingPrivacy-visionOS-Wrapper/dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/SwiftPM-Wrap/GrowingPrivacy-visionOS-Wrapper/dummy.m -------------------------------------------------------------------------------- /SwiftPM-Wrap/GrowingPrivacy-visionOS-Wrapper/include/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/SwiftPM-Wrap/GrowingPrivacy-visionOS-Wrapper/include/dummy.h -------------------------------------------------------------------------------- /SwiftPM-Wrap/GrowingPrivacy-watchOS-Wrapper/Resources/GrowingAnalytics.bundle: -------------------------------------------------------------------------------- 1 | ../../../Resources/watchOS/GrowingAnalytics.bundle -------------------------------------------------------------------------------- /SwiftPM-Wrap/GrowingPrivacy-watchOS-Wrapper/dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/SwiftPM-Wrap/GrowingPrivacy-watchOS-Wrapper/dummy.m -------------------------------------------------------------------------------- /SwiftPM-Wrap/GrowingPrivacy-watchOS-Wrapper/include/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/SwiftPM-Wrap/GrowingPrivacy-watchOS-Wrapper/include/dummy.h -------------------------------------------------------------------------------- /SwiftPM-Wrap/GrowingTracker/Exports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/SwiftPM-Wrap/GrowingTracker/Exports.swift -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/codecov.yml -------------------------------------------------------------------------------- /scripts/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/scripts/Package.swift -------------------------------------------------------------------------------- /scripts/cocoapods-beta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/scripts/cocoapods-beta.sh -------------------------------------------------------------------------------- /scripts/code-checker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/scripts/code-checker.sh -------------------------------------------------------------------------------- /scripts/generate_xcframework.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/scripts/generate_xcframework.sh -------------------------------------------------------------------------------- /scripts/modifyPodsXcodeproj.ruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/scripts/modifyPodsXcodeproj.ruby -------------------------------------------------------------------------------- /scripts/update_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/scripts/update_version.sh -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/growingio/growingio-sdk-ios-autotracker/HEAD/sonar-project.properties --------------------------------------------------------------------------------