├── .gitignore ├── .swift-version ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── CHANGELOG.md ├── DailymotionPlayerSDK.podspec ├── DailymotionPlayerSDK.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── DailymotionPlayerSDK.xcscheme ├── DailymotionPlayerSDK ├── DMPlayerViewController.swift ├── DailymotionPlayerSDK.h ├── EventParser.swift ├── Info.plist ├── StringExtensions.swift └── omsdk-v1.js ├── DailymotionPlayerSDKTests ├── EventParserTests.swift └── Info.plist ├── Example ├── Player Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Player Example.xcscheme ├── Player Example.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Player Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ShareActivityItemProvider.swift │ ├── UIView+DMAdditions.swift │ └── ViewController.swift ├── Podfile └── Podfile.lock ├── LICENSE ├── OMSDK_Dailymotion.xcframework ├── Info.plist ├── ios-arm64_armv7 │ └── OMSDK_Dailymotion.framework │ │ ├── Headers │ │ ├── OMIDAdEvents.h │ │ ├── OMIDAdSession.h │ │ ├── OMIDAdSessionConfiguration.h │ │ ├── OMIDAdSessionContext.h │ │ ├── OMIDFriendlyObstructionType.h │ │ ├── OMIDImports.h │ │ ├── OMIDMediaEvents.h │ │ ├── OMIDPartner.h │ │ ├── OMIDSDK.h │ │ ├── OMIDScriptInjector.h │ │ ├── OMIDVASTProperties.h │ │ ├── OMIDVerificationScriptResource.h │ │ └── OMSDK.h │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ └── OMSDK_Dailymotion └── ios-arm64_i386_x86_64-simulator │ └── OMSDK_Dailymotion.framework │ ├── Headers │ ├── OMIDAdEvents.h │ ├── OMIDAdSession.h │ ├── OMIDAdSessionConfiguration.h │ ├── OMIDAdSessionContext.h │ ├── OMIDFriendlyObstructionType.h │ ├── OMIDImports.h │ ├── OMIDMediaEvents.h │ ├── OMIDPartner.h │ ├── OMIDSDK.h │ ├── OMIDScriptInjector.h │ ├── OMIDVASTProperties.h │ ├── OMIDVerificationScriptResource.h │ └── OMSDK.h │ ├── Info.plist │ ├── Modules │ └── module.modulemap │ ├── OMSDK_Dailymotion │ └── _CodeSignature │ └── CodeResources ├── Package.swift ├── README.md └── StringExtensions.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 2 | -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DailymotionPlayerSDK.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/DailymotionPlayerSDK.podspec -------------------------------------------------------------------------------- /DailymotionPlayerSDK.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/DailymotionPlayerSDK.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DailymotionPlayerSDK.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/DailymotionPlayerSDK.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DailymotionPlayerSDK.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/DailymotionPlayerSDK.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /DailymotionPlayerSDK.xcodeproj/xcshareddata/xcschemes/DailymotionPlayerSDK.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/DailymotionPlayerSDK.xcodeproj/xcshareddata/xcschemes/DailymotionPlayerSDK.xcscheme -------------------------------------------------------------------------------- /DailymotionPlayerSDK/DMPlayerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/DailymotionPlayerSDK/DMPlayerViewController.swift -------------------------------------------------------------------------------- /DailymotionPlayerSDK/DailymotionPlayerSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/DailymotionPlayerSDK/DailymotionPlayerSDK.h -------------------------------------------------------------------------------- /DailymotionPlayerSDK/EventParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/DailymotionPlayerSDK/EventParser.swift -------------------------------------------------------------------------------- /DailymotionPlayerSDK/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/DailymotionPlayerSDK/Info.plist -------------------------------------------------------------------------------- /DailymotionPlayerSDK/StringExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/DailymotionPlayerSDK/StringExtensions.swift -------------------------------------------------------------------------------- /DailymotionPlayerSDK/omsdk-v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/DailymotionPlayerSDK/omsdk-v1.js -------------------------------------------------------------------------------- /DailymotionPlayerSDKTests/EventParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/DailymotionPlayerSDKTests/EventParserTests.swift -------------------------------------------------------------------------------- /DailymotionPlayerSDKTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/DailymotionPlayerSDKTests/Info.plist -------------------------------------------------------------------------------- /Example/Player Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/Example/Player Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Player Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/Example/Player Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Player Example.xcodeproj/xcshareddata/xcschemes/Player Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/Example/Player Example.xcodeproj/xcshareddata/xcschemes/Player Example.xcscheme -------------------------------------------------------------------------------- /Example/Player Example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/Example/Player Example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Player Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/Example/Player Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Player Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/Example/Player Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Player Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/Example/Player Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Player Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/Example/Player Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Player Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/Example/Player Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Player Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/Example/Player Example/Info.plist -------------------------------------------------------------------------------- /Example/Player Example/ShareActivityItemProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/Example/Player Example/ShareActivityItemProvider.swift -------------------------------------------------------------------------------- /Example/Player Example/UIView+DMAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/Example/Player Example/UIView+DMAdditions.swift -------------------------------------------------------------------------------- /Example/Player Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/Example/Player Example/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/Info.plist -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDAdEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDAdEvents.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDAdSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDAdSession.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDAdSessionConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDAdSessionConfiguration.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDAdSessionContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDAdSessionContext.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDFriendlyObstructionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDFriendlyObstructionType.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDImports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDImports.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDMediaEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDMediaEvents.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDPartner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDPartner.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDSDK.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDScriptInjector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDScriptInjector.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDVASTProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDVASTProperties.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDVerificationScriptResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMIDVerificationScriptResource.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Headers/OMSDK.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Info.plist -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/OMSDK_Dailymotion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_armv7/OMSDK_Dailymotion.framework/OMSDK_Dailymotion -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDAdEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDAdEvents.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDAdSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDAdSession.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDAdSessionConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDAdSessionConfiguration.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDAdSessionContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDAdSessionContext.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDFriendlyObstructionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDFriendlyObstructionType.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDImports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDImports.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDMediaEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDMediaEvents.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDPartner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDPartner.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDSDK.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDScriptInjector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDScriptInjector.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDVASTProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDVASTProperties.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDVerificationScriptResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMIDVerificationScriptResource.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Headers/OMSDK.h -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Info.plist -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/OMSDK_Dailymotion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/OMSDK_Dailymotion -------------------------------------------------------------------------------- /OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/OMSDK_Dailymotion.xcframework/ios-arm64_i386_x86_64-simulator/OMSDK_Dailymotion.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/README.md -------------------------------------------------------------------------------- /StringExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/dailymotion-swift-player-sdk-ios/HEAD/StringExtensions.swift --------------------------------------------------------------------------------