You've already forked Commercialization.topon
Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d653b06c8d | |||
| 9d431c66b6 | |||
| f29e06e3c5 | |||
| 77db35289e | |||
| 78d5a8b86d | |||
| 2f9a2ff371 | |||
| 1c6aa7b15e | |||
| 82c7a018bf | |||
| b9a63b8e35 | |||
| 10a50a6f8b | |||
| 40604ebe19 | |||
| 5981631076 | |||
| 52bd0d8e48 |
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 7906f0e7a18774d7cacdf2ec692623de
|
guid: 132d89fdc5b1440dfb33985e4e83a4ab
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
|
|||||||
@@ -229,6 +229,20 @@ namespace AnyThinkAds.Api
|
|||||||
client.setLocation(longitude, latitude);
|
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);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 6b000e45df70e44c683d126c70c6c7c5
|
guid: 03106b07c17e248179d51e195b5ea505
|
||||||
PluginImporter:
|
PluginImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
|
|||||||
@@ -31,5 +31,8 @@ namespace AnyThinkAds.Common
|
|||||||
void getArea(ATGetAreaListener listener);
|
void getArea(ATGetAreaListener listener);
|
||||||
void setWXStatus(bool install);
|
void setWXStatus(bool install);
|
||||||
void setLocation(double longitude, double latitude);
|
void setLocation(double longitude, double latitude);
|
||||||
|
void start();
|
||||||
|
bool isCnSDK();
|
||||||
|
void setLocalStrategyAssetPath(string assetPath);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,6 +10,9 @@ namespace AnyThinkAds
|
|||||||
{
|
{
|
||||||
public class ATAdsClientFactory
|
public class ATAdsClientFactory
|
||||||
{
|
{
|
||||||
|
private static IATInterstitialAdClient _sharedInterstitialAdClient;
|
||||||
|
private static IATRewardedVideoAdClient _sharedRewardedVideoAdClient;
|
||||||
|
|
||||||
public static IATBannerAdClient BuildBannerAdClient()
|
public static IATBannerAdClient BuildBannerAdClient()
|
||||||
{
|
{
|
||||||
#if UNITY_EDITOR
|
#if UNITY_EDITOR
|
||||||
@@ -27,17 +30,25 @@ namespace AnyThinkAds
|
|||||||
|
|
||||||
public static IATInterstitialAdClient BuildInterstitialAdClient()
|
public static IATInterstitialAdClient BuildInterstitialAdClient()
|
||||||
{
|
{
|
||||||
|
if (_sharedInterstitialAdClient != null)
|
||||||
|
{
|
||||||
|
return _sharedInterstitialAdClient;
|
||||||
|
}
|
||||||
|
|
||||||
#if UNITY_EDITOR
|
#if UNITY_EDITOR
|
||||||
// Testing UNITY_EDITOR first because the editor also responds to the currently
|
// Testing UNITY_EDITOR first because the editor also responds to the currently
|
||||||
// selected platform.
|
// selected platform.
|
||||||
#elif UNITY_ANDROID
|
#elif UNITY_ANDROID
|
||||||
return new AnyThinkAds.Android.ATInterstitialAdClient();
|
_sharedInterstitialAdClient = new AnyThinkAds.Android.ATInterstitialAdClient();
|
||||||
|
return _sharedInterstitialAdClient;
|
||||||
#elif (UNITY_5 && UNITY_IOS) || UNITY_IPHONE
|
#elif (UNITY_5 && UNITY_IOS) || UNITY_IPHONE
|
||||||
return new AnyThinkAds.iOS.ATInterstitialAdClient();
|
_sharedInterstitialAdClient = new AnyThinkAds.iOS.ATInterstitialAdClient();
|
||||||
|
return _sharedInterstitialAdClient;
|
||||||
#else
|
#else
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
return new UnityInterstitialClient();
|
_sharedInterstitialAdClient = new UnityInterstitialClient();
|
||||||
|
return _sharedInterstitialAdClient;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static IATNativeAdClient BuildNativeAdClient()
|
public static IATNativeAdClient BuildNativeAdClient()
|
||||||
@@ -72,18 +83,26 @@ namespace AnyThinkAds
|
|||||||
|
|
||||||
public static IATRewardedVideoAdClient BuildRewardedVideoAdClient()
|
public static IATRewardedVideoAdClient BuildRewardedVideoAdClient()
|
||||||
{
|
{
|
||||||
|
if (_sharedRewardedVideoAdClient != null)
|
||||||
|
{
|
||||||
|
return _sharedRewardedVideoAdClient;
|
||||||
|
}
|
||||||
|
|
||||||
#if UNITY_EDITOR
|
#if UNITY_EDITOR
|
||||||
// Testing UNITY_EDITOR first because the editor also responds to the currently
|
// Testing UNITY_EDITOR first because the editor also responds to the currently
|
||||||
// selected platform.
|
// selected platform.
|
||||||
|
|
||||||
#elif UNITY_ANDROID
|
#elif UNITY_ANDROID
|
||||||
return new AnyThinkAds.Android.ATRewardedVideoAdClient();
|
_sharedRewardedVideoAdClient = new AnyThinkAds.Android.ATRewardedVideoAdClient();
|
||||||
|
return _sharedRewardedVideoAdClient;
|
||||||
#elif (UNITY_5 && UNITY_IOS) || UNITY_IPHONE
|
#elif (UNITY_5 && UNITY_IOS) || UNITY_IPHONE
|
||||||
return new AnyThinkAds.iOS.ATRewardedVideoAdClient();
|
_sharedRewardedVideoAdClient = new AnyThinkAds.iOS.ATRewardedVideoAdClient();
|
||||||
|
return _sharedRewardedVideoAdClient;
|
||||||
#else
|
#else
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
return new UnityRewardedVideoAdClient();
|
_sharedRewardedVideoAdClient = new UnityRewardedVideoAdClient();
|
||||||
|
return _sharedRewardedVideoAdClient;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static IATSDKAPIClient BuildSDKAPIClient()
|
public static IATSDKAPIClient BuildSDKAPIClient()
|
||||||
@@ -162,6 +181,9 @@ namespace AnyThinkAds
|
|||||||
public void getArea(ATGetAreaListener listener) { }
|
public void getArea(ATGetAreaListener listener) { }
|
||||||
public void setWXStatus(bool install) { }
|
public void setWXStatus(bool install) { }
|
||||||
public void setLocation(double longitude, double latitude) { }
|
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() {}
|
||||||
public void showDebuggerUI(string debugKey) {}
|
public void showDebuggerUI(string debugKey) {}
|
||||||
}
|
}
|
||||||
@@ -490,4 +512,4 @@ namespace AnyThinkAds
|
|||||||
|
|
||||||
public void entryScenarioWithPlacementID(string placementId, string scenarioID) {}
|
public void entryScenarioWithPlacementID(string placementId, string scenarioID) {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -156,7 +156,7 @@ namespace AnyThinkAds.Android
|
|||||||
}catch(System.Exception e){
|
}catch(System.Exception e){
|
||||||
System.Console.WriteLine("Exception caught: {0}", e);
|
System.Console.WriteLine("Exception caught: {0}", e);
|
||||||
Debug.Log ("ATInterstitialAdClient : error."+e.Message);
|
Debug.Log ("ATInterstitialAdClient : error."+e.Message);
|
||||||
|
throw;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -403,6 +403,7 @@ namespace AnyThinkAds.Android
|
|||||||
{
|
{
|
||||||
System.Console.WriteLine("Exception caught: {0}", e);
|
System.Console.WriteLine("Exception caught: {0}", e);
|
||||||
Debug.Log("Unity: ATInterstitialAdClient:showAutoAd() : error." + e.Message);
|
Debug.Log("Unity: ATInterstitialAdClient:showAutoAd() : error." + e.Message);
|
||||||
|
throw;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -160,7 +160,7 @@ namespace AnyThinkAds.Android
|
|||||||
}catch(System.Exception e){
|
}catch(System.Exception e){
|
||||||
System.Console.WriteLine("Exception caught: {0}", e);
|
System.Console.WriteLine("Exception caught: {0}", e);
|
||||||
Debug.Log ("ATRewardedVideoAdClient : error."+e.Message);
|
Debug.Log ("ATRewardedVideoAdClient : error."+e.Message);
|
||||||
|
throw;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -390,6 +390,7 @@ namespace AnyThinkAds.Android
|
|||||||
{
|
{
|
||||||
System.Console.WriteLine("Exception caught: {0}", e);
|
System.Console.WriteLine("Exception caught: {0}", e);
|
||||||
Debug.Log("Unity: ATRewardedVideoAdClient:showAutoAd() : error." + e.Message);
|
Debug.Log("Unity: ATRewardedVideoAdClient:showAutoAd() : error." + e.Message);
|
||||||
|
throw;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -9,11 +9,13 @@ namespace AnyThinkAds.Android
|
|||||||
public class ATSDKAPIClient : AndroidJavaProxy, IATSDKAPIClient
|
public class ATSDKAPIClient : AndroidJavaProxy, IATSDKAPIClient
|
||||||
{
|
{
|
||||||
private AndroidJavaObject sdkInitHelper;
|
private AndroidJavaObject sdkInitHelper;
|
||||||
|
private AndroidJavaClass sdkClass;
|
||||||
private ATSDKInitListener sdkInitListener;
|
private ATSDKInitListener sdkInitListener;
|
||||||
public ATSDKAPIClient () : base("com.anythink.unitybridge.sdkinit.SDKInitListener")
|
public ATSDKAPIClient () : base("com.anythink.unitybridge.sdkinit.SDKInitListener")
|
||||||
{
|
{
|
||||||
this.sdkInitHelper = new AndroidJavaObject(
|
this.sdkInitHelper = new AndroidJavaObject(
|
||||||
"com.anythink.unitybridge.sdkinit.SDKInitHelper", this);
|
"com.anythink.unitybridge.sdkinit.SDKInitHelper", this);
|
||||||
|
this.sdkClass = new AndroidJavaClass("com.anythink.core.api.ATSDK");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void initSDK(string appId, string appKey)
|
public void initSDK(string appId, string appKey)
|
||||||
@@ -390,5 +392,59 @@ namespace AnyThinkAds.Android
|
|||||||
Debug.Log("ATSDKAPIClient : error." + e.Message);
|
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);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -193,6 +193,21 @@ namespace AnyThinkAds.iOS {
|
|||||||
Debug.Log("Unity:ATSDKAPIClient::setLocation()");
|
Debug.Log("Unity:ATSDKAPIClient::setLocation()");
|
||||||
ATManager.setLocation(longitude, latitude);
|
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
|
//iOS显示Debugger UI
|
||||||
public void showDebuggerUI()
|
public void showDebuggerUI()
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
#import "ATBannerAdWrapper.h"
|
#import "ATBannerAdWrapper.h"
|
||||||
#import <AnyThinkBanner/AnyThinkBanner.h>
|
#import <AnyThinkSDK/AnyThinkSDK.h>
|
||||||
#import "ATUnityUtilities.h"
|
#import "ATUnityUtilities.h"
|
||||||
//5.6.6版本以上支持 admob 自适应banner (用到时再import该头文件)
|
//5.6.6版本以上支持 admob 自适应banner (用到时再import该头文件)
|
||||||
//#import <GoogleMobileAds/GoogleMobileAds.h>
|
//#import <GoogleMobileAds/GoogleMobileAds.h>
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
#import "ATInterstitialAdWrapper.h"
|
#import "ATInterstitialAdWrapper.h"
|
||||||
#import "ATUnityUtilities.h"
|
#import "ATUnityUtilities.h"
|
||||||
#import <AnyThinkInterstitial/AnyThinkInterstitial.h>
|
#import <AnyThinkSDK/AnyThinkSDK.h>
|
||||||
|
|
||||||
NSString *const kLoadUseRVAsInterstitialKey = @"UseRewardedVideoAsInterstitial";
|
NSString *const kLoadUseRVAsInterstitialKey = @"UseRewardedVideoAsInterstitial";
|
||||||
NSString *const kInterstitialExtraAdSizeKey = @"interstitial_ad_size";
|
NSString *const kInterstitialExtraAdSizeKey = @"interstitial_ad_size";
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
#import <Foundation/Foundation.h>
|
#import <Foundation/Foundation.h>
|
||||||
#import "ATBaseUnityWrapper.h"
|
#import "ATBaseUnityWrapper.h"
|
||||||
#import <AnyThinkNative/ATNativeADDelegate.h>
|
#import <AnyThinkSDK/AnyThinkSDK.h>
|
||||||
|
|
||||||
extern NSString *const kParsedPropertiesFrameKey;
|
extern NSString *const kParsedPropertiesFrameKey;
|
||||||
extern NSString *const kParsedPropertiesBackgroundColorKey;
|
extern NSString *const kParsedPropertiesBackgroundColorKey;
|
||||||
|
|||||||
@@ -10,9 +10,7 @@
|
|||||||
#import "ATUnityUtilities.h"
|
#import "ATUnityUtilities.h"
|
||||||
#import <Foundation/Foundation.h>
|
#import <Foundation/Foundation.h>
|
||||||
#import <UIKit/UIKit.h>
|
#import <UIKit/UIKit.h>
|
||||||
#import <AnyThinkNative/ATAdManager+Native.h>
|
#import <AnyThinkSDK/AnyThinkSDK.h>
|
||||||
#import <AnyThinkNative/ATNativeAdConfiguration.h>
|
|
||||||
#import <AnyThinkNative/ATNativeADView.h>
|
|
||||||
#import "ATAutolayoutCategories.h"
|
#import "ATAutolayoutCategories.h"
|
||||||
#import "ATUnityManager.h"
|
#import "ATUnityManager.h"
|
||||||
#import "ATNativeSelfRenderView.h"
|
#import "ATNativeSelfRenderView.h"
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
#import <UIKit/UIKit.h>
|
#import <UIKit/UIKit.h>
|
||||||
#import <AnyThinkNative/AnyThinkNative.h>
|
#import <AnyThinkSDK/AnyThinkSDK.h>
|
||||||
|
|
||||||
|
|
||||||
NS_ASSUME_NONNULL_BEGIN
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|||||||
@@ -7,7 +7,6 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
#import "ATNativeSelfRenderView.h"
|
#import "ATNativeSelfRenderView.h"
|
||||||
#import <AnyThinkSDK/ATImageLoader.h>
|
|
||||||
#import "ATNativeAdWrapper.h"
|
#import "ATNativeAdWrapper.h"
|
||||||
#import "ATAutolayoutCategories.h"
|
#import "ATAutolayoutCategories.h"
|
||||||
#import "ATUnityUtilities.h"
|
#import "ATUnityUtilities.h"
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
#import "ATRewardedVideoWrapper.h"
|
#import "ATRewardedVideoWrapper.h"
|
||||||
#import "ATUnityUtilities.h"
|
#import "ATUnityUtilities.h"
|
||||||
#import <AnyThinkRewardedVideo/AnyThinkRewardedVideo.h>
|
#import <AnyThinkSDK/AnyThinkSDK.h>
|
||||||
|
|
||||||
NSString *const kLoadExtraUserIDKey = @"UserId";
|
NSString *const kLoadExtraUserIDKey = @"UserId";
|
||||||
NSString *const kLoadExtraMediaExtraKey = @"UserExtraData";
|
NSString *const kLoadExtraMediaExtraKey = @"UserExtraData";
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
#import "ATSplashAdWrapper.h"
|
#import "ATSplashAdWrapper.h"
|
||||||
#import "ATUnityUtilities.h"
|
#import "ATUnityUtilities.h"
|
||||||
#import <AnyThinkSplash/AnyThinkSplash.h>
|
#import <AnyThinkSDK/AnyThinkSDK.h>
|
||||||
|
|
||||||
@interface ATSplashAdWrapper () <ATSplashDelegate>
|
@interface ATSplashAdWrapper () <ATSplashDelegate>
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 1e8f2e9c89b25426183174547a15d247
|
guid: 6c22f00d8a049491f9fb73e80d266bd3
|
||||||
PluginImporter:
|
PluginImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 3062b0f1e56a64e7ea4d843dde2aa0c2
|
guid: 2b8623ca670c641eb9ef81563fb8e2ec
|
||||||
PluginImporter:
|
PluginImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 26285ca98a78f457881762235082f07a
|
guid: 3ebf1cad649364554b542bffc52eafd8
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
<dependencies>
|
<dependencies>
|
||||||
<androidPackages>
|
<androidPackages>
|
||||||
|
<repositories>
|
||||||
|
<repository>https://jfrog.takuad.com/artifactory/china_sdk</repository>
|
||||||
|
</repositories>
|
||||||
|
<androidPackage spec="com.anythink.sdk:core-taku:6.5.52"/>
|
||||||
<androidPackage spec="com.android.support:appcompat-v7:28.0.0"/>
|
<androidPackage spec="com.android.support:appcompat-v7:28.0.0"/>
|
||||||
</androidPackages>
|
</androidPackages>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: cd0bd7f7f2c0948a8a8b9416b9b35b18
|
guid: 7a73f31a7fa33468dbe302869e291198
|
||||||
TextScriptImporter:
|
TextScriptImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 72481ce8801cd4eb29bf2a4853ebe5b0
|
guid: 85ef0e74147a04f4d91ac86c27edd8b3
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -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:
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -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:
|
|
||||||
Binary file not shown.
@@ -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:
|
|
||||||
Binary file not shown.
@@ -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:
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 9634f6b8602634017a969648cadeb629
|
guid: 56d92f8a16dba429ba7275e8efdcd8af
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: a2bc97553ae314289a9a2013322cd4a9
|
guid: e9587ea14cae241c59427df38278d1f6
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
@@ -0,0 +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"/>
|
||||||
|
</androidPackages>
|
||||||
|
</dependencies>
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 6675c71972048453abf7c20a06967d5b
|
guid: 5573b9293433f436986248b60de1b145
|
||||||
TextScriptImporter:
|
TextScriptImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: e1b6816ce3172d04c881b3aed105923b
|
guid: 5f363c1a88f18174987f8d657f0a367d
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 66285aca9cb6942c39258e437a82d37c
|
guid: 1f9463e4eab324a528e5920eeb986e7f
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
|
|||||||
Binary file not shown.
@@ -1,32 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 9f42d4118b486454ca9a4caf4261ea24
|
|
||||||
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:
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: faf88f547152a4fa0b48ea5d4e233b85
|
guid: 2baed5d8ff56e44eda5212811ea487fb
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
<dependencies>
|
||||||
|
<androidPackages>
|
||||||
|
<androidPackage spec="com.anythink.sdk:adapter-taku-baidu:9.432.1.0"/>
|
||||||
|
<androidPackage spec="mobi.baidu.sdk:mobads:9.432"/>
|
||||||
|
</androidPackages>
|
||||||
|
</dependencies>
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 3d70d9e3e50ca41cf8ed11587a469d3c
|
guid: 20eb733c583b24e61aa380a5b4b8049f
|
||||||
TextScriptImporter:
|
TextScriptImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
||||||
Binary file not shown.
@@ -1,32 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 305187be97cf44a6189ccb496e4d6ce9
|
|
||||||
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:
|
|
||||||
@@ -1 +1 @@
|
|||||||
{"name":"baidu","version":"9.394","country":1,"path":"Assets/AnyThinkPlugin/Script/IntegrationManager/Editor/../../..//AnyThinkAds\\Plugins/Android/China/mediation/baidu"}
|
{"name":"baidu","version":"9.432","country":1,"path":"Assets/AnyThinkPlugin/AnyThinkAds\\Plugins/Android/China/mediation/baidu"}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: c8cc45ac0f487bd48a3f5dedce04bf4e
|
guid: 877de551d865024459220025e667a8bd
|
||||||
TextScriptImporter:
|
TextScriptImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 79e7d078a28b97e4aa88261277efdc65
|
guid: 015c2d452459b449f92c9793c98a8fd5
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: e9c9c9037adb147c6a23506e8d09da1d
|
guid: dbf64e3acd7e84b67aff6edfdfabb2d4
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
<dependencies>
|
||||||
|
<!-- CSJ + GroMore mix integration is provided by local AARs in Assets/Plugins/Android. -->
|
||||||
|
</dependencies>
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 4fc1bcc62310548f4a6bddd58180eef9
|
guid: ff585799e2d0c42b5b227471c17279a3
|
||||||
TextScriptImporter:
|
TextScriptImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"name":"csj","version":"7.5.1.0","country":1,"path":"Assets/AnyThinkPlugin/AnyThinkAds\\Plugins/Android/China/mediation/csj"}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: c070344429af04b47b4acb3ee8301e55
|
guid: ce7b55d484bbcfe458c0855637c86538
|
||||||
TextScriptImporter:
|
TextScriptImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 7c926d35641b148398892fe5bcca2d03
|
guid: cf5141130ed5b45d2b219e231ef457c1
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: e73b56682c38e413aac2484a4523d197
|
guid: 122e70b479a7447688a289ae19fcfcad
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
@@ -0,0 +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"/>
|
||||||
|
</androidPackages>
|
||||||
|
</dependencies>
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 776c604368e524ec1979fdc2145dc4a9
|
guid: 6dd6600836ea34a7ebade28a361d0d09
|
||||||
TextScriptImporter:
|
TextScriptImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
||||||
Binary file not shown.
@@ -1,32 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 277c175e84b2943d38915ae54e27da55
|
|
||||||
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:
|
|
||||||
Binary file not shown.
@@ -1,32 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 51f8854c5489747d7a4b5dfca635b425
|
|
||||||
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:
|
|
||||||
@@ -1 +1 @@
|
|||||||
{"name":"gdt","version":"4.642.1512","country":1,"path":"Assets/AnyThinkPlugin/Script/IntegrationManager/Editor/../../..//AnyThinkAds\\Plugins/Android/China/mediation/gdt"}
|
{"name":"gdt","version":"4.671.1541","country":1,"path":"Assets/AnyThinkPlugin/AnyThinkAds\\Plugins/Android/China/mediation/gdt"}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 5c230e8420af7ab4fa09409a9d1ef6cf
|
guid: e7884cb6f1807d24ba5d55cd4ca1d3e5
|
||||||
TextScriptImporter:
|
TextScriptImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: f4a837cf60e40c84690ece85b75c748e
|
guid: b0f7e15dfa0964efeb4fb2520fe4da8a
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 24a14d7b4cbcc4136807dd7531b8e9af
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
<dependencies>
|
||||||
|
<androidPackages>
|
||||||
|
<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.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"/>
|
||||||
|
<androidPackage spec="com.mbridge.msdk.support:mbnativeadvanced:16.3.67"/>
|
||||||
|
<androidPackage spec="com.mbridge.msdk.support:mbsplash:16.3.67"/>
|
||||||
|
<androidPackage spec="com.mbridge.msdk.support:mbbanner:16.3.67"/>
|
||||||
|
<androidPackage spec="com.mbridge.msdk.support:mbbid:16.3.67"/>
|
||||||
|
<androidPackage spec="androidx.recyclerview:recyclerview:1.1.0"/>
|
||||||
|
</androidPackages>
|
||||||
|
</dependencies>
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 220064c9d0f91415b86ab3bf1a729ac8
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"name":"gtm","version":"16.3.67","country":1,"path":"Assets/AnyThinkPlugin/AnyThinkAds\\Plugins/Android/China/mediation/gtm"}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: aa4ff5b557e70ce45bfe14aa9dad7b09
|
guid: bf13b1b13509b0d4081a9181302a3c9c
|
||||||
TextScriptImporter:
|
TextScriptImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: f80e8f7b487eb4eccb6d3db6fa9f64c5
|
guid: d7ea1f2761a954d17bf9bbd0cfd41eeb
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 369efabd8c5434cdc8a303cd78dc2010
|
guid: 01632421e4bf2409d9f7c72ec852745d
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
<dependencies>
|
<dependencies>
|
||||||
<androidPackages>
|
<androidPackages>
|
||||||
|
<androidPackage spec="com.anythink.sdk:adapter-taku-kuaishou:4.12.20.1.1.0"/>
|
||||||
|
<androidPackage spec="com.anythink.sdk:sdk-ads-kuaishou:4.12.20.1"/>
|
||||||
<androidPackage spec="com.android.support:design:28.0.0"/>
|
<androidPackage spec="com.android.support:design:28.0.0"/>
|
||||||
</androidPackages>
|
</androidPackages>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: dee12426ed2f34e28b90bc22712d1f30
|
guid: d00a7a231f8d8489a95ad98ad2bf8eb5
|
||||||
TextScriptImporter:
|
TextScriptImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
||||||
|
|||||||
Binary file not shown.
@@ -1,32 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 1ee83d47151684fa7974146eb691e7b4
|
|
||||||
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:
|
|
||||||
Binary file not shown.
@@ -1,32 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: a0f04458561c44fa7a1b280cc2b92e6b
|
|
||||||
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:
|
|
||||||
@@ -1 +1 @@
|
|||||||
{"name":"kuaishou","version":"4.6.30.1","country":1,"path":"Assets/AnyThinkPlugin/Script/IntegrationManager/Editor/../../..//AnyThinkAds\\Plugins/Android/China/mediation/kuaishou"}
|
{"name":"kuaishou","version":"4.12.20.1","country":1,"path":"Assets/AnyThinkPlugin/AnyThinkAds\\Plugins/Android/China/mediation/kuaishou"}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: ac5dc9887409a4e4584a417d1e4a0d88
|
guid: 10e7c7db796873948b48a37546d590f7
|
||||||
TextScriptImporter:
|
TextScriptImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 32b61361a029149498feb2220aafc49c
|
guid: 31a583814949b4c55a70bd82b81dbcde
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 38edd06a2ee9f48d0be8f1207f32b8dd
|
guid: d7c5e1477e3dc4ce99f86cadddba9d5f
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
<dependencies>
|
<dependencies>
|
||||||
<androidPackages>
|
<androidPackages>
|
||||||
<androidPackage spec="io.reactivex.rxjava2:rxjava:2.0.1"/>
|
<androidPackage spec="com.anythink.sdk:adapter-taku-tap:4.1.2.7.1.1"/>
|
||||||
<androidPackage spec="io.reactivex.rxjava2:rxandroid:2.0.1"/>
|
<androidPackage spec="com.anythink.sdk:sdk-ads-tap:4.1.2.7"/>
|
||||||
<androidPackage spec="com.squareup.okhttp3:okhttp:3.12.1"/>
|
<androidPackage spec="com.squareup.okhttp3:okhttp:3.12.1"/>
|
||||||
<androidPackage spec="com.github.bumptech.glide:glide:4.9.0"/>
|
<androidPackage spec="com.github.bumptech.glide:glide:4.9.0"/>
|
||||||
|
<androidPackage spec="com.android.support:appcompat-v7:28.0.0"/>
|
||||||
|
<androidPackage spec="com.android.support:support-v4:28.0.0"/>
|
||||||
|
<androidPackage spec="com.android.support:recyclerview-v7:28.0.0"/>
|
||||||
</androidPackages>
|
</androidPackages>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 748ffe71e407e478e94340374014c84a
|
guid: e609a3809c52044d9a657c6f57ae023f
|
||||||
TextScriptImporter:
|
TextScriptImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
||||||
|
|||||||
Binary file not shown.
@@ -1,32 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 7129740b1de644d138f1793dfb6d1de5
|
|
||||||
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:
|
|
||||||
Binary file not shown.
@@ -1,32 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: bb5704333917647e88123b00b46556a3
|
|
||||||
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:
|
|
||||||
@@ -1 +1 @@
|
|||||||
{"name":"tap","version":"3.16.3.45","country":1,"path":"Assets/AnyThinkPlugin/Script/IntegrationManager/Editor/../../..//AnyThinkAds\\Plugins/Android/China/mediation/tap"}
|
{"name":"tap","version":"4.1.2.7","country":1,"path":"Assets/AnyThinkPlugin/AnyThinkAds\\Plugins/Android/China/mediation/tap"}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 4ccb4470b260c014d91cdc1e5a3e1aa3
|
guid: 11c4debe559e7544992fdf034f3646ac
|
||||||
TextScriptImporter:
|
TextScriptImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
||||||
|
|||||||
Binary file not shown.
@@ -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:
|
|
||||||
Binary file not shown.
@@ -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:
|
|
||||||
Binary file not shown.
@@ -1,32 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 12b6831c0c5839d4ca846c176a062bf8
|
|
||||||
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:
|
|
||||||
Binary file not shown.
@@ -1,32 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: f718cca21da6c364cb5b369d0bed9cff
|
|
||||||
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:
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user