11 Commits

160 changed files with 1865 additions and 1802 deletions

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 7906f0e7a18774d7cacdf2ec692623de
guid: 132d89fdc5b1440dfb33985e4e83a4ab
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@@ -229,6 +229,20 @@ namespace AnyThinkAds.Api
client.setLocation(longitude, latitude);
}
public static void start()
{
client.start();
}
public static bool isCnSDK()
{
return client.isCnSDK();
}
public static void setLocalStrategyAssetPath(string assetPath)
{
client.setLocalStrategyAssetPath(assetPath);
}
}
}

View File

@@ -31,5 +31,8 @@ namespace AnyThinkAds.Common
void getArea(ATGetAreaListener listener);
void setWXStatus(bool install);
void setLocation(double longitude, double latitude);
void start();
bool isCnSDK();
void setLocalStrategyAssetPath(string assetPath);
}
}

View File

@@ -10,6 +10,9 @@ namespace AnyThinkAds
{
public class ATAdsClientFactory
{
private static IATInterstitialAdClient _sharedInterstitialAdClient;
private static IATRewardedVideoAdClient _sharedRewardedVideoAdClient;
public static IATBannerAdClient BuildBannerAdClient()
{
#if UNITY_EDITOR
@@ -27,17 +30,25 @@ namespace AnyThinkAds
public static IATInterstitialAdClient BuildInterstitialAdClient()
{
if (_sharedInterstitialAdClient != null)
{
return _sharedInterstitialAdClient;
}
#if UNITY_EDITOR
// Testing UNITY_EDITOR first because the editor also responds to the currently
// selected platform.
#elif UNITY_ANDROID
return new AnyThinkAds.Android.ATInterstitialAdClient();
_sharedInterstitialAdClient = new AnyThinkAds.Android.ATInterstitialAdClient();
return _sharedInterstitialAdClient;
#elif (UNITY_5 && UNITY_IOS) || UNITY_IPHONE
return new AnyThinkAds.iOS.ATInterstitialAdClient();
_sharedInterstitialAdClient = new AnyThinkAds.iOS.ATInterstitialAdClient();
return _sharedInterstitialAdClient;
#else
#endif
return new UnityInterstitialClient();
_sharedInterstitialAdClient = new UnityInterstitialClient();
return _sharedInterstitialAdClient;
}
public static IATNativeAdClient BuildNativeAdClient()
@@ -72,18 +83,26 @@ namespace AnyThinkAds
public static IATRewardedVideoAdClient BuildRewardedVideoAdClient()
{
if (_sharedRewardedVideoAdClient != null)
{
return _sharedRewardedVideoAdClient;
}
#if UNITY_EDITOR
// Testing UNITY_EDITOR first because the editor also responds to the currently
// selected platform.
#elif UNITY_ANDROID
return new AnyThinkAds.Android.ATRewardedVideoAdClient();
_sharedRewardedVideoAdClient = new AnyThinkAds.Android.ATRewardedVideoAdClient();
return _sharedRewardedVideoAdClient;
#elif (UNITY_5 && UNITY_IOS) || UNITY_IPHONE
return new AnyThinkAds.iOS.ATRewardedVideoAdClient();
_sharedRewardedVideoAdClient = new AnyThinkAds.iOS.ATRewardedVideoAdClient();
return _sharedRewardedVideoAdClient;
#else
#endif
return new UnityRewardedVideoAdClient();
_sharedRewardedVideoAdClient = new UnityRewardedVideoAdClient();
return _sharedRewardedVideoAdClient;
}
public static IATSDKAPIClient BuildSDKAPIClient()
@@ -162,6 +181,9 @@ namespace AnyThinkAds
public void getArea(ATGetAreaListener listener) { }
public void setWXStatus(bool install) { }
public void setLocation(double longitude, double latitude) { }
public void start() { }
public bool isCnSDK() { return false; }
public void setLocalStrategyAssetPath(string assetPath) { }
public void showDebuggerUI() {}
public void showDebuggerUI(string debugKey) {}
}
@@ -490,4 +512,4 @@ namespace AnyThinkAds
public void entryScenarioWithPlacementID(string placementId, string scenarioID) {}
}
}
}

View File

