-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
27 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
.DS_Store | ||
.idea | ||
*.xcuserdatad | ||
build | ||
Carthage | ||
|
||
## Build generated | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"1.0": "https://sdk.streamroot.io/ios/AVPlayerDNAPlugin/1.1.4/AVPlayerDNAPlugin.framework.zip", | ||
"1.0.0": "https://sdk.streamroot.io/ios/AVPlayerDNAPlugin/1.0.0/AVPlayerDNAPlugin.framework.zip", | ||
"1.1": "https://sdk.streamroot.io/ios/AVPlayerDNAPlugin/1.1.1/AVPlayerDNAPlugin.framework.zip", | ||
"1.1.0": "https://sdk.streamroot.io/ios/AVPlayerDNAPlugin/1.1.0/AVPlayerDNAPlugin.framework.zip", | ||
"1.1.1": "https://sdk.streamroot.io/ios/AVPlayerDNAPlugin/1.1.1/AVPlayerDNAPlugin.framework.zip", | ||
"1.1.2": "https://sdk.streamroot.io/ios/AVPlayerDNAPlugin/1.1.2/AVPlayerDNAPlugin.framework.zip", | ||
"1.1.3": "https://sdk.streamroot.io/ios/AVPlayerDNAPlugin/1.1.3/AVPlayerDNAPlugin.framework.zip", | ||
"1.1.4": "https://sdk.streamroot.io/ios/AVPlayerDNAPlugin/1.1.4/AVPlayerDNAPlugin.framework.zip" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
|
||
Pod::Spec.new do |s| | ||
s.name = 'AVPlayerDNAPlugin' | ||
s.version = '1.1.4' | ||
s.swift_version = '4.2' | ||
s.summary = 'Streamroot Distributed Network Architecture AVPlayer plugins, a new way to deliver large-scale OTT video' | ||
s.homepage = 'https://github.com/streamroot/avplayer-dna-plugin' | ||
s.homepage = 'https://www.streamroot.io/' | ||
s.author = { 'Name' => '[email protected]' } | ||
s.license = { | ||
:type => 'Copyright', | ||
:text => 'Copyright 2018 Streamroot. See the terms of service at https://www.streamroot.io/' | ||
} | ||
s.platform = :ios | ||
s.source ={ :git => 'https://github.com/streamroot/avplayer-dna-plugin.git', :tag => "#{s.version}"} | ||
s.source_files = 'PlayerDNAPlugin/Classes/*.swift' | ||
s.source = { :http => "https://sdk.streamroot.io/ios/AVPlayerDNAPlugin/#{s.version}/AVPlayerDNAPlugin.framework.zip" } | ||
s.ios.deployment_target = '9.2' | ||
s.tvos.deployment_target = '10.2' | ||
# s.source ={ :git => 'https://github.com/streamroot/avplayer-dna-plugin.git', :tag => "#{s.version}"} | ||
# s.source_files = 'PlayerDNAPlugin/Classes/*.swift' | ||
s.ios.vendored_frameworks = 'Carthage/Build/iOS/AVPlayerDNAPlugin.framework' | ||
s.tvos.vendored_frameworks = 'Carthage/Build/tvOS/AVPlayerDNAPlugin.framework' | ||
s.dependency 'StreamrootSDK', '~> 3.9.0' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
|
||
base_dir=$(cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd) | ||
carthage build --no-skip-current --platform iOS,tvOS --configuration Release | ||
carthage archive AVPlayerDNAPlugin --output AVPlayerDNAPlugin.framework.zip | ||
aws s3 cp AVPlayerDNAPlugin.framework.zip s3://sdk.streamroot.io/ios/AVPlayerDNAPlugin/$($base_dir/version)/AVPlayerDNAPlugin.framework.zip --acl public-read | ||
aws s3 cp AVPlayerDNAPlugin.json s3://sdk.streamroot.io/ios/AVPlayerDNAPlugin.json --acl public-read |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env bash | ||
|
||
/usr/libexec/PlistBuddy -c 'Print :CFBundleShortVersionString' PlayerDNAPlugin/Info.plist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters