├── .gitignore ├── .travis.yml ├── Example ├── MiniPlayer.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── MiniPlayer-Example.xcscheme ├── MiniPlayer.xcworkspace │ └── contents.xcworkspacedata ├── MiniPlayer │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.swift │ └── file.mp3 ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── MiniPlayer.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── Target Support Files │ │ ├── MiniPlayer │ │ ├── MiniPlayer-Info.plist │ │ ├── MiniPlayer-dummy.m │ │ ├── MiniPlayer-prefix.pch │ │ ├── MiniPlayer-umbrella.h │ │ ├── MiniPlayer.debug.xcconfig │ │ ├── MiniPlayer.modulemap │ │ └── MiniPlayer.release.xcconfig │ │ ├── Pods-MiniPlayer_Example │ │ ├── Pods-MiniPlayer_Example-Info.plist │ │ ├── Pods-MiniPlayer_Example-acknowledgements.markdown │ │ ├── Pods-MiniPlayer_Example-acknowledgements.plist │ │ ├── Pods-MiniPlayer_Example-dummy.m │ │ ├── Pods-MiniPlayer_Example-frameworks.sh │ │ ├── Pods-MiniPlayer_Example-umbrella.h │ │ ├── Pods-MiniPlayer_Example.debug.xcconfig │ │ ├── Pods-MiniPlayer_Example.modulemap │ │ └── Pods-MiniPlayer_Example.release.xcconfig │ │ └── Pods-MiniPlayer_Tests │ │ ├── Pods-MiniPlayer_Tests-Info.plist │ │ ├── Pods-MiniPlayer_Tests-acknowledgements.markdown │ │ ├── Pods-MiniPlayer_Tests-acknowledgements.plist │ │ ├── Pods-MiniPlayer_Tests-dummy.m │ │ ├── Pods-MiniPlayer_Tests-umbrella.h │ │ ├── Pods-MiniPlayer_Tests.debug.xcconfig │ │ ├── Pods-MiniPlayer_Tests.modulemap │ │ └── Pods-MiniPlayer_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── MiniPlayer.podspec ├── MiniPlayer ├── Assets │ ├── .gitkeep │ └── MiniPlayer.xcassets │ │ ├── pause.imageset │ │ ├── Contents.json │ │ ├── pause (1).png │ │ └── pause.png │ │ └── play.imageset │ │ ├── Contents.json │ │ ├── play-outline (2).png │ │ └── play-outline (3).png └── Classes │ ├── MPAudioPlayer.swift │ └── MiniPlayer.swift ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/MiniPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/MiniPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/MiniPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/MiniPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/MiniPlayer.xcodeproj/xcshareddata/xcschemes/MiniPlayer-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/MiniPlayer.xcodeproj/xcshareddata/xcschemes/MiniPlayer-Example.xcscheme -------------------------------------------------------------------------------- /Example/MiniPlayer.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/MiniPlayer.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/MiniPlayer/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/MiniPlayer/AppDelegate.swift -------------------------------------------------------------------------------- /Example/MiniPlayer/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/MiniPlayer/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/MiniPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/MiniPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/MiniPlayer/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/MiniPlayer/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/MiniPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/MiniPlayer/Info.plist -------------------------------------------------------------------------------- /Example/MiniPlayer/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/MiniPlayer/ViewController.swift -------------------------------------------------------------------------------- /Example/MiniPlayer/file.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/MiniPlayer/file.mp3 -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/MiniPlayer.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Local Podspecs/MiniPlayer.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MiniPlayer/MiniPlayer-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/MiniPlayer/MiniPlayer-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MiniPlayer/MiniPlayer-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/MiniPlayer/MiniPlayer-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MiniPlayer/MiniPlayer-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/MiniPlayer/MiniPlayer-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MiniPlayer/MiniPlayer-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/MiniPlayer/MiniPlayer-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MiniPlayer/MiniPlayer.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/MiniPlayer/MiniPlayer.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MiniPlayer/MiniPlayer.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/MiniPlayer/MiniPlayer.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MiniPlayer/MiniPlayer.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/MiniPlayer/MiniPlayer.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MiniPlayer_Example/Pods-MiniPlayer_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/Pods-MiniPlayer_Example/Pods-MiniPlayer_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MiniPlayer_Example/Pods-MiniPlayer_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/Pods-MiniPlayer_Example/Pods-MiniPlayer_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MiniPlayer_Example/Pods-MiniPlayer_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/Pods-MiniPlayer_Example/Pods-MiniPlayer_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MiniPlayer_Example/Pods-MiniPlayer_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/Pods-MiniPlayer_Example/Pods-MiniPlayer_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MiniPlayer_Example/Pods-MiniPlayer_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/Pods-MiniPlayer_Example/Pods-MiniPlayer_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MiniPlayer_Example/Pods-MiniPlayer_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/Pods-MiniPlayer_Example/Pods-MiniPlayer_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MiniPlayer_Example/Pods-MiniPlayer_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/Pods-MiniPlayer_Example/Pods-MiniPlayer_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MiniPlayer_Example/Pods-MiniPlayer_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/Pods-MiniPlayer_Example/Pods-MiniPlayer_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MiniPlayer_Example/Pods-MiniPlayer_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/Pods-MiniPlayer_Example/Pods-MiniPlayer_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MiniPlayer_Tests/Pods-MiniPlayer_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/Pods-MiniPlayer_Tests/Pods-MiniPlayer_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MiniPlayer_Tests/Pods-MiniPlayer_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/Pods-MiniPlayer_Tests/Pods-MiniPlayer_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MiniPlayer_Tests/Pods-MiniPlayer_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/Pods-MiniPlayer_Tests/Pods-MiniPlayer_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MiniPlayer_Tests/Pods-MiniPlayer_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/Pods-MiniPlayer_Tests/Pods-MiniPlayer_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MiniPlayer_Tests/Pods-MiniPlayer_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/Pods-MiniPlayer_Tests/Pods-MiniPlayer_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MiniPlayer_Tests/Pods-MiniPlayer_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/Pods-MiniPlayer_Tests/Pods-MiniPlayer_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MiniPlayer_Tests/Pods-MiniPlayer_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/Pods-MiniPlayer_Tests/Pods-MiniPlayer_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MiniPlayer_Tests/Pods-MiniPlayer_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Pods/Target Support Files/Pods-MiniPlayer_Tests/Pods-MiniPlayer_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/LICENSE -------------------------------------------------------------------------------- /MiniPlayer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/MiniPlayer.podspec -------------------------------------------------------------------------------- /MiniPlayer/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MiniPlayer/Assets/MiniPlayer.xcassets/pause.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/MiniPlayer/Assets/MiniPlayer.xcassets/pause.imageset/Contents.json -------------------------------------------------------------------------------- /MiniPlayer/Assets/MiniPlayer.xcassets/pause.imageset/pause (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/MiniPlayer/Assets/MiniPlayer.xcassets/pause.imageset/pause (1).png -------------------------------------------------------------------------------- /MiniPlayer/Assets/MiniPlayer.xcassets/pause.imageset/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/MiniPlayer/Assets/MiniPlayer.xcassets/pause.imageset/pause.png -------------------------------------------------------------------------------- /MiniPlayer/Assets/MiniPlayer.xcassets/play.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/MiniPlayer/Assets/MiniPlayer.xcassets/play.imageset/Contents.json -------------------------------------------------------------------------------- /MiniPlayer/Assets/MiniPlayer.xcassets/play.imageset/play-outline (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/MiniPlayer/Assets/MiniPlayer.xcassets/play.imageset/play-outline (2).png -------------------------------------------------------------------------------- /MiniPlayer/Assets/MiniPlayer.xcassets/play.imageset/play-outline (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/MiniPlayer/Assets/MiniPlayer.xcassets/play.imageset/play-outline (3).png -------------------------------------------------------------------------------- /MiniPlayer/Classes/MPAudioPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/MiniPlayer/Classes/MPAudioPlayer.swift -------------------------------------------------------------------------------- /MiniPlayer/Classes/MiniPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/MiniPlayer/Classes/MiniPlayer.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seroshtanov/miniPlayer/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------