@@ -156,7 +156,7 @@ namespace AnyThinkAds.Android
}catch(System.Exception e){
System.Console.WriteLine("Exception caught: {0}", e);
Debug.Log ("ATInterstitialAdClient : error."+e.Message);
throw;
}
}
@@ -403,6 +403,7 @@ namespace AnyThinkAds.Android
{
System.Console.WriteLine("Exception caught: {0}", e);
Debug.Log("Unity: ATInterstitialAdClient:showAutoAd() : error." + e.Message);
throw;
}
}

View File

@@ -160,7 +160,7 @@ namespace AnyThinkAds.Android
}catch(System.Exception e){
System.Console.WriteLine("Exception caught: {0}", e);
Debug.Log ("ATRewardedVideoAdClient : error."+e.Message);
throw;
}
}
@@ -390,6 +390,7 @@ namespace AnyThinkAds.Android
{
System.Console.WriteLine("Exception caught: {0}", e);
Debug.Log("Unity: ATRewardedVideoAdClient:showAutoAd() : error." + e.Message);
throw;
}
}

View File

@@ -9,11 +9,13 @@ namespace AnyThinkAds.Android
public class ATSDKAPIClient : AndroidJavaProxy, IATSDKAPIClient
{
private AndroidJavaObject sdkInitHelper;
private AndroidJavaClass sdkClass;
private ATSDKInitListener sdkInitListener;
public ATSDKAPIClient () : base("com.anythink.unitybridge.sdkinit.SDKInitListener")
{
this.sdkInitHelper = new AndroidJavaObject(
"com.anythink.unitybridge.sdkinit.SDKInitHelper", this);
this.sdkClass = new AndroidJavaClass("com.anythink.core.api.ATSDK");
}
public void initSDK(string appId, string appKey)
@@ -390,5 +392,59 @@ namespace AnyThinkAds.Android
Debug.Log("ATSDKAPIClient : error." + e.Message);
}
}
public void start()
{
try
{
if (this.sdkClass != null)
{
this.sdkClass.CallStatic("start");
}
}
catch (System.Exception e)
{
System.Console.WriteLine("Exception caught: {0}", e);
Debug.Log("ATSDKAPIClient : start error." + e.Message);
}
}
public bool isCnSDK()
{
try
{
if (this.sdkClass != null)
{
return this.sdkClass.CallStatic<bool>("isCnSDK");
}
}
catch (System.Exception e)
{
System.Console.WriteLine("Exception caught: {0}", e);
Debug.Log("ATSDKAPIClient : isCnSDK error." + e.Message);
}
return false;
}
public void setLocalStrategyAssetPath(string assetPath)
{
try
{
if (this.sdkClass != null)
{
using (AndroidJavaClass unityPlayer = new AndroidJavaClass("com.unity3d.player.UnityPlayer"))
using (AndroidJavaObject currentActivity = unityPlayer.GetStatic<AndroidJavaObject>("currentActivity"))
{
this.sdkClass.CallStatic("setLocalStrategyAssetPath", currentActivity, assetPath);
}
}
}
catch (System.Exception e)
{
System.Console.WriteLine("Exception caught: {0}", e);
Debug.Log("ATSDKAPIClient : setLocalStrategyAssetPath error." + e.Message);
}
}
}
}

View File

