├── .circleci └── config.yml ├── .gitignore ├── CHANGELOG.md ├── Cartfile ├── Cartfile.resolved ├── CarthageExample ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── SceneDelegate.h ├── SceneDelegate.m ├── ViewController.h ├── ViewController.m └── main.m ├── Example ├── .gitignore ├── Podfile ├── Podfile.lock ├── Segment-Amplitude.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Segment-Amplitude_Example.xcscheme ├── Segment-Amplitude.xcworkspace │ └── contents.xcworkspacedata ├── Segment-Amplitude │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Main.storyboard │ ├── SEGAppDelegate.h │ ├── SEGAppDelegate.m │ ├── SEGViewController.h │ ├── SEGViewController.m │ ├── Segment-Amplitude-Info.plist │ ├── Segment-Amplitude-Prefix.pch │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m └── Tests │ ├── TestSetupBlock.m │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── Makefile ├── Package.swift ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── SEGAmplitudeIntegration.h │ ├── SEGAmplitudeIntegration.m │ ├── SEGAmplitudeIntegrationFactory.h │ └── SEGAmplitudeIntegrationFactory.m ├── README.md ├── RELEASING.md ├── Segment-Amplitude.podspec ├── Segment-Amplitude.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── Segment-Amplitude.xcscheme ├── Segment-Amplitude ├── Info.plist └── Segment_Amplitude.h └── _Pods.xcodeproj /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Cartfile -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /CarthageExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/CarthageExample/AppDelegate.h -------------------------------------------------------------------------------- /CarthageExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/CarthageExample/AppDelegate.m -------------------------------------------------------------------------------- /CarthageExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/CarthageExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CarthageExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/CarthageExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CarthageExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/CarthageExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CarthageExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/CarthageExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CarthageExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/CarthageExample/Info.plist -------------------------------------------------------------------------------- /CarthageExample/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/CarthageExample/SceneDelegate.h -------------------------------------------------------------------------------- /CarthageExample/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/CarthageExample/SceneDelegate.m -------------------------------------------------------------------------------- /CarthageExample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/CarthageExample/ViewController.h -------------------------------------------------------------------------------- /CarthageExample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/CarthageExample/ViewController.m -------------------------------------------------------------------------------- /CarthageExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/CarthageExample/main.m -------------------------------------------------------------------------------- /Example/.gitignore: -------------------------------------------------------------------------------- 1 | xcshareddata 2 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Segment-Amplitude.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Example/Segment-Amplitude.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Segment-Amplitude.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Example/Segment-Amplitude.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Segment-Amplitude.xcodeproj/xcshareddata/xcschemes/Segment-Amplitude_Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Example/Segment-Amplitude.xcodeproj/xcshareddata/xcschemes/Segment-Amplitude_Example.xcscheme -------------------------------------------------------------------------------- /Example/Segment-Amplitude.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Example/Segment-Amplitude.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Segment-Amplitude/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Example/Segment-Amplitude/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Segment-Amplitude/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Example/Segment-Amplitude/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/Segment-Amplitude/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Example/Segment-Amplitude/Main.storyboard -------------------------------------------------------------------------------- /Example/Segment-Amplitude/SEGAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Example/Segment-Amplitude/SEGAppDelegate.h -------------------------------------------------------------------------------- /Example/Segment-Amplitude/SEGAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Example/Segment-Amplitude/SEGAppDelegate.m -------------------------------------------------------------------------------- /Example/Segment-Amplitude/SEGViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Example/Segment-Amplitude/SEGViewController.h -------------------------------------------------------------------------------- /Example/Segment-Amplitude/SEGViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Example/Segment-Amplitude/SEGViewController.m -------------------------------------------------------------------------------- /Example/Segment-Amplitude/Segment-Amplitude-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Example/Segment-Amplitude/Segment-Amplitude-Info.plist -------------------------------------------------------------------------------- /Example/Segment-Amplitude/Segment-Amplitude-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Example/Segment-Amplitude/Segment-Amplitude-Prefix.pch -------------------------------------------------------------------------------- /Example/Segment-Amplitude/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Segment-Amplitude/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Example/Segment-Amplitude/main.m -------------------------------------------------------------------------------- /Example/Tests/TestSetupBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Example/Tests/TestSetupBlock.m -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Makefile -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Package.swift -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/SEGAmplitudeIntegration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Pod/Classes/SEGAmplitudeIntegration.h -------------------------------------------------------------------------------- /Pod/Classes/SEGAmplitudeIntegration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Pod/Classes/SEGAmplitudeIntegration.m -------------------------------------------------------------------------------- /Pod/Classes/SEGAmplitudeIntegrationFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Pod/Classes/SEGAmplitudeIntegrationFactory.h -------------------------------------------------------------------------------- /Pod/Classes/SEGAmplitudeIntegrationFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Pod/Classes/SEGAmplitudeIntegrationFactory.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/RELEASING.md -------------------------------------------------------------------------------- /Segment-Amplitude.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Segment-Amplitude.podspec -------------------------------------------------------------------------------- /Segment-Amplitude.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Segment-Amplitude.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Segment-Amplitude.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Segment-Amplitude.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Segment-Amplitude.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Segment-Amplitude.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Segment-Amplitude.xcodeproj/xcshareddata/xcschemes/Segment-Amplitude.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Segment-Amplitude.xcodeproj/xcshareddata/xcschemes/Segment-Amplitude.xcscheme -------------------------------------------------------------------------------- /Segment-Amplitude/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Segment-Amplitude/Info.plist -------------------------------------------------------------------------------- /Segment-Amplitude/Segment_Amplitude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/analytics-ios-integration-amplitude/HEAD/Segment-Amplitude/Segment_Amplitude.h -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------