-
Notifications
You must be signed in to change notification settings - Fork 32
/
AUMediaPlayer.podspec
36 lines (30 loc) · 1.94 KB
/
AUMediaPlayer.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#
# Be sure to run `pod lib lint AUMediaPlayer.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "AUMediaPlayer"
s.version = "3.0.0"
s.summary = "AUMediaPlayer is a nice high level API for audio and video playback, both from network stream and local files."
s.description = "AUMediaPlayer is a library allowing audio and video playback, both from network stream and local files. It features all the common stuff you may expect, like queues, shuffle, repeat. It has convenient progress observation mechanism based on KVO. It automatically sets media info for lock screen displaying and works with lock screen controls. It also manages interruptions. Library object is included as well. It allows to download and store media. Since then they are automatically played from local files. As from version 3.0 it also enables you to play all media library on chromecast."
s.homepage = "https://github.com/appunite/AUMediaPlayer"
s.license = 'MIT'
s.author = { "lukasz.kasperek" => "[email protected]" }
s.source = { :git => "https://github.com/appunite/AUMediaPlayer.git", :tag => s.version.to_s }
s.social_media_url = 'https://medium.com/@appunite'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'AUMediaPlayer' => ['Pod/Assets/*.png']
}
s.public_header_files = 'Pod/Classes/**/*.h'
s.vendored_frameworks = 'Frameworks/GoogleCastSDK-2.7.1-Release/GoogleCast.framework'
s.framework = 'GoogleCast'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"${PODS_ROOT}/AUMediaPlayer/Frameworks/GoogleCastSDK-2.7.1-Release"' }
s.dependency 'AFNetworking', '> 2.3'
#s.dependency 'google-cast-sdk', '~>2.7.1'
end