@@ -193,6 +193,21 @@ namespace AnyThinkAds.iOS {
Debug.Log("Unity:ATSDKAPIClient::setLocation()");
ATManager.setLocation(longitude, latitude);
}
public void start()
{
Debug.Log("Unity:ATSDKAPIClient::start() noop on iOS");
}
public bool isCnSDK()
{
return false;
}
public void setLocalStrategyAssetPath(string assetPath)
{
Debug.Log("Unity:ATSDKAPIClient::setLocalStrategyAssetPath() noop on iOS");
}
//iOS显示Debugger UI
public void showDebuggerUI()

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 26285ca98a78f457881762235082f07a
guid: 3ebf1cad649364554b542bffc52eafd8
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@@ -3,7 +3,7 @@
<repositories>
<repository>https://jfrog.takuad.com/artifactory/china_sdk</repository>
</repositories>
<androidPackage spec="com.anythink.sdk:core-taku:6.5.52"/>
<androidPackage spec="com.anythink.sdk:core-taku:6.5.73.1"/>
<androidPackage spec="com.android.support:appcompat-v7:28.0.0"/>
</androidPackages>
</dependencies>

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 72481ce8801cd4eb29bf2a4853ebe5b0
guid: 85ef0e74147a04f4d91ac86c27edd8b3
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@@ -1,32 +0,0 @@
fileFormatVersion: 2
guid: c25e4f8197510466db2c6ffc7251babf
PluginImporter:
externalObjects: {}
serializedVersion: 2
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
- first:
Android: Android
second:
enabled: 1
settings: {}
- first:
Any:
second:
enabled: 0
settings: {}
- first:
Editor: Editor
second:
enabled: 0
settings:
DefaultValueInitialized: true
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,32 +0,0 @@
fileFormatVersion: 2
guid: 7b630f9c7da4a4f0ca3557de6f901bcb
PluginImporter:
externalObjects: {}
serializedVersion: 2
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
- first:
Android: Android
second:
enabled: 1
settings: {}
- first:
Any:
second:
enabled: 0
settings: {}
- first:
Editor: Editor
second:
enabled: 0
settings:
DefaultValueInitialized: true
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,32 +0,0 @@
fileFormatVersion: 2
guid: 132805e7dbeb445338e42182c3be51bd
PluginImporter:
externalObjects: {}
serializedVersion: 2
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
- first:
Android: Android
second:
enabled: 1
settings: {}
- first:
Any:
second:
enabled: 0
settings: {}
- first:
Editor: Editor
second:
enabled: 0
settings:
DefaultValueInitialized: true
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,32 +0,0 @@
fileFormatVersion: 2
guid: 4467eb48798eb4dab9e92d4ded3cb12a
PluginImporter:
externalObjects: {}
serializedVersion: 2
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
- first:
Android: Android
second:
enabled: 1
settings: {}
- first:
Any:
second:
enabled: 0
settings: {}
- first:
Editor: Editor
second:
enabled: 0
settings:
DefaultValueInitialized: true
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,6 +1,6 @@
<dependencies>
<androidPackages>
<androidPackage spec="com.anythink.sdk:adapter-taku-sdm:6.5.54.1.0"/>
<androidPackage spec="com.smartdigimkttech.sdk:sdm-sdk-cn:6.5.54"/>
<androidPackage spec="com.anythink.sdk:adapter-taku-sdm:6.5.66.1.0"/>
<androidPackage spec="com.smartdigimkttech.sdk:sdm-sdk-cn:6.5.66"/>
</androidPackages>
</dependencies>

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: e1b6816ce3172d04c881b3aed105923b
guid: 5f363c1a88f18174987f8d657f0a367d
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@@ -1,6 +1,6 @@
<dependencies>
<androidPackages>
<androidPackage spec="com.anythink.sdk:adapter-taku-baidu:9.432.1.0"/>
<androidPackage spec="mobi.baidu.sdk:mobads:9.432"/>
<androidPackage spec="com.anythink.sdk:adapter-taku-baidu:9.450.1.0"/>
<androidPackage spec="mobi.baidu.sdk:mobads:9.450"/>
</androidPackages>
</dependencies>

View File

@@ -1 +1 @@
{"name":"baidu","version":"9.432","country":1,"path":"Assets/AnyThinkPlugin/AnyThinkAds\\Plugins/Android/China/mediation/baidu"}
{"name":"baidu","version":"9.450","country":1,"path":"Assets/AnyThinkPlugin/Script/IntegrationManager/Editor/../../..//AnyThinkAds\\Plugins/Android/China/mediation/baidu"}

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: c8cc45ac0f487bd48a3f5dedce04bf4e
guid: 877de551d865024459220025e667a8bd
TextScriptImporter:
externalObjects: {}
userData:

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: ac413c5a4b5ec428b97c710e8af4a606
guid: 015c2d452459b449f92c9793c98a8fd5
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: a2bc97553ae314289a9a2013322cd4a9
guid: dbf64e3acd7e84b67aff6edfdfabb2d4
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@@ -0,0 +1,3 @@
<dependencies>
<!-- CSJ + GroMore mix integration is provided by local AARs in Assets/Plugins/Android. -->
</dependencies>

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 6675c71972048453abf7c20a06967d5b
guid: ff585799e2d0c42b5b227471c17279a3
TextScriptImporter:
externalObjects: {}
userData:

View File

@@ -0,0 +1 @@
{"name":"csj","version":"7.6.1.1","country":1,"path":"Assets/AnyThinkPlugin/AnyThinkAds\\Plugins/Android/China/mediation/csj"}

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: f7f908ea447a6b14fbf5a03544312860
guid: ce7b55d484bbcfe458c0855637c86538
TextScriptImporter:
externalObjects: {}
userData:

