Skip to content

Commit

Permalink
add SDK Ver 4.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
FluctMember committed Aug 27, 2018
1 parent 1df4b09 commit b38b84a
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 7 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.1</string>
<string>4.10.2</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.2 2018/08/27
* 動画リワード広告の収益性向上のために, 内部処理を変更

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ @interface FSSRewardedVideoCustomEventAppLovin () <ALAdLoadDelegate, ALAdDisplay
@property (nonatomic) ALIncentivizedInterstitialAd *rewardedVideo;

+ (ALSdk *)sharedWithKey:(NSString *)sdkKey;
+ (ALIncentivizedInterstitialAd *)rewardedVideoWithSdk:(ALSdk *)sdk;
+ (ALIncentivizedInterstitialAd *)rewardedVideoWithSdk:(ALSdk *)sdk zoneName:(nonnull NSString *)zone;

@end

Expand All @@ -24,8 +24,11 @@ + (ALSdk *)sharedWithKey:(NSString *)sdkKey {
return [ALSdk sharedWithKey:sdkKey];
}

+ (ALIncentivizedInterstitialAd *)rewardedVideoWithSdk:(ALSdk *)sdk {
return [[ALIncentivizedInterstitialAd alloc] initWithSdk:sdk];
+ (ALIncentivizedInterstitialAd *)rewardedVideoWithSdk:(ALSdk *)sdk zoneName:(nonnull NSString *)zoneName {
if ([zoneName length] == 0) {
return [[ALIncentivizedInterstitialAd alloc] initWithSdk:sdk];
}
return [[ALIncentivizedInterstitialAd alloc] initWithZoneIdentifier:zoneName sdk:sdk];
}

- (instancetype)initWithDictionary:(NSDictionary *)dictionary delegate:(id<FSSRewardedVideoCustomEventDelegate>)delegate testMode:(BOOL)testMode debugMode:(BOOL)debugMode targeting:(FSSAdRequestTargeting *)targeting {
Expand All @@ -38,7 +41,7 @@ - (instancetype)initWithDictionary:(NSDictionary *)dictionary delegate:(id<FSSRe
applovinSDK.settings.isTestAdsEnabled = testMode;
[applovinSDK initializeSdk];
});
_rewardedVideo = [FSSRewardedVideoCustomEventAppLovin rewardedVideoWithSdk:applovinSDK];
_rewardedVideo = [FSSRewardedVideoCustomEventAppLovin rewardedVideoWithSdk:applovinSDK zoneName:dictionary[@"zone"]];
_rewardedVideo.adDisplayDelegate = self;
_rewardedVideo.adVideoPlaybackDelegate = self;
_placement = dictionary[@"placement"];
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.1</string>
<string>4.10.2</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.1</string>
<string>4.10.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
Expand Down

0 comments on commit b38b84a

Please sign in to comment.