├── Podfile ├── README.md ├── VideoPlayerExample.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── andrii.golovin.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── andrii.golovin.xcuserdatad │ └── xcschemes │ ├── VideoPlayerExample.xcscheme │ └── xcschememanagement.plist └── VideoPlayerExample ├── AGVideoPlayerView ├── AGVideoPlayerView.swift └── LICENSE.md ├── AppDelegate.swift ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json ├── Contents.json └── video_player_play_icon.imageset │ ├── Contents.json │ └── video_player_play_icon.pdf ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist └── ViewController.swift /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AG-iOS/AGVideoPlayerView/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AG-iOS/AGVideoPlayerView/HEAD/README.md -------------------------------------------------------------------------------- /VideoPlayerExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AG-iOS/AGVideoPlayerView/HEAD/VideoPlayerExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VideoPlayerExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AG-iOS/AGVideoPlayerView/HEAD/VideoPlayerExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VideoPlayerExample.xcodeproj/project.xcworkspace/xcuserdata/andrii.golovin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AG-iOS/AGVideoPlayerView/HEAD/VideoPlayerExample.xcodeproj/project.xcworkspace/xcuserdata/andrii.golovin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /VideoPlayerExample.xcodeproj/xcuserdata/andrii.golovin.xcuserdatad/xcschemes/VideoPlayerExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AG-iOS/AGVideoPlayerView/HEAD/VideoPlayerExample.xcodeproj/xcuserdata/andrii.golovin.xcuserdatad/xcschemes/VideoPlayerExample.xcscheme -------------------------------------------------------------------------------- /VideoPlayerExample.xcodeproj/xcuserdata/andrii.golovin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AG-iOS/AGVideoPlayerView/HEAD/VideoPlayerExample.xcodeproj/xcuserdata/andrii.golovin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /VideoPlayerExample/AGVideoPlayerView/AGVideoPlayerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AG-iOS/AGVideoPlayerView/HEAD/VideoPlayerExample/AGVideoPlayerView/AGVideoPlayerView.swift -------------------------------------------------------------------------------- /VideoPlayerExample/AGVideoPlayerView/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AG-iOS/AGVideoPlayerView/HEAD/VideoPlayerExample/AGVideoPlayerView/LICENSE.md -------------------------------------------------------------------------------- /VideoPlayerExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AG-iOS/AGVideoPlayerView/HEAD/VideoPlayerExample/AppDelegate.swift -------------------------------------------------------------------------------- /VideoPlayerExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AG-iOS/AGVideoPlayerView/HEAD/VideoPlayerExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /VideoPlayerExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AG-iOS/AGVideoPlayerView/HEAD/VideoPlayerExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /VideoPlayerExample/Assets.xcassets/video_player_play_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AG-iOS/AGVideoPlayerView/HEAD/VideoPlayerExample/Assets.xcassets/video_player_play_icon.imageset/Contents.json -------------------------------------------------------------------------------- /VideoPlayerExample/Assets.xcassets/video_player_play_icon.imageset/video_player_play_icon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AG-iOS/AGVideoPlayerView/HEAD/VideoPlayerExample/Assets.xcassets/video_player_play_icon.imageset/video_player_play_icon.pdf -------------------------------------------------------------------------------- /VideoPlayerExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AG-iOS/AGVideoPlayerView/HEAD/VideoPlayerExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /VideoPlayerExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AG-iOS/AGVideoPlayerView/HEAD/VideoPlayerExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /VideoPlayerExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AG-iOS/AGVideoPlayerView/HEAD/VideoPlayerExample/Info.plist -------------------------------------------------------------------------------- /VideoPlayerExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AG-iOS/AGVideoPlayerView/HEAD/VideoPlayerExample/ViewController.swift --------------------------------------------------------------------------------