View File

@@ -1,6 +1,6 @@
<dependencies>
<androidPackages>
<androidPackage spec="com.anythink.sdk:adapter-taku-gdt:4.671.1541.1.0"/>
<androidPackage spec="com.qq.e.union:union:4.671.1541"/>
<androidPackage spec="com.anythink.sdk:adapter-taku-gdt:4.680.1550.1.0"/>
<androidPackage spec="com.qq.e.union:union:4.680.1550"/>
</androidPackages>
</dependencies>

View File

@@ -1 +1 @@
{"name":"gdt","version":"4.671.1541","country":1,"path":"Assets/AnyThinkPlugin/AnyThinkAds\\Plugins/Android/China/mediation/gdt"}
{"name":"gdt","version":"4.680.1550","country":1,"path":"Assets/AnyThinkPlugin/Script/IntegrationManager/Editor/../../..//AnyThinkAds\\Plugins/Android/China/mediation/gdt"}

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 5c230e8420af7ab4fa09409a9d1ef6cf
guid: e7884cb6f1807d24ba5d55cd4ca1d3e5
TextScriptImporter:
externalObjects: {}
userData:

View File

@@ -3,7 +3,7 @@
<repositories>
<repository>https://dl-maven-android.mintegral.com/repository/mbridge_android_sdk_support</repository>
</repositories>
<androidPackage spec="com.anythink.sdk:adapter-taku-mintegral-china:16.3.67.1.0"/>
<androidPackage spec="com.anythink.sdk:adapter-taku-mintegral-china:16.3.67.1.1"/>
<androidPackage spec="com.mbridge.msdk.support:reward:16.3.67"/>
<androidPackage spec="com.mbridge.msdk.support:newinterstitial:16.3.67"/>
<androidPackage spec="com.mbridge.msdk.support:mbnative:16.3.67"/>

View File

@@ -1 +1 @@
{"name":"gtm","version":"16.3.67","country":1,"path":"Assets/AnyThinkPlugin/AnyThinkAds\\Plugins/Android/China/mediation/gtm"}
{"name":"gtm","version":"16.3.67","country":1,"path":"Assets/AnyThinkPlugin/Script/IntegrationManager/Editor/../../..//AnyThinkAds\\Plugins/Android/China/mediation/gtm"}

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: a4d0b2f9ca58b234fabae164f56dd016
guid: bf13b1b13509b0d4081a9181302a3c9c
TextScriptImporter:
externalObjects: {}
userData:

View File

@@ -1,6 +1,6 @@
<dependencies>
<androidPackages>
<androidPackage spec="com.anythink.sdk:adapter-taku-kuaishou:4.12.20.1.1.0"/>
<androidPackage spec="com.anythink.sdk:adapter-taku-kuaishou:4.12.20.1.1.2"/>
<androidPackage spec="com.anythink.sdk:sdk-ads-kuaishou:4.12.20.1"/>
<androidPackage spec="com.android.support:design:28.0.0"/>
</androidPackages>

View File

@@ -1 +1 @@
{"name":"kuaishou","version":"4.12.20.1","country":1,"path":"Assets/AnyThinkPlugin/AnyThinkAds\\Plugins/Android/China/mediation/kuaishou"}
{"name":"kuaishou","version":"4.12.20.1","country":1,"path":"Assets/AnyThinkPlugin/Script/IntegrationManager/Editor/../../..//AnyThinkAds\\Plugins/Android/China/mediation/kuaishou"}

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: ac5dc9887409a4e4584a417d1e4a0d88
guid: 10e7c7db796873948b48a37546d590f7
TextScriptImporter:
externalObjects: {}
userData:

View File

@@ -1,6 +0,0 @@
<dependencies>
<androidPackages>
<androidPackage spec="com.anythink.sdk:adapter-taku-sigmob:4.25.9.1.0"/>
<androidPackage spec="com.anythink.sdk:sdk-ads-sigmob:4.25.9"/>
</androidPackages>
</dependencies>

View File

@@ -1 +0,0 @@
{"name":"sigmob","version":"4.25.9","country":1,"path":"Assets/AnyThinkPlugin/AnyThinkAds\\Plugins/Android/China/mediation/sigmob"}

View File

