Skip to content

Commit

Permalink
add SDK Ver 4.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
FluctMember committed Jul 25, 2018
1 parent 72fe494 commit 1df4b09
Show file tree
Hide file tree
Showing 11 changed files with 28 additions and 5 deletions.
Binary file modified FluctSDK/FluctSDK.framework/FluctSDK
Binary file not shown.
2 changes: 1 addition & 1 deletion FluctSDK/FluctSDK.framework/Resources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.10.0</string>
<string>4.10.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ FluctSDK-iOSの[Wiki](https://github.com/voyagegroup/FluctSDK-iOS/wiki)を参照

# FluctSDK Release Note

## v4.10.1 2018/07/25
* 動画リワード広告のメディエーション用アドネットワークSDKのアップデート対応

## v4.10.0 2018/06/26
* AdColonyとの動画リワード広告メディエーション対応

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,15 @@ @interface FSSRewardedVideoCustomEventMaio ()

static const NSInteger timeoutSecond = 30;

static NSString *const FSSMaioSupportVersion = @"8.0";

@implementation FSSRewardedVideoCustomEventMaio

- (instancetype)initWithDictionary:(NSDictionary *)dictionary delegate:(id<FSSRewardedVideoCustomEventDelegate>)delegate testMode:(BOOL)testMode debugMode:(BOOL)debugMode targeting:(FSSAdRequestTargeting *)targeting {
if (![FSSRewardedVideoCustomEvent isOSAtLeastVersion:FSSMaioSupportVersion]) {
return nil;
}

self = [super initWithDictionary:dictionary delegate:delegate testMode:testMode debugMode:debugMode targeting:nil];
if (!self) {
return nil;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
#import <SystemConfiguration/SystemConfiguration.h>
#import <MobileCoreServices/MobileCoreServices.h>
#import <StoreKit/StoreKit.h>
#import <WebKit/WebKit.h>
#import <sys/sysctl.h>
#import <zlib.h>
#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_5_0
#import <AdSupport/AdSupport.h> // idfaの取得 用
#endif
Expand All @@ -37,9 +39,16 @@ __attribute__((deprecated("Deprecated on Release build")))
;

/// maio SDK からの通知を受け取るデリゲート
+ (id<MaioDelegate>)delegate;
+ (id<MaioDelegate>)delegate __deprecated;
/// maio SDK からの通知を受け取るデリゲートをセットします。
+ (void)setDelegate:(id<MaioDelegate>)delegate;
+ (void)setDelegate:(id<MaioDelegate>)delegate __deprecated;
/// maio SDK からの通知を受け取るデリゲートを追加します
+ (void)addDelegateObject:(id<MaioDelegate>)delegate;
/// maio SDK から、追加済みのデリゲートを取り除きます
+ (void)removeDelegateObject:(id<MaioDelegate>)delegate;
/// maio SDKにデリゲートが追加済みか
+ (BOOL)containsMaioDelegate:(id<MaioDelegate>)delegate;


/**
* SDK のセットアップを開始します。
Expand Down Expand Up @@ -88,6 +97,11 @@ __attribute__((deprecated("Deprecated on Release build")))
@property (nonatomic) BOOL adTestMode;
@property (nonatomic) id<MaioDelegate> delegate;

- (void)addDelegateObject:(id<MaioDelegate>)delegate;
- (void)removeDelegateObject:(id<MaioDelegate>)delegate;
- (BOOL)containsDelegate:(id<MaioDelegate>)delegate;


- (BOOL)canShow;
- (BOOL)canShowAtZoneId:(NSString *)zoneId;
- (void)show;
Expand Down
Binary file not shown.
Binary file modified SampleApp/FluctSDK-AdnetworkSupport/maio/Maio.framework/Maio
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.10.0</string>
<string>4.10.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.10.0</string>
<string>4.10.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
Expand Down

0 comments on commit 1df4b09

Please sign in to comment.