Hi,
Post integration, when I shake the mobile, I am shown a blue Applovin symbol which when clicked, opens up the "Max Creative Debugger".
I want to disable this.
However, the admob adapter hasn't exposed any API to deal with this.Ā
Please let me know how to proceed.
I have tried to call 'ApplovinSDK' through JNI but it throws up multiple errors saying "AppLovinSdk [AppLovinSdk] Multiple SDK instances detected" and "[AppLovinSdk] Unable to find AppLovin SDK key. Please addĀ meta-data android:name="applovin.sdk.key" android:value="YOUR_SDK_KEY_HERE" into AndroidManifest.xml."
ā
private const string appLovinSdkClassName = "com.applovin.sdk.AppLovinSdk";
āAndroidJavaClass unityPlayer = new AndroidJavaClass("com.unity3d.player.UnityPlayer");
AndroidJavaObject currentActivity = unityPlayer.GetStatic<AndroidJavaObject>("currentActivity");
AndroidJavaClass appLovin = new AndroidJavaClass(appLovinSdkClassName);
bool creativeDebuggerEnabled = false;
#if DEVELOPMENT_BUILD
creativeDebuggerEnabled = false;
#endif
appLovin.CallStatic<AndroidJavaObject>("getInstance", currentActivity)
.Call<AndroidJavaObject>("getSettings")
.Call("setCreativeDebuggerEnabled", creativeDebuggerEnabled);
Please let me know how to disable Applovin "Max Creative Debugger" through Admob adapter in Unity.Ā Thanks.Ā