Skip to content

Commit 91864f6

Browse files
committed
add SDK Ver 6.41.2
1 parent d81d122 commit 91864f6

22 files changed

Lines changed: 286 additions & 46 deletions

File tree

FluctSDK-MediationAdapter.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Pod::Spec.new do |s|
22
s.name = "FluctSDK-MediationAdapter"
33
s.summary = "Mediation Adapter for FluctSDK ad Framework"
44
s.license = { :type => "Copyright", :text => "Copyright (c) fluct,Inc. All rights reserved." }
5-
s.version = "6.41.1"
5+
s.version = "6.41.2"
66
s.author = "fluct,Inc."
77
s.requires_arc = true
88
s.static_framework = true
@@ -22,7 +22,7 @@ Pod::Spec.new do |s|
2222
s.subspec "AppLovin" do |ss|
2323
ss.source_files = "FluctSDK-MediationAdapter/AppLovin/*.{h,m}"
2424
ss.dependency "FluctSDK", ">=6.14.0"
25-
ss.dependency "AppLovinSDK", '=13.6.0'
25+
ss.dependency "AppLovinSDK", '=13.6.1'
2626
ss.ios.deployment_target = "12.0"
2727
end
2828

@@ -36,7 +36,7 @@ Pod::Spec.new do |s|
3636
s.subspec "UnityAds" do |ss|
3737
ss.source_files = "FluctSDK-MediationAdapter/UnityAds/*.{h,m}"
3838
ss.dependency "FluctSDK", ">=6.14.0"
39-
ss.dependency "UnityAds", '=4.16.6'
39+
ss.dependency "UnityAds", '=4.17.0'
4040
ss.ios.deployment_target = "13.0"
4141
end
4242

Binary file not shown.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
//
2+
// FSSMediaContent.h
3+
// FluctSDK
4+
//
5+
// Copyright © 2026 fluct, Inc. All rights reserved.
6+
//
7+
8+
#import <UIKit/UIKit.h>
9+
10+
NS_ASSUME_NONNULL_BEGIN
11+
12+
@interface FSSMediaContent : NSObject
13+
14+
@property (nonatomic, nullable) UIImage *mainImage;
15+
16+
@end
17+
18+
NS_ASSUME_NONNULL_END
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
//
2+
// FSSNativeAd.h
3+
// FluctSDK
4+
//
5+
// Copyright © 2026 fluct, Inc. All rights reserved.
6+
//
7+
8+
#import "FSSMediaContent.h"
9+
#import <UIKit/UIKit.h>
10+
11+
NS_ASSUME_NONNULL_BEGIN
12+
13+
@interface FSSNativeAd : NSObject
14+
15+
@property (nonatomic, readonly, nonnull) FSSMediaContent *mediaContent;
16+
17+
@property (nonatomic, readonly, copy, nullable) NSString *headline;
18+
19+
@property (nonatomic, readonly, copy, nullable) NSString *advertiser;
20+
21+
@property (nonatomic, readonly, copy, nullable) NSString *callToAction;
22+
23+
@end
24+
25+
NS_ASSUME_NONNULL_END
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
//
2+
// FSSNativeAdError.h
3+
// FluctSDK
4+
//
5+
// Copyright © 2026 fluct, Inc. All rights reserved.
6+
//
7+
8+
#import <Foundation/Foundation.h>
9+
10+
NS_ASSUME_NONNULL_BEGIN
11+
12+
typedef NS_ENUM(NSInteger, FSSNativeAdError) {
13+
/** Unknown */
14+
FSSNativeAdErrorUnknown = -3,
15+
/** ネットワークエラー */
16+
FSSNativeAdErrorNotConnectedToInternet = -3001,
17+
/** サーバーエラー */
18+
FSSNativeAdErrorServerError = -3002,
19+
/** 広告在庫が存在しない */
20+
FSSNativeAdErrorNoAds = -3003,
21+
/** グループID、ユニットID、バンドルの不正 */
22+
FSSNativeAdErrorBadRequest = -3004,
23+
};
24+
25+
extern NSString *const FSSNativeAdErrorSDKDomain;
26+
27+
NS_ASSUME_NONNULL_END
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
//
2+
// FSSNativeAdImage.h
3+
// FluctSDK
4+
//
5+
// Copyright © 2026 fluct, Inc. All rights reserved.
6+
//
7+
8+
#import <UIKit/UIKit.h>
9+
10+
NS_ASSUME_NONNULL_BEGIN
11+
12+
@interface FSSNativeAdImage : NSObject
13+
14+
@property (nonatomic, readonly, nullable) UIImage *image;
15+
16+
@property (nonatomic, readonly, copy, nullable) NSURL *imageURL;
17+
18+
@end
19+
20+
NS_ASSUME_NONNULL_END
Binary file not shown.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
//
2+
// FSSMediaContent.h
3+
// FluctSDK
4+
//
5+
// Copyright © 2026 fluct, Inc. All rights reserved.
6+
//
7+
8+
#import <UIKit/UIKit.h>
9+
10+
NS_ASSUME_NONNULL_BEGIN
11+
12+
@interface FSSMediaContent : NSObject
13+
14+
@property (nonatomic, nullable) UIImage *mainImage;
15+
16+
@end
17+
18+
NS_ASSUME_NONNULL_END
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
//
2+
// FSSNativeAd.h
3+
// FluctSDK
4+
//
5+
// Copyright © 2026 fluct, Inc. All rights reserved.
6+
//
7+
8+
#import "FSSMediaContent.h"
9+
#import <UIKit/UIKit.h>
10+
11+
NS_ASSUME_NONNULL_BEGIN
12+
13+
@interface FSSNativeAd : NSObject
14+
15+
@property (nonatomic, readonly, nonnull) FSSMediaContent *mediaContent;
16+
17+
@property (nonatomic, readonly, copy, nullable) NSString *headline;
18+
19+
@property (nonatomic, readonly, copy, nullable) NSString *advertiser;
20+
21+
@property (nonatomic, readonly, copy, nullable) NSString *callToAction;
22+
23+
@end
24+
25+
NS_ASSUME_NONNULL_END

0 commit comments

Comments
 (0)