@@ -1,7 +1,7 @@
<dependencies>
<androidPackages>
<androidPackage spec="com.anythink.sdk:adapter-taku-tap:4.1.2.7.1.1"/>
<androidPackage spec="com.anythink.sdk:sdk-ads-tap:4.1.2.7"/>
<androidPackage spec="com.anythink.sdk:adapter-taku-tap:4.2.1.1.1.1"/>
<androidPackage spec="com.anythink.sdk:sdk-ads-tap:4.2.1.1"/>
<androidPackage spec="com.squareup.okhttp3:okhttp:3.12.1"/>
<androidPackage spec="com.github.bumptech.glide:glide:4.9.0"/>
<androidPackage spec="com.android.support:appcompat-v7:28.0.0"/>

View File

@@ -1 +1 @@
{"name":"tap","version":"4.1.2.7","country":1,"path":"Assets/AnyThinkPlugin/AnyThinkAds\\Plugins/Android/China/mediation/tap"}
{"name":"tap","version":"4.2.1.1","country":1,"path":"Assets/AnyThinkPlugin/Script/IntegrationManager/Editor/../../..//AnyThinkAds\\Plugins/Android/China/mediation/tap"}

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 4ccb4470b260c014d91cdc1e5a3e1aa3
guid: 11c4debe559e7544992fdf034f3646ac
TextScriptImporter:
externalObjects: {}
userData:

View File

@@ -1,32 +0,0 @@
fileFormatVersion: 2
guid: 427c5881b8d4d4f6aa881900ad3d36ed
PluginImporter:
externalObjects: {}
serializedVersion: 2
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
- first:
Android: Android
second:
enabled: 1
settings: {}
- first:
Any:
second:
enabled: 0
settings: {}
- first:
Editor: Editor
second:
enabled: 0
settings:
DefaultValueInitialized: true
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,32 +0,0 @@
fileFormatVersion: 2
guid: b97c8aaa0d1e94a0690cd9f38b6ca553
PluginImporter:
externalObjects: {}
serializedVersion: 2
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
- first:
Android: Android
second:
enabled: 1
settings: {}
- first:
Any:
second:
enabled: 0
settings: {}
- first:
Editor: Editor
second:
enabled: 0
settings:
DefaultValueInitialized: true
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,32 +0,0 @@
fileFormatVersion: 2
guid: 69e0b662881d62e4baf2f0e5e1696f5d
PluginImporter:
externalObjects: {}
serializedVersion: 2
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
- first:
Android: Android
second:
enabled: 1
settings: {}
- first:
Any:
second:
enabled: 0
settings: {}
- first:
Editor: Editor
second:
enabled: 0
settings:
DefaultValueInitialized: true
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,32 +0,0 @@
fileFormatVersion: 2
guid: faba521d59dabde4d8a6f7a690a8c4a8
PluginImporter:
externalObjects: {}
serializedVersion: 2
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
- first:
Android: Android
second:
enabled: 1
settings: {}
- first:
Any:
second:
enabled: 0
settings: {}
- first:
Editor: Editor
second:
enabled: 0
settings:
DefaultValueInitialized: true
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,32 +0,0 @@
fileFormatVersion: 2
guid: 88d4023257d40264e8443a4f2fce4c29
PluginImporter:
externalObjects: {}
serializedVersion: 2
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
- first:
Android: Android
second:
enabled: 1
settings: {}
- first:
Any:
second:
enabled: 0
settings: {}
- first:
Editor: Editor
second:
enabled: 0
settings:
DefaultValueInitialized: true
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,32 +0,0 @@
fileFormatVersion: 2
guid: c691eee5da4f5fd45b516c9dce46a823
PluginImporter:
externalObjects: {}
serializedVersion: 2
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
- first:
Android: Android
second:
enabled: 1
settings: {}
- first:
Any:
second:
enabled: 0
settings: {}
- first:
Editor: Editor
second:
enabled: 0
settings:
DefaultValueInitialized: true
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,32 +0,0 @@
fileFormatVersion: 2
guid: cd83cdacfa7712442b8d72f763cb0dd0
PluginImporter:
externalObjects: {}
serializedVersion: 2
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
- first:
Android: Android
second:
enabled: 1
settings: {}
- first:
Any:
second:
enabled: 0
settings: {}
- first:
Editor: Editor
second:
enabled: 0
settings:
DefaultValueInitialized: true
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: f4a837cf60e40c84690ece85b75c748e
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: c711e887715a14f16b1f1c51b0b51cb6
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<dependencies>
<iosPods>
<iosPod name="AnyThinkMediationBaiduAdapter" version="10.032.1" />
</iosPods>
</dependencies>

