fix:1、删除max广告。2、更换sdk

This commit is contained in:
2026-05-27 10:41:05 +08:00
parent d4f6b82209
commit bd28506b1f
945 changed files with 23352 additions and 21625 deletions
@@ -0,0 +1,35 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using AnyThinkAds.Api;
namespace AnyThinkAds.Common
{
public interface IATSDKAPIClient
{
void initSDK(string appId, string appKey);
void initSDK(string appId, string appKey, ATSDKInitListener listener);
void showDebuggerUI();
void showDebuggerUI(string debugKey);
void getUserLocation(ATGetUserLocationListener listener);
void setGDPRLevel(int level);
void showGDPRAuth();
void showGDPRConsentDialog(ATConsentDismissListener listener);
void addNetworkGDPRInfo(int networkType, string mapJson);
void setChannel(string channel);
void setSubChannel(string subchannel);
void initCustomMap(string cutomMap);
void setCustomDataForPlacementID(string customData, string placementID);
void setLogDebug(bool isDebug);
int getGDPRLevel();
bool isEUTraffic();
void deniedUploadDeviceInfo(string deniedInfo);
void setExcludeBundleIdArray(string bundleIds);
void setExcludeAdSourceIdArrayForPlacementID(string placementID, string adsourceIds);
void setSDKArea(int area);
void getArea(ATGetAreaListener listener);
void setWXStatus(bool install);
void setLocation(double longitude, double latitude);
}
}