├── KVideoPlayer.xcodeproj └── project.pbxproj ├── KVideoPlayer ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift ├── LICENSE └── README.md /KVideoPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KVideoPlayer/HEAD/KVideoPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KVideoPlayer/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KVideoPlayer/HEAD/KVideoPlayer/AppDelegate.swift -------------------------------------------------------------------------------- /KVideoPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KVideoPlayer/HEAD/KVideoPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /KVideoPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KVideoPlayer/HEAD/KVideoPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /KVideoPlayer/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KVideoPlayer/HEAD/KVideoPlayer/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /KVideoPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KVideoPlayer/HEAD/KVideoPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /KVideoPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KVideoPlayer/HEAD/KVideoPlayer/Info.plist -------------------------------------------------------------------------------- /KVideoPlayer/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KVideoPlayer/HEAD/KVideoPlayer/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KVideoPlayer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnads/KVideoPlayer/HEAD/README.md --------------------------------------------------------------------------------