[A] Add Applovin Max SDK

This commit is contained in:
2024-08-08 13:10:29 +08:00
parent 76458664d8
commit 4343d67794
145 changed files with 23427 additions and 223 deletions

View File

@@ -0,0 +1,29 @@
#if UNITY_IOS
using System.Runtime.InteropServices;
/// <summary>
/// This class has been deprecated and will be removed in a future release
/// </summary>
public class MaxUserServiceiOS
{
private static readonly MaxUserServiceiOS _instance = new MaxUserServiceiOS();
public static MaxUserServiceiOS Instance
{
get { return _instance; }
}
[System.Obsolete("This version of the iOS consent flow has been deprecated as of MAX Unity Plugin v4.0.0 + iOS SDK v7.0.0, please refer to our documentation for enabling the new consent flow.")]
public void PreloadConsentDialog() {}
[DllImport("__Internal")]
private static extern void _MaxShowConsentDialog();
[System.Obsolete("This version of the iOS consent flow has been deprecated as of MAX Unity Plugin v4.0.0 + iOS SDK v7.0.0, please refer to our documentation for enabling the new consent flow.")]
public void ShowConsentDialog()
{
_MaxShowConsentDialog();
}
}
#endif