You've already forked Commercialization.topon
update 1.1.25
This commit is contained in:
34
AnyThinkPlugin/AnyThinkAds/Common/IATSDKAPIClient.cs
Normal file
34
AnyThinkPlugin/AnyThinkAds/Common/IATSDKAPIClient.cs
Normal file
@@ -0,0 +1,34 @@
|
||||
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 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user