View File

@@ -1 +0,0 @@
{"name":"baidu","version":"10.032","country":1,"path":"Assets/AnyThinkPlugin/AnyThinkAds\\Plugins/iOS/China/baidu"}

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: c8ce81554dbcd4e9896ee0f1cb782685
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: faf88f547152a4fa0b48ea5d4e233b85
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,7 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<dependencies>
<iosPods>
<iosPod name="AnyThinkiOS" version="6.5.34" />
<iosPod name="AnyThinkMediationAdxSmartdigimktCNAdapter" version="6.5.43.0" />
</iosPods>
</dependencies>

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 4fc1bcc62310548f4a6bddd58180eef9
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 3f4b6118f278c401ba471207af5ff187
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<dependencies>
<iosPods>
<iosPod name="AnyThinkMediationTTAdapter" version="7.4.0.0.0" />
</iosPods>
</dependencies>

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 467edc4c87fe744a0af68a5c1fd0f494
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1 +0,0 @@
{"name":"csj","version":"7.4.0.0","country":1,"path":"Assets/AnyThinkPlugin/AnyThinkAds\\Plugins/iOS/China/csj"}

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: f014b4b54a4c14658bb414d8bab45881
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: e9c9c9037adb147c6a23506e8d09da1d
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<dependencies>
<iosPods>
<iosPod name="AnyThinkMediationGDTAdapter" version="4.15.70.1" />
</iosPods>
</dependencies>

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 776c604368e524ec1979fdc2145dc4a9
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1 +0,0 @@
{"name":"gdt","version":"4.15.70","country":1,"path":"Assets/AnyThinkPlugin/AnyThinkAds\\Plugins/iOS/China/gdt"}

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: c070344429af04b47b4acb3ee8301e55
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: bae10b849d38a4427930744677beff91
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 2aa4094683607444fa997c4dfdeaa995
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<dependencies>
<iosPods>
<iosPod name="AnyThinkMediationMintegralAdapter" version="8.0.4.0" />
</iosPods>
</dependencies>

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 10718b23e4fda4dfe834811b82367aa4
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1 +0,0 @@
{"name":"gtm","version":"8.0.4","country":1,"path":"Assets/AnyThinkPlugin/AnyThinkAds\\Plugins/iOS/China/gtm"}

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 8d817ab1a52d95a49a95ab30d224292f
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 22ed74d747c3a4e8d9be02f0655ec916
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: e73b56682c38e413aac2484a4523d197
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<dependencies>
<iosPods>
<iosPod name="AnyThinkMediationKuaiShouAdapter" version="4.12.20.1.0" />
</iosPods>
</dependencies>

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 3d70d9e3e50ca41cf8ed11587a469d3c
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1 +0,0 @@
{"name":"kuaishou","version":"4.12.20.1","country":1,"path":"Assets/AnyThinkPlugin/AnyThinkAds\\Plugins/iOS/China/kuaishou"}

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: d1ec7085a1737ec45b6dcbc106fb9f21
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 21b36bafe93f54b118240a3c32373f2a
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: a3ee56d73942543dd82e64f770cfe8fe
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<dependencies>
<iosPods>
<iosPod name="AnyThinkMediationSigmobAdapter" version="4.20.7.0" />
</iosPods>
</dependencies>

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: ea0d12cb31c714f42b27f4815033c999
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1 +0,0 @@
{"name":"sigmob","version":"4.20.7","country":1,"path":"Assets/AnyThinkPlugin/AnyThinkAds\\Plugins/iOS/China/sigmob"}

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 3ea1365aa6ff2df469b0806eaec9b296
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 3f5d23b57baa75d4b851f776033a2b2a
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1 +0,0 @@
{"curCountry":1,"china":{"android_version":"6.3.50","ios_version":"6.2.98","androidXSetting":1,"country":1,"android_admob_app_id":"","ios_admob_app_id":""},"nonchina":{"android_version":"","ios_version":"","androidXSetting":0,"country":2,"android_admob_app_id":"","ios_admob_app_id":""}}

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 26d597193f8ac94428601791309d24ed
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: b5d269c91bff98342b3b5164ab5dfba9
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Some files were not shown because too many files have changed in this diff Show More