Skip to content

Commit

Permalink
add SDK Ver 6.20.3
Browse files Browse the repository at this point in the history
  • Loading branch information
FluctMember committed Nov 16, 2022
1 parent 4f08c2e commit fc60fc7
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 64 deletions.
2 changes: 1 addition & 1 deletion FluctSDK-MediationAdapter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Pod::Spec.new do |s|
s.subspec "AdColony" do |ss|
ss.source_files = "FluctSDK-MediationAdapter/AdColony/*.{h,m}"
ss.dependency "FluctSDK", ">=6.14.0"
ss.dependency "AdColony", '>= 4.3.1'
ss.dependency "AdColony", '>= 4.9.0'
end

s.subspec "AppLovin" do |ss|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ NS_ASSUME_NONNULL_BEGIN
@interface FSSRewardedVideoAdColonyManager : NSObject
+ (instancetype)sharedInstance;
- (void)configureWithAppId:(NSString *)appId
zoneIDs:(NSArray<NSString *> *)zoneIDs
testMode:(BOOL)testMode
debug:(BOOL)debugMode;
- (void)loadRewardedVideoWithZoneId:(NSString *)zoneId
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ - (instancetype)init {
return self;
}

- (void)configureWithAppId:(NSString *)appId zoneIDs:(NSArray<NSString *> *)zoneIDs testMode:(BOOL)testMode debug:(BOOL)debugMode {
- (void)configureWithAppId:(NSString *)appId testMode:(BOOL)testMode debug:(BOOL)debugMode {
if (self.state == Configuring || self.state == Configured) {
// do nothing
return;
Expand All @@ -96,7 +96,6 @@ - (void)configureWithAppId:(NSString *)appId zoneIDs:(NSArray<NSString *> *)zone

__weak __typeof(self) weakSelf = self;
[AdColony configureWithAppID:appId
zoneIDs:zoneIDs
options:options
completion:^(NSArray<AdColonyZone *> *_Nonnull zones) {
[weakSelf adColonyConfigureCallback:zones];
Expand All @@ -118,8 +117,9 @@ - (void)adColonyConfigureCallback:(NSArray<AdColonyZone *> *)zones {
};
}];
dispatch_async(FSSWorkQueue(), ^{
for (void (^callback)(void) in weakSelf.configCompletionArray) {
for (void (^callback)(void) in [weakSelf.configCompletionArray copy]) {
callback();
[weakSelf.configCompletionArray removeObject:callback];
}
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ - (instancetype)initWithDictionary:(NSDictionary *)dictionary
targeting:nil];

if (self) {
// 古いadcolony SDKでは"all_zone_ids"を利用するのでdlvのレスポンスから削除はできない
self.zoneId = dictionary[@"zone_id"];
[[FSSRewardedVideoAdColonyManager sharedInstance] configureWithAppId:dictionary[@"app_id"]
zoneIDs:dictionary[@"all_zone_ids"]
testMode:testMode
debug:debugMode];
}
Expand Down
16 changes: 8 additions & 8 deletions FluctSDK.embeddedframework/FluctSDK.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,31 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_armv7</string>
<string>ios-i386_x86_64-simulator</string>
<key>LibraryPath</key>
<string>FluctSDK.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>armv7</string>
<string>i386</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-i386_x86_64-simulator</string>
<string>ios-arm64_armv7</string>
<key>LibraryPath</key>
<string>FluctSDK.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>i386</string>
<string>x86_64</string>
<string>arm64</string>
<string>armv7</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
42 changes: 0 additions & 42 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,43 +1 @@
Copyright fluct, Inc. All rights reserved.

Reachability

Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Inc.
("Apple") in consideration of your agreement to the following terms, and your
use, installation, modification or redistribution of this Apple software
constitutes acceptance of these terms. If you do not agree with these terms,
please do not use, install, modify or redistribute this Apple software.

In consideration of your agreement to abide by the following terms, and subject
to these terms, Apple grants you a personal, non-exclusive license, under
Apple's copyrights in this original Apple software (the "Apple Software"), to
use, reproduce, modify and redistribute the Apple Software, with or without
modifications, in source and/or binary forms; provided that if you redistribute
the Apple Software in its entirety and without modifications, you must retain
this notice and the following text and disclaimers in all such redistributions
of the Apple Software.
Neither the name, trademarks, service marks or logos of Apple Inc. may be used
to endorse or promote products derived from the Apple Software without specific
prior written permission from Apple. Except as expressly stated in this notice,
no other rights or licenses, express or implied, are granted by Apple herein,
including but not limited to any patent rights that may be infringed by your
derivative works or by other works in which the Apple Software may be
incorporated.

The Apple Software is provided by Apple on an "AS IS" basis. APPLE MAKES NO
WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED
WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN
COMBINATION WITH YOUR PRODUCTS.

IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR
DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF
CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF
APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Copyright (C) 2010 Apple Inc. All Rights Reserved.


8 changes: 4 additions & 4 deletions SampleApp/Objective-C/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- AdColony (4.8.0)
- AdColony (4.9.0)
- Ads-Global (4.5.2.7):
- Ads-Global/BUAdSDK (= 4.5.2.7)
- Ads-Global/APM (4.5.2.7):
Expand Down Expand Up @@ -34,7 +34,7 @@ PODS:
- FluctSDK-MediationAdapter/Tapjoy (= 6.20.3)
- FluctSDK-MediationAdapter/UnityAds (= 6.20.3)
- FluctSDK-MediationAdapter/AdColony (6.20.3):
- AdColony (>= 4.3.1)
- AdColony (>= 4.9.0)
- FluctSDK (>= 6.14.0)
- FluctSDK-MediationAdapter/AppLovin (6.20.3):
- AppLovinSDK (>= 11.1.1)
Expand Down Expand Up @@ -169,13 +169,13 @@ EXTERNAL SOURCES:
:path: "../../../MaxMediationAdapterFluct.podspec"

SPEC CHECKSUMS:
AdColony: eba15b485d1e63d36601d5da4916af73d343b897
AdColony: 4f3738dc633d7aaa8ec60729df973076cc8e97ed
Ads-Global: c2fab60fb986a32ca6f9eec29b2af7eb1e04e9aa
AppLovinSDK: 119a0b2a743f9d9c6002c58776b1013778a65084
BURelyFoundation_Global: 4d19085056d58dc06a102f2d41c140ab2fc47da5
FiveAd: b4c86cbb62a14212c3448fffb7563c08c9671e89
FluctSDK: 0a70a206036c6e66293d8e4540552e05030af893
FluctSDK-MediationAdapter: bc0812c75799c677ecc9e8e9ba853c5b34ff978d
FluctSDK-MediationAdapter: d70cd3bd819a05a920beffb6ab2a4cbeacfefd79
Google-Mobile-Ads-SDK: 9c78323a7069cd42ddf1ad2fddbaec889b085091
GoogleAppMeasurement: 2be61ce546ad074dbe4dd545f222ac6033bb1d9e
GoogleMobileAdsMediationFluct: 24a6c77ef06b5d21a5628627ab7e6fbe22605b92
Expand Down
8 changes: 4 additions & 4 deletions SampleApp/Swift/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- AdColony (4.8.0)
- AdColony (4.9.0)
- Ads-Global (4.5.2.7):
- Ads-Global/BUAdSDK (= 4.5.2.7)
- Ads-Global/APM (4.5.2.7):
Expand Down Expand Up @@ -34,7 +34,7 @@ PODS:
- FluctSDK-MediationAdapter/Tapjoy (= 6.20.3)
- FluctSDK-MediationAdapter/UnityAds (= 6.20.3)
- FluctSDK-MediationAdapter/AdColony (6.20.3):
- AdColony (>= 4.3.1)
- AdColony (>= 4.9.0)
- FluctSDK (>= 6.14.0)
- FluctSDK-MediationAdapter/AppLovin (6.20.3):
- AppLovinSDK (>= 11.1.1)
Expand Down Expand Up @@ -169,13 +169,13 @@ EXTERNAL SOURCES:
:path: "../../../MaxMediationAdapterFluct.podspec"

SPEC CHECKSUMS:
AdColony: eba15b485d1e63d36601d5da4916af73d343b897
AdColony: 4f3738dc633d7aaa8ec60729df973076cc8e97ed
Ads-Global: c2fab60fb986a32ca6f9eec29b2af7eb1e04e9aa
AppLovinSDK: 119a0b2a743f9d9c6002c58776b1013778a65084
BURelyFoundation_Global: 4d19085056d58dc06a102f2d41c140ab2fc47da5
FiveAd: b4c86cbb62a14212c3448fffb7563c08c9671e89
FluctSDK: 0a70a206036c6e66293d8e4540552e05030af893
FluctSDK-MediationAdapter: bc0812c75799c677ecc9e8e9ba853c5b34ff978d
FluctSDK-MediationAdapter: d70cd3bd819a05a920beffb6ab2a4cbeacfefd79
Google-Mobile-Ads-SDK: 9c78323a7069cd42ddf1ad2fddbaec889b085091
GoogleAppMeasurement: 2be61ce546ad074dbe4dd545f222ac6033bb1d9e
GoogleMobileAdsMediationFluct: 24a6c77ef06b5d21a5628627ab7e6fbe22605b92
Expand Down

0 comments on commit fc60fc7

Please sign in to comment.