Skip to content
This repository has been archived by the owner on Feb 10, 2022. It is now read-only.

Commit

Permalink
Updated to version 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Georgios Savvidis committed Jun 25, 2020
1 parent a41fdb4 commit 20e4733
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ project 'flowplayer-demo.xcodeproj'
project 'flowplayer-objc-demo/flowplayer-objc-demo.xcodeproj'

def common_pods
pod 'FlowplayerCore', '~> 1.3.1'
pod 'FlowplayerCore', '~> 1.4.0'
pod 'Rollbar', '~> 1.8.1'
pod 'GoogleAds-IMA-iOS-SDK', '~> 3.9'
end
Expand Down
14 changes: 7 additions & 7 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
PODS:
- FlowplayerCore (1.3.1)
- GoogleAds-IMA-iOS-SDK (3.11.3)
- FlowplayerCore (1.4.0)
- GoogleAds-IMA-iOS-SDK (3.11.4)
- Rollbar (1.8.4)

DEPENDENCIES:
- FlowplayerCore (~> 1.3.1)
- FlowplayerCore (~> 1.4.0)
- GoogleAds-IMA-iOS-SDK (~> 3.9)
- Rollbar (~> 1.8.1)

Expand All @@ -15,10 +15,10 @@ SPEC REPOS:
- Rollbar

SPEC CHECKSUMS:
FlowplayerCore: 68662a196a4c8de4b87bd92aa88830d337becdf7
GoogleAds-IMA-iOS-SDK: 134b35758455576aaa6b3d2d3146699dcf8af4f1
FlowplayerCore: f6056b157d50589fddd6b12f9d62bdc99a16901a
GoogleAds-IMA-iOS-SDK: 7f5b78b31ce97ec1f515866ed54118922004f987
Rollbar: 1b7918ecf1e92b143b71da329fbd8ff981ed30e5

PODFILE CHECKSUM: d341a9958f60a043d0ec9ba118eba3c267741b55
PODFILE CHECKSUM: 4bbbf870f4fd271ffada18001426fa2a2751eed2

COCOAPODS: 1.8.4
COCOAPODS: 1.9.1
14 changes: 14 additions & 0 deletions flowplayer-demo/PlayerViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import UIKit
import FlowplayerCore

class PlayerViewController: UIViewController, FPFlowplayerDelegate {


@IBOutlet weak var containerView: UIView!

var flowplayerMedia: FPFlowplayerMedia?
Expand Down Expand Up @@ -116,5 +118,17 @@ class PlayerViewController: UIViewController, FPFlowplayerDelegate {
func onAdError(event: FPAdErrorEvent) {
print("OnAdError")
}

func onAudioTracks(event: FPAudioTracksEvent) {
print("OnAudioTracks")
}

func onAudioTrackSelect(event: FPAudioTrackSelectEvent) {
print("OnAudioTrackSelect")
}

func onOvpMetadata(event: FPOvpMetadataEvent) {
print("OnOvpMetadata")
}
}

11 changes: 11 additions & 0 deletions flowplayer-objc-demo/flowplayer-objc-demo/PlayerViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -111,5 +111,16 @@ - (void)onSpeedWithEvent:(FPSpeedEvent * _Nonnull)event {
printf("OnSpeed");
}

- (void)onAudioTracksWithEvent:(FPAudioTracksEvent * _Nonnull)event {
printf("OnAudioTracks");
}

- (void)onAudioTrackSelectWithEvent:(FPAudioTrackSelectEvent * _Nonnull)event {
printf("OnAudioTrackSelect");
}

- (void)onOvpMetadataWithEvent:(FPOvpMetadataEvent * _Nonnull)event {
printf("OnOvpMetadata");
}

@end

0 comments on commit 20e4733

Please sign in to comment.