├── .github ├── ISSUE_TEMPLATE │ └── config.yml ├── bash_scripts │ ├── podfile_creation.sh │ ├── pre_release.sh │ └── release.sh └── workflows │ ├── close_inactive_issues.yml │ ├── prepare-for-QA-and-release.yml │ ├── prepare-for-release-workflow.yml │ ├── release-QA-workflow.yml │ ├── release-production-workflow.yml │ ├── responseToSupportIssue.yml │ ├── responseToSupportIssueOnOpen.yml │ └── unit-tests-workflow.yml ├── .gitignore ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── RELEASENOTES.md ├── SegmentAppsFlyeriOSTests ├── SEGAppsFlyerIntegrationFactoryTests.swift ├── SEGAppsFlyerIntegrationTests.m └── SegmentAppsFlyeriOSTests-Bridging-Header.h ├── examples ├── ObjcPodsSample │ ├── ObjcPodsSample.xcodeproj │ │ └── project.pbxproj │ ├── ObjcPodsSample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── SceneDelegate.h │ │ ├── SceneDelegate.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ └── Podfile └── SwiftPodsSample │ ├── Podfile │ ├── SwiftPodsSample.xcodeproj │ └── project.pbxproj │ └── SwiftPodsSample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SwiftPodsSample-Bridging-Header.h │ ├── SwiftPodsSample.entitlements │ └── ViewController.swift ├── segment-appsflyer-ios.podspec ├── segment-appsflyer-ios.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── SegmentAppsFlyeriOSTests.xcscheme │ └── segment-appsflyer-ios.xcscheme └── segment-appsflyer-ios ├── Classes ├── SEGAppsFlyerIntegration.h ├── SEGAppsFlyerIntegration.m ├── SEGAppsFlyerIntegrationFactory.h ├── SEGAppsFlyerIntegrationFactory.m └── SegmentAppsFlyeriOS.h └── Info.plist /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/bash_scripts/podfile_creation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/.github/bash_scripts/podfile_creation.sh -------------------------------------------------------------------------------- /.github/bash_scripts/pre_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/.github/bash_scripts/pre_release.sh -------------------------------------------------------------------------------- /.github/bash_scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/.github/bash_scripts/release.sh -------------------------------------------------------------------------------- /.github/workflows/close_inactive_issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/.github/workflows/close_inactive_issues.yml -------------------------------------------------------------------------------- /.github/workflows/prepare-for-QA-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/.github/workflows/prepare-for-QA-and-release.yml -------------------------------------------------------------------------------- /.github/workflows/prepare-for-release-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/.github/workflows/prepare-for-release-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/release-QA-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/.github/workflows/release-QA-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/release-production-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/.github/workflows/release-production-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/responseToSupportIssue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/.github/workflows/responseToSupportIssue.yml -------------------------------------------------------------------------------- /.github/workflows/responseToSupportIssueOnOpen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/.github/workflows/responseToSupportIssueOnOpen.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/.github/workflows/unit-tests-workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/README.md -------------------------------------------------------------------------------- /RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/RELEASENOTES.md -------------------------------------------------------------------------------- /SegmentAppsFlyeriOSTests/SEGAppsFlyerIntegrationFactoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/SegmentAppsFlyeriOSTests/SEGAppsFlyerIntegrationFactoryTests.swift -------------------------------------------------------------------------------- /SegmentAppsFlyeriOSTests/SEGAppsFlyerIntegrationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/SegmentAppsFlyeriOSTests/SEGAppsFlyerIntegrationTests.m -------------------------------------------------------------------------------- /SegmentAppsFlyeriOSTests/SegmentAppsFlyeriOSTests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/SegmentAppsFlyeriOSTests/SegmentAppsFlyeriOSTests-Bridging-Header.h -------------------------------------------------------------------------------- /examples/ObjcPodsSample/ObjcPodsSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/ObjcPodsSample/ObjcPodsSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/ObjcPodsSample/ObjcPodsSample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/ObjcPodsSample/ObjcPodsSample/AppDelegate.h -------------------------------------------------------------------------------- /examples/ObjcPodsSample/ObjcPodsSample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/ObjcPodsSample/ObjcPodsSample/AppDelegate.m -------------------------------------------------------------------------------- /examples/ObjcPodsSample/ObjcPodsSample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/ObjcPodsSample/ObjcPodsSample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /examples/ObjcPodsSample/ObjcPodsSample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/ObjcPodsSample/ObjcPodsSample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/ObjcPodsSample/ObjcPodsSample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/ObjcPodsSample/ObjcPodsSample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/ObjcPodsSample/ObjcPodsSample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/ObjcPodsSample/ObjcPodsSample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/ObjcPodsSample/ObjcPodsSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/ObjcPodsSample/ObjcPodsSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /examples/ObjcPodsSample/ObjcPodsSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/ObjcPodsSample/ObjcPodsSample/Info.plist -------------------------------------------------------------------------------- /examples/ObjcPodsSample/ObjcPodsSample/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/ObjcPodsSample/ObjcPodsSample/SceneDelegate.h -------------------------------------------------------------------------------- /examples/ObjcPodsSample/ObjcPodsSample/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/ObjcPodsSample/ObjcPodsSample/SceneDelegate.m -------------------------------------------------------------------------------- /examples/ObjcPodsSample/ObjcPodsSample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/ObjcPodsSample/ObjcPodsSample/ViewController.h -------------------------------------------------------------------------------- /examples/ObjcPodsSample/ObjcPodsSample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/ObjcPodsSample/ObjcPodsSample/ViewController.m -------------------------------------------------------------------------------- /examples/ObjcPodsSample/ObjcPodsSample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/ObjcPodsSample/ObjcPodsSample/main.m -------------------------------------------------------------------------------- /examples/ObjcPodsSample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/ObjcPodsSample/Podfile -------------------------------------------------------------------------------- /examples/SwiftPodsSample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/SwiftPodsSample/Podfile -------------------------------------------------------------------------------- /examples/SwiftPodsSample/SwiftPodsSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/SwiftPodsSample/SwiftPodsSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/SwiftPodsSample/SwiftPodsSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/SwiftPodsSample/SwiftPodsSample/AppDelegate.swift -------------------------------------------------------------------------------- /examples/SwiftPodsSample/SwiftPodsSample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/SwiftPodsSample/SwiftPodsSample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /examples/SwiftPodsSample/SwiftPodsSample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/SwiftPodsSample/SwiftPodsSample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/SwiftPodsSample/SwiftPodsSample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/SwiftPodsSample/SwiftPodsSample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/SwiftPodsSample/SwiftPodsSample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/SwiftPodsSample/SwiftPodsSample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/SwiftPodsSample/SwiftPodsSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/SwiftPodsSample/SwiftPodsSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /examples/SwiftPodsSample/SwiftPodsSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/SwiftPodsSample/SwiftPodsSample/Info.plist -------------------------------------------------------------------------------- /examples/SwiftPodsSample/SwiftPodsSample/SwiftPodsSample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/SwiftPodsSample/SwiftPodsSample/SwiftPodsSample-Bridging-Header.h -------------------------------------------------------------------------------- /examples/SwiftPodsSample/SwiftPodsSample/SwiftPodsSample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/SwiftPodsSample/SwiftPodsSample/SwiftPodsSample.entitlements -------------------------------------------------------------------------------- /examples/SwiftPodsSample/SwiftPodsSample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/examples/SwiftPodsSample/SwiftPodsSample/ViewController.swift -------------------------------------------------------------------------------- /segment-appsflyer-ios.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/segment-appsflyer-ios.podspec -------------------------------------------------------------------------------- /segment-appsflyer-ios.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/segment-appsflyer-ios.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /segment-appsflyer-ios.xcodeproj/xcshareddata/xcschemes/SegmentAppsFlyeriOSTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/segment-appsflyer-ios.xcodeproj/xcshareddata/xcschemes/SegmentAppsFlyeriOSTests.xcscheme -------------------------------------------------------------------------------- /segment-appsflyer-ios.xcodeproj/xcshareddata/xcschemes/segment-appsflyer-ios.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/segment-appsflyer-ios.xcodeproj/xcshareddata/xcschemes/segment-appsflyer-ios.xcscheme -------------------------------------------------------------------------------- /segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.h -------------------------------------------------------------------------------- /segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.m -------------------------------------------------------------------------------- /segment-appsflyer-ios/Classes/SEGAppsFlyerIntegrationFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/segment-appsflyer-ios/Classes/SEGAppsFlyerIntegrationFactory.h -------------------------------------------------------------------------------- /segment-appsflyer-ios/Classes/SEGAppsFlyerIntegrationFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/segment-appsflyer-ios/Classes/SEGAppsFlyerIntegrationFactory.m -------------------------------------------------------------------------------- /segment-appsflyer-ios/Classes/SegmentAppsFlyeriOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/segment-appsflyer-ios/Classes/SegmentAppsFlyeriOS.h -------------------------------------------------------------------------------- /segment-appsflyer-ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppsFlyerSDK/segment-appsflyer-ios/HEAD/segment-appsflyer-ios/Info.plist --------------------------------------------------------------------------------