├── .DS_Store ├── .gitignore ├── AWEasyVideoPlayer.podspec ├── AWEasyVideoPlayer ├── AWEasyVideoPlayer.h └── AWEasyVideoPlayer.m ├── Example ├── AWEasyVideoPlayer.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── AWEasyVideoPlayer │ ├── AWAppDelegate.h │ ├── AWAppDelegate.m │ ├── AWEasyVideoPlayer-Info.plist │ ├── AWEasyVideoPlayer-Prefix.pch │ ├── AWViewController.h │ ├── AWViewController.m │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m └── AWEasyVideoPlayerTests │ ├── AWEasyVideoPlayerTests-Info.plist │ ├── AWEasyVideoPlayerTests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awojnowski/AWEasyVideoPlayer/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awojnowski/AWEasyVideoPlayer/HEAD/.gitignore -------------------------------------------------------------------------------- /AWEasyVideoPlayer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awojnowski/AWEasyVideoPlayer/HEAD/AWEasyVideoPlayer.podspec -------------------------------------------------------------------------------- /AWEasyVideoPlayer/AWEasyVideoPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awojnowski/AWEasyVideoPlayer/HEAD/AWEasyVideoPlayer/AWEasyVideoPlayer.h -------------------------------------------------------------------------------- /AWEasyVideoPlayer/AWEasyVideoPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awojnowski/AWEasyVideoPlayer/HEAD/AWEasyVideoPlayer/AWEasyVideoPlayer.m -------------------------------------------------------------------------------- /Example/AWEasyVideoPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awojnowski/AWEasyVideoPlayer/HEAD/Example/AWEasyVideoPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/AWEasyVideoPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awojnowski/AWEasyVideoPlayer/HEAD/Example/AWEasyVideoPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/AWEasyVideoPlayer/AWAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awojnowski/AWEasyVideoPlayer/HEAD/Example/AWEasyVideoPlayer/AWAppDelegate.h -------------------------------------------------------------------------------- /Example/AWEasyVideoPlayer/AWAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awojnowski/AWEasyVideoPlayer/HEAD/Example/AWEasyVideoPlayer/AWAppDelegate.m -------------------------------------------------------------------------------- /Example/AWEasyVideoPlayer/AWEasyVideoPlayer-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awojnowski/AWEasyVideoPlayer/HEAD/Example/AWEasyVideoPlayer/AWEasyVideoPlayer-Info.plist -------------------------------------------------------------------------------- /Example/AWEasyVideoPlayer/AWEasyVideoPlayer-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awojnowski/AWEasyVideoPlayer/HEAD/Example/AWEasyVideoPlayer/AWEasyVideoPlayer-Prefix.pch -------------------------------------------------------------------------------- /Example/AWEasyVideoPlayer/AWViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awojnowski/AWEasyVideoPlayer/HEAD/Example/AWEasyVideoPlayer/AWViewController.h -------------------------------------------------------------------------------- /Example/AWEasyVideoPlayer/AWViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awojnowski/AWEasyVideoPlayer/HEAD/Example/AWEasyVideoPlayer/AWViewController.m -------------------------------------------------------------------------------- /Example/AWEasyVideoPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awojnowski/AWEasyVideoPlayer/HEAD/Example/AWEasyVideoPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/AWEasyVideoPlayer/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awojnowski/AWEasyVideoPlayer/HEAD/Example/AWEasyVideoPlayer/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/AWEasyVideoPlayer/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awojnowski/AWEasyVideoPlayer/HEAD/Example/AWEasyVideoPlayer/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/AWEasyVideoPlayer/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/AWEasyVideoPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awojnowski/AWEasyVideoPlayer/HEAD/Example/AWEasyVideoPlayer/main.m -------------------------------------------------------------------------------- /Example/AWEasyVideoPlayerTests/AWEasyVideoPlayerTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awojnowski/AWEasyVideoPlayer/HEAD/Example/AWEasyVideoPlayerTests/AWEasyVideoPlayerTests-Info.plist -------------------------------------------------------------------------------- /Example/AWEasyVideoPlayerTests/AWEasyVideoPlayerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awojnowski/AWEasyVideoPlayer/HEAD/Example/AWEasyVideoPlayerTests/AWEasyVideoPlayerTests.m -------------------------------------------------------------------------------- /Example/AWEasyVideoPlayerTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awojnowski/AWEasyVideoPlayer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awojnowski/AWEasyVideoPlayer/HEAD/README.md --------------------------------------------------------------------------------