├── .gitattributes ├── .gitignore ├── .swift-version ├── CHANGELOG.md ├── Example ├── Gemfile ├── Gemfile.lock ├── HEAnalyticsExample.xcodeproj │ └── project.pbxproj ├── HEAnalyticsExample.xcworkspace │ └── contents.xcworkspacedata ├── HEAnalyticsExample │ ├── AnalyticsPlatformConfig │ │ ├── Debug │ │ │ └── AnalyticsPlatformConfig.plist │ │ └── Release │ │ │ └── AnalyticsPlatformConfig.plist │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── BuildScripts │ │ └── AppBuildPostflight.rb │ ├── FirstViewController.swift │ ├── HEAnalyticsExample-Bridging-Header.h │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── first.imageset │ │ │ ├── Contents.json │ │ │ └── first.pdf │ │ └── second.imageset │ │ │ ├── Contents.json │ │ │ └── second.pdf │ ├── Info.plist │ ├── SampleAnalytics.swift │ └── SecondViewController.swift ├── HEAnalyticsExampleTests │ ├── HEAnalyticsExampleTests.swift │ └── Info.plist ├── Podfile └── Podfile.lock ├── HEAnalytics ├── HEAnalytics.h ├── HEAnalytics.swift ├── HEAnalyticsData.swift ├── HEAnalyticsPlatform.swift ├── HEAnalyticsPlatformFlurry.swift ├── HEAnalyticsPlatformGAI.swift ├── HEAnalyticsPlatformIntercom.swift ├── HEAnalyticsPlatformLocalytics.swift ├── HEAnalyticsPlatformMixpanel.swift ├── HEAnalyticsUser.swift ├── HEJSONHelper.swift └── UIViewController+HEAnalytics.swift ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/Gemfile -------------------------------------------------------------------------------- /Example/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/Gemfile.lock -------------------------------------------------------------------------------- /Example/HEAnalyticsExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/HEAnalyticsExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/HEAnalyticsExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/HEAnalyticsExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/HEAnalyticsExample/AnalyticsPlatformConfig/Debug/AnalyticsPlatformConfig.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/HEAnalyticsExample/AnalyticsPlatformConfig/Debug/AnalyticsPlatformConfig.plist -------------------------------------------------------------------------------- /Example/HEAnalyticsExample/AnalyticsPlatformConfig/Release/AnalyticsPlatformConfig.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/HEAnalyticsExample/AnalyticsPlatformConfig/Release/AnalyticsPlatformConfig.plist -------------------------------------------------------------------------------- /Example/HEAnalyticsExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/HEAnalyticsExample/AppDelegate.swift -------------------------------------------------------------------------------- /Example/HEAnalyticsExample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/HEAnalyticsExample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/HEAnalyticsExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/HEAnalyticsExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/HEAnalyticsExample/BuildScripts/AppBuildPostflight.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/HEAnalyticsExample/BuildScripts/AppBuildPostflight.rb -------------------------------------------------------------------------------- /Example/HEAnalyticsExample/FirstViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/HEAnalyticsExample/FirstViewController.swift -------------------------------------------------------------------------------- /Example/HEAnalyticsExample/HEAnalyticsExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/HEAnalyticsExample/HEAnalyticsExample-Bridging-Header.h -------------------------------------------------------------------------------- /Example/HEAnalyticsExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/HEAnalyticsExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/HEAnalyticsExample/Images.xcassets/first.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/HEAnalyticsExample/Images.xcassets/first.imageset/Contents.json -------------------------------------------------------------------------------- /Example/HEAnalyticsExample/Images.xcassets/first.imageset/first.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/HEAnalyticsExample/Images.xcassets/first.imageset/first.pdf -------------------------------------------------------------------------------- /Example/HEAnalyticsExample/Images.xcassets/second.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/HEAnalyticsExample/Images.xcassets/second.imageset/Contents.json -------------------------------------------------------------------------------- /Example/HEAnalyticsExample/Images.xcassets/second.imageset/second.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/HEAnalyticsExample/Images.xcassets/second.imageset/second.pdf -------------------------------------------------------------------------------- /Example/HEAnalyticsExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/HEAnalyticsExample/Info.plist -------------------------------------------------------------------------------- /Example/HEAnalyticsExample/SampleAnalytics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/HEAnalyticsExample/SampleAnalytics.swift -------------------------------------------------------------------------------- /Example/HEAnalyticsExample/SecondViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/HEAnalyticsExample/SecondViewController.swift -------------------------------------------------------------------------------- /Example/HEAnalyticsExampleTests/HEAnalyticsExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/HEAnalyticsExampleTests/HEAnalyticsExampleTests.swift -------------------------------------------------------------------------------- /Example/HEAnalyticsExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/HEAnalyticsExampleTests/Info.plist -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /HEAnalytics/HEAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/HEAnalytics/HEAnalytics.h -------------------------------------------------------------------------------- /HEAnalytics/HEAnalytics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/HEAnalytics/HEAnalytics.swift -------------------------------------------------------------------------------- /HEAnalytics/HEAnalyticsData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/HEAnalytics/HEAnalyticsData.swift -------------------------------------------------------------------------------- /HEAnalytics/HEAnalyticsPlatform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/HEAnalytics/HEAnalyticsPlatform.swift -------------------------------------------------------------------------------- /HEAnalytics/HEAnalyticsPlatformFlurry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/HEAnalytics/HEAnalyticsPlatformFlurry.swift -------------------------------------------------------------------------------- /HEAnalytics/HEAnalyticsPlatformGAI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/HEAnalytics/HEAnalyticsPlatformGAI.swift -------------------------------------------------------------------------------- /HEAnalytics/HEAnalyticsPlatformIntercom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/HEAnalytics/HEAnalyticsPlatformIntercom.swift -------------------------------------------------------------------------------- /HEAnalytics/HEAnalyticsPlatformLocalytics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/HEAnalytics/HEAnalyticsPlatformLocalytics.swift -------------------------------------------------------------------------------- /HEAnalytics/HEAnalyticsPlatformMixpanel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/HEAnalytics/HEAnalyticsPlatformMixpanel.swift -------------------------------------------------------------------------------- /HEAnalytics/HEAnalyticsUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/HEAnalytics/HEAnalyticsUser.swift -------------------------------------------------------------------------------- /HEAnalytics/HEJSONHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/HEAnalytics/HEJSONHelper.swift -------------------------------------------------------------------------------- /HEAnalytics/UIViewController+HEAnalytics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/HEAnalytics/UIViewController+HEAnalytics.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HsoiEnterprises/HEAnalytics/HEAD/README.md --------------------------------------------------------------------------------