Skip to content

Commit

Permalink
[ios][audiencenetwork] Updated to version 4.25.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SotoiGhost committed Sep 6, 2017
1 parent 68fbd3c commit e6279a0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Facebook.AudienceNetwork.iOS/build.cake
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

#load "../common.cake"

var SDK_VERSION = "4.24.0";
var SDK_URL = string.Format ("https://origincache.facebook.com/developers/resources/?id=FacebookSDKs-iOS-{0}.zip", SDK_VERSION);
var SDK_FILE = "FacebookSDKs-iOS.zip";
var SDK_PATH = "./externals/FacebookSDKs";
var SDK_VERSION = "4.25.0";
var SDK_URL = string.Format ("https://origincache.facebook.com/developers/resources/?id=FBAudienceNetwork-{0}.zip", SDK_VERSION);
var SDK_FILE = "FBAudienceNetwork.zip";
var SDK_PATH = "./externals/FBAudienceNetwork";

var TARGET = Argument ("t", Argument ("target", "Default"));

Expand Down
4 changes: 2 additions & 2 deletions Facebook.AudienceNetwork.iOS/component/component.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 4.24.0.0
version: 4.25.0.0
name: Facebook Audience Network iOS SDK
id: fbaudiencenetworkios
publisher: Xamarin Inc
Expand All @@ -11,7 +11,7 @@ icons:
license: ../License.md
packages:
ios-unified:
- Xamarin.Facebook.AudienceNetwork.iOS, Version=4.24.0.0
- Xamarin.Facebook.AudienceNetwork.iOS, Version=4.25.0.0
libraries:
ios-unified:
- ../output/unified/Facebook.AudienceNetwork.dll
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>Xamarin.Facebook.AudienceNetwork.iOS</id>
<title>Facebook Audience Network SDK for Xamarin iOS</title>
<version>4.24.0.0</version>
<version>4.25.0.0</version>
<authors>Xamarin Inc.</authors>
<owners>Xamarin Inc.</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,10 @@ interface MediaViewVideoRenderer
[Export ("duration", ArgumentSemantic.Assign)]
CMTime Duration { get; }

// @property (nonatomic, assign, readonly, getter=isPlaying) BOOL playing;
[Export ("isPlaying", ArgumentSemantic.Assign)]
bool IsPlaying { get; }

// @property (nonatomic, assign) float volume;
[Export ("volume", ArgumentSemantic.Assign)]
float Volume { get; set; }
Expand Down

0 comments on commit e6279a0

Please sign in to comment.