├── .gitignore ├── AppAttributionDemo ├── AppAttributionDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── AppAttributionDemo.xcscheme ├── AppAttributionDemo.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── AppAttributionDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── Podfile └── Podfile.lock ├── Docs ├── UniversalLink.md └── images │ └── apple_prefix_id.png └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLinkSDK/client-sdk-swift/HEAD/.gitignore -------------------------------------------------------------------------------- /AppAttributionDemo/AppAttributionDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLinkSDK/client-sdk-swift/HEAD/AppAttributionDemo/AppAttributionDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AppAttributionDemo/AppAttributionDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLinkSDK/client-sdk-swift/HEAD/AppAttributionDemo/AppAttributionDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AppAttributionDemo/AppAttributionDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLinkSDK/client-sdk-swift/HEAD/AppAttributionDemo/AppAttributionDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AppAttributionDemo/AppAttributionDemo.xcodeproj/xcshareddata/xcschemes/AppAttributionDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLinkSDK/client-sdk-swift/HEAD/AppAttributionDemo/AppAttributionDemo.xcodeproj/xcshareddata/xcschemes/AppAttributionDemo.xcscheme -------------------------------------------------------------------------------- /AppAttributionDemo/AppAttributionDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLinkSDK/client-sdk-swift/HEAD/AppAttributionDemo/AppAttributionDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AppAttributionDemo/AppAttributionDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLinkSDK/client-sdk-swift/HEAD/AppAttributionDemo/AppAttributionDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AppAttributionDemo/AppAttributionDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLinkSDK/client-sdk-swift/HEAD/AppAttributionDemo/AppAttributionDemo/AppDelegate.swift -------------------------------------------------------------------------------- /AppAttributionDemo/AppAttributionDemo/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLinkSDK/client-sdk-swift/HEAD/AppAttributionDemo/AppAttributionDemo/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /AppAttributionDemo/AppAttributionDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLinkSDK/client-sdk-swift/HEAD/AppAttributionDemo/AppAttributionDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AppAttributionDemo/AppAttributionDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLinkSDK/client-sdk-swift/HEAD/AppAttributionDemo/AppAttributionDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AppAttributionDemo/AppAttributionDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLinkSDK/client-sdk-swift/HEAD/AppAttributionDemo/AppAttributionDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AppAttributionDemo/AppAttributionDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLinkSDK/client-sdk-swift/HEAD/AppAttributionDemo/AppAttributionDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AppAttributionDemo/AppAttributionDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLinkSDK/client-sdk-swift/HEAD/AppAttributionDemo/AppAttributionDemo/Info.plist -------------------------------------------------------------------------------- /AppAttributionDemo/AppAttributionDemo/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLinkSDK/client-sdk-swift/HEAD/AppAttributionDemo/AppAttributionDemo/SceneDelegate.swift -------------------------------------------------------------------------------- /AppAttributionDemo/AppAttributionDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLinkSDK/client-sdk-swift/HEAD/AppAttributionDemo/AppAttributionDemo/ViewController.swift -------------------------------------------------------------------------------- /AppAttributionDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLinkSDK/client-sdk-swift/HEAD/AppAttributionDemo/Podfile -------------------------------------------------------------------------------- /AppAttributionDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLinkSDK/client-sdk-swift/HEAD/AppAttributionDemo/Podfile.lock -------------------------------------------------------------------------------- /Docs/UniversalLink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLinkSDK/client-sdk-swift/HEAD/Docs/UniversalLink.md -------------------------------------------------------------------------------- /Docs/images/apple_prefix_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLinkSDK/client-sdk-swift/HEAD/Docs/images/apple_prefix_id.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLinkSDK/client-sdk-swift/HEAD/README.md --------------------------------------------------------------------------------