Creation of WebApp failed! ADS 3.4.4 PACKMAN

I have an error initializing my unity ADS integration. I’m using the last version of unity ads monetization 3.4.4 from PACKAGE MANAGER
The initialization script is like: (android and ios id are assigned by inspector)

can anyone help? (I post it in a new thread for an urgent answer)

#if UNITY_ANDROID
        appKey = androidId;
#elif UNITY_IOS
        appKey = iosId;
#elif UNITY_EDITOR
        appKey = "1111111";
#endif

        if (!Advertisement.isInitialized)
        {
            if (Advertisement.isSupported)
            {
                //Advertisement.AddListener(this);
                Advertisement.Initialize(appKey, testMode);
            }
        }

        Advertisement.AddListener(this);
    }
    public void _ShowRewarded()
    {
        if (Advertisement.IsReady(_videoPlacement))
        {
            Advertisement.Show(_videoPlacement);
        }

        //mostrar mensaje ad no disponible
        else
        {

        }
    }
2020-03-18 19:25:50.888 28472-28499/com.Bermost.TheGurons D/Unity: System memory in use before: 58.1 MB.
2020-03-18 19:25:50.935 28472-28499/com.Bermost.TheGurons D/Unity: System memory in use after: 58.4 MB.
2020-03-18 19:25:50.935 28472-28499/com.Bermost.TheGurons D/Unity: Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 5099.
2020-03-18 19:25:50.935 28472-28499/com.Bermost.TheGurons D/Unity: Total: 46.235838 ms (FindLiveObjects: 2.320937 ms CreateObjectMapping: 0.948385 ms MarkObjects: 42.635316 ms  DeleteObjects: 0.327500 ms)
2020-03-18 19:25:50.935 28472-28545/com.Bermost.TheGurons D/Unity: Unloading 0 Unused Serialized files (Serialized files now loaded: 0)
2020-03-18 19:25:50.938 28472-28499/com.Bermost.TheGurons D/Unity: System memory in use before: 58.1 MB.
2020-03-18 19:25:50.982 28472-28499/com.Bermost.TheGurons D/Unity: System memory in use after: 58.3 MB.
2020-03-18 19:25:50.982 28472-28499/com.Bermost.TheGurons D/Unity: Unloading 0 unused Assets to reduce memory usage. Loaded Objects now: 5099.
2020-03-18 19:25:50.982 28472-28499/com.Bermost.TheGurons D/Unity: Total: 44.297036 ms (FindLiveObjects: 2.150730 ms CreateObjectMapping: 0.888854 ms MarkObjects: 41.169379 ms  DeleteObjects: 0.084792 ms)
2020-03-18 19:26:24.883 28472-28556/com.Bermost.TheGurons E/UnityAds: com.unity3d.services.core.configuration.InitializeThread$InitializeStateCreate.execute() (line:344) :: Unity Ads WebApp creation failed!
2020-03-18 19:26:24.884 28472-28556/com.Bermost.TheGurons E/UnityAds: com.unity3d.services.core.configuration.InitializeThread$InitializeStateError.execute() (line:383) :: Unity Ads init: halting init in create webapp: Creation of WebApp failed!

I tried reproducing your issue and was unable to. Can you provide more details such as a full log and scripts so we can better understand what is going on. Can you list the basic details like which unity version your using, is this in editor or on device, and anything else you think might help us understand what is going on. a repor project is always the fastest way to get precise feedback.

I’m using Unity 2019.3.5, Motorola G7 Power Android 9. Ads PACKMAN 3.4.4.
(Previous use PACKMAN version, I had installed AssetStore Version, before update I deleted all asset Version)

The entire initialization and use is:

using UnityEngine;

using CodeStage.AntiCheat.ObscuredTypes;
using UnityEngine.Advertisements;
using System.Collections;

public class AdsManager : MonoBehaviour, IUnityAdsListener
{
    public delegate void AdEvent(string _value);

    public static AdEvent OnReadyAd;
    public static AdEvent OnErrorAd;
    public static AdEvent OnStartAd;
    public static AdEvent OnFinishedAd;
    public static AdEvent OnSkippedAd;
    public static AdEvent OnFailedAd;

    public static void ReadyAd(string _value)
    {
        OnReadyAd?.Invoke(_value);
    }

    public static void ErrorAd(string _value)
    {
        OnErrorAd?.Invoke(_value);
    }

    public static void StartAd(string _value)
    {
        OnStartAd?.Invoke(_value);
    }

    public static void FinishedAd(string _value)
    {
        OnFinishedAd?.Invoke(_value);
    }

    public static void SkippedAd(string _value)
    {
        OnSkippedAd?.Invoke(_value);
    }

    public static void FailedAd(string _value)
    {
        OnFailedAd?.Invoke(_value);
    }


    private static AdsManager Instance;
    public static AdsManager instance
    {
        get { return Instance; }
    }


    #region VARIABLES

    [Header("Modo de Prueba")]
    [SerializeField] private ObscuredBool testMode = true;

    [Header("Configuración Ads")]
    [SerializeField] private ObscuredString androidId = "";
    [SerializeField] private ObscuredString iosId = "";
    private ObscuredString appKey;


    [Header("Placement")]
    [SerializeField] private string _bannerPlacement = Ads_Constants.Ads_Placement_Banner;
    [SerializeField] private string _videoPlacement = Ads_Constants.Ads_Placement_Rewarded;

    #endregion

    public void _Init()
    {
        if (Instance == null)
        {
            Instance = this;
            DontDestroyOnLoad(gameObject);
        }

        //ASIGNACIÓN A APPKEY SEGUN PLATAFORMA
#if UNITY_ANDROID
        appKey = androidId;
#elif UNITY_IOS
        appKey = iosId;
#elif UNITY_EDITOR
        appKey = "1111111";
#endif

        if (!Advertisement.isInitialized)
        {
            if (Advertisement.isSupported)
            {
                Advertisement.Initialize(appKey, testMode);
            }
        }

        Advertisement.AddListener(this);
    }

    void OnDisable()
    {
        Advertisement.RemoveListener(this);
    }

    public void _ShowBanner(bool active)
    {
        if (active)
        {
            StartCoroutine(_WaitBanner());
        }
        else
        {
            StopCoroutine(_WaitBanner());
            Advertisement.Banner.Hide();
        }
    }


    IEnumerator _WaitBanner()
    {
        while (!Advertisement.IsReady(_bannerPlacement))
        {
            yield return new WaitForSeconds(0.5f);
        }
        Advertisement.Banner.SetPosition(BannerPosition.BOTTOM_CENTER);
        Advertisement.Banner.Show(_bannerPlacement);
    }


    public void _ShowRewarded()
    {
        if (Advertisement.IsReady(_videoPlacement))
        {
            Advertisement.Show(_videoPlacement);
        }

        //mostrar mensaje ad no disponible
        else
        {

        }
    }

    public bool _IsRewardedReady()
    {
        return Advertisement.IsReady(_videoPlacement);
    }

    public void OnUnityAdsReady(string placementId)
    {
        ReadyAd(placementId);
    }

    public void OnUnityAdsDidError(string message)
    {
        ErrorAd(message);
    }

    public void OnUnityAdsDidStart(string placementId)
    {
        StartAd(placementId);
    }

    public void OnUnityAdsDidFinish(string placementId, ShowResult showResult)
    {
        if (placementId == Ads_Constants.Ads_Placement_Rewarded)
        {
            switch (showResult)
            {
                case ShowResult.Finished:
                    FinishedAd(placementId);
                    break;

                case ShowResult.Skipped:
                    SkippedAd(placementId);
                    break;

                case ShowResult.Failed:
                    FailedAd(placementId);
                    break;
            }
        }

    }
}

public class Ads_Constants
{
    public const string Ads_Placement_Banner = "Banner";
    public const string Ads_Placement_Rewarded = "rewardedVideo";
}

And the Logcat

2020-03-19 18:09:30.439 18645-18674/com.Bermost.TheGurons D/Unity: UnloadTime: 0.964896 ms
2020-03-19 18:09:30.456 18645-18674/com.Bermost.TheGurons D/Unity: UUID: 3bd10ab937a58511 => da9f74a94d7f916dde8c1e69ec4c5f9e
2020-03-19 18:09:30.654 18645-18674/com.Bermost.TheGurons I/Unity: [TouchScript] Initialized Unity touch input.
     #0 0x718c3c77e4 (libunity.so) GetStacktrace(int) 0x3c
     #1 0x718c248768 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x21c
     #2 0x718bd7d5fc (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> >, Object*) 0x90
     #3 0x718bd7d52c (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xf8
     #4 0x7189178a28 (libil2cpp.so) ? 0x0
     #5 0x71888bb41c (libil2cpp.so) ? 0x0
     #6 0x71887dc7a8 (libil2cpp.so) ? 0x0
     #7 0x718bcb202c (libunity.so) scripting_method_invoke(ScriptingMethodPtr, ScriptingObjectPtr, ScriptingArguments&, ScriptingExceptionPtr*, bool) 0xa4
     #8 0x718bcc155c (libunity.so) ScriptingInvocation::Invoke(ScriptingExceptionPtr*, bool) 0x98
     #9 0x718bccd500 (libunity.so) MonoBehaviour::AddToManager() 0x1b8
     #10 0x718bcccfa4 (libunity.so) MonoBehaviour::AwakeFromLoad(AwakeFromLoadMode) 0x2b
2020-03-19 18:09:30.817 18645-18674/com.Bermost.TheGurons I/Unity: Initializing UnityPurchasing via Codeless IAP
     #0 0x718c3c77e4 (libunity.so) GetStacktrace(int) 0x3c
     #1 0x718c248768 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x21c
     #2 0x718bd7d5fc (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> >, Object*) 0x90
     #3 0x718bd7d52c (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xf8
     #4 0x71897ed93c (libil2cpp.so) ? 0x0
     #5 0x71888baf3c (libil2cpp.so) ? 0x0
     #6 0x71887dc7a8 (libil2cpp.so) ? 0x0
     #7 0x718bcb202c (libunity.so) scripting_method_invoke(ScriptingMethodPtr, ScriptingObjectPtr, ScriptingArguments&, ScriptingExceptionPtr*, bool) 0xa4
     #8 0x718bcc155c (libunity.so) ScriptingInvocation::Invoke(ScriptingExceptionPtr*, bool) 0x98
     #9 0x718bae0bc8 (libunity.so) RuntimeInitializeOnLoadManager::ExecuteInitializeOnLoad(std::__ndk1::vector<int, stl_allocator<int, (MemLabelIdentifier
2020-03-19 18:09:30.819 18645-18674/com.Bermost.TheGurons I/Unity: UnityIAP Version: 1.23.1
     #0 0x718c3c77e4 (libunity.so) GetStacktrace(int) 0x3c
     #1 0x718c248768 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x21c
     #2 0x718bd7d5fc (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> >, Object*) 0x90
     #3 0x718bd7d52c (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xf8
     #4 0x71889d1c94 (libil2cpp.so) ? 0x0
     #5 0x71897ed9a8 (libil2cpp.so) ? 0x0
     #6 0x71888baf3c (libil2cpp.so) ? 0x0
     #7 0x71887dc7a8 (libil2cpp.so) ? 0x0
     #8 0x718bcb202c (libunity.so) scripting_method_invoke(ScriptingMethodPtr, ScriptingObjectPtr, ScriptingArguments&, ScriptingExceptionPtr*, bool) 0xa4
     #9 0x718bcc155c (libunity.so) ScriptingInvocation::Invoke(ScriptingExceptionPtr*, bool) 0x98
     #10 0x718bae0bc8 (libunity.so) RuntimeInitializeOnLoadManager::ExecuteInitializeOnLoad(std::__ndk1::vector<int, stl_allocator<int, (
2020-03-19 18:09:30.838 18645-18674/com.Bermost.TheGurons I/UnityIAP: IAB helper created.
2020-03-19 18:09:30.878 18645-18674/com.Bermost.TheGurons D/Unity: Sensor :        Accelerometer ( 1) ; 0.002396 / 0.00s ; BMI160 Accelerometer / BOSCH
2020-03-19 18:09:30.890 18645-18674/com.Bermost.TheGurons D/Unity: Choreographer available: Enabling VSYNC timing
2020-03-19 18:09:30.994 18645-18685/com.Bermost.TheGurons D/NetworkSecurityConfig: No Network Security Config specified, using platform default
2020-03-19 18:09:31.255 18645-18674/com.Bermost.TheGurons E/Unity: Actual Version
    SaveSystem:Load()
    Initialize:Init()
    InitializationEvents:Invoke()
  
    (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 35)
2020-03-19 18:09:31.293 18645-18674/com.Bermost.TheGurons I/UnityIAP: Starting in-app billing setup.
2020-03-19 18:09:31.351 18645-18645/com.Bermost.TheGurons I/UnityIAP: Billing service connected.
2020-03-19 18:09:31.352 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:09:31.352 18645-18739/com.Bermost.TheGurons I/UnityIAP: Checking for in-app billing 3 support.
2020-03-19 18:09:31.432 18645-18674/com.Bermost.TheGurons D/UnityAds: com.unity3d.services.core.misc.Utilities.writeFile() (line:127) :: Wrote file: /data/user/0/com.Bermost.TheGurons/files/UnityAdsStorage-public-data.json
2020-03-19 18:09:31.432 18645-18674/com.Bermost.TheGurons D/UnityAds: com.unity3d.services.core.device.Storage.sendEvent() (line:81) :: Couldn't send storage event to WebApp
2020-03-19 18:09:31.437 18645-18674/com.Bermost.TheGurons D/UnityAds: com.unity3d.services.core.misc.Utilities.writeFile() (line:127) :: Wrote file: /data/user/0/com.Bermost.TheGurons/files/UnityAdsStorage-public-data.json
2020-03-19 18:09:31.437 18645-18674/com.Bermost.TheGurons D/UnityAds: com.unity3d.services.core.device.Storage.sendEvent() (line:81) :: Couldn't send storage event to WebApp
2020-03-19 18:09:31.442 18645-18674/com.Bermost.TheGurons D/UnityAds: com.unity3d.services.ads.UnityAdsImplementation.initialize() (line:60) :: ENTERED METHOD
2020-03-19 18:09:31.442 18645-18674/com.Bermost.TheGurons D/UnityAds: com.unity3d.services.UnityServices.initialize() (line:30) :: ENTERED METHOD
2020-03-19 18:09:31.443 18645-18674/com.Bermost.TheGurons I/UnityAds: com.unity3d.services.UnityServices.initialize() (line:68) :: Initializing Unity Services 3.4.2 (3420) with game id 3501828 in production mode
2020-03-19 18:09:31.456 18645-18674/com.Bermost.TheGurons I/UnityAds: com.unity3d.services.UnityServices.initialize() (line:80) :: Unity Services environment check OK
2020-03-19 18:09:31.456 18645-18739/com.Bermost.TheGurons I/UnityIAP: In-app billing version 3 supported for com.Bermost.TheGurons
2020-03-19 18:09:31.460 18645-18739/com.Bermost.TheGurons I/UnityIAP: Subscriptions AVAILABLE.
2020-03-19 18:09:31.462 18645-18739/com.Bermost.TheGurons I/UnityIAP: Subscription upgrade and downgrade are AVAILABLE.
2020-03-19 18:09:31.465 18645-18739/com.Bermost.TheGurons I/UnityIAP: Subscriptions information parse AVAILABLE.
2020-03-19 18:09:31.475 18645-18739/com.Bermost.TheGurons I/UnityIAP: VR supported.
2020-03-19 18:09:31.477 18645-18739/com.Bermost.TheGurons I/UnityIAP: onIabSetupFinished: 0
2020-03-19 18:09:31.478 18645-18739/com.Bermost.TheGurons I/UnityIAP: Requesting 10 products
2020-03-19 18:09:31.479 18645-18739/com.Bermost.TheGurons I/UnityIAP: QueryInventory: 10
2020-03-19 18:09:31.479 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:09:31.479 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying owned items, item type: inapp
2020-03-19 18:09:31.480 18645-18739/com.Bermost.TheGurons I/UnityIAP: Package name: com.Bermost.TheGurons
2020-03-19 18:09:31.480 18645-18739/com.Bermost.TheGurons I/UnityIAP: Calling getPurchases with continuation token: null
2020-03-19 18:09:31.485 18645-18739/com.Bermost.TheGurons I/UnityIAP: Owned items response: 0
2020-03-19 18:09:31.485 18645-18739/com.Bermost.TheGurons I/UnityIAP: Continuation token: null
2020-03-19 18:09:31.485 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying SKU details.
2020-03-19 18:09:31.512 18645-18741/com.Bermost.TheGurons I/UnityAds: com.unity3d.services.core.configuration.InitializeThread$InitializeStateConfig.execute() (line:191) :: Unity Ads init: load configuration from https://config.unityads.unity3d.com/webview/3.4.2/release/config.json
2020-03-19 18:09:31.833 18645-18741/com.Bermost.TheGurons I/UnityAds: com.unity3d.services.core.configuration.InitializeThread$InitializeStateLoadWeb.execute() (line:268) :: Unity Ads init: loading webapp from https://webview.unityads.unity3d.com/webview/3.4.0/7ce2c328b8cb5353f0a11b3c9a407ef6d7b487a4/release/index.html
2020-03-19 18:09:32.021 18645-18674/com.Bermost.TheGurons I/Unity: Using configuration builder objects
     #0 0x718c3c77e4 (libunity.so) GetStacktrace(int) 0x3c
     #1 0x718c248768 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x21c
     #2 0x718bd7d5fc (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> >, Object*) 0x90
     #3 0x718bd7d52c (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xf8
     #4 0x71889d3dd0 (libil2cpp.so) ? 0x0
     #5 0x71893b285c (libil2cpp.so) ? 0x0
     #6 0x71889be310 (libil2cpp.so) ? 0x0
     #7 0x71892f7e1c (libil2cpp.so) ? 0x0
     #8 0x71888ce36c (libil2cpp.so) ? 0x0
     #9 0x71887dc7a8 (libil2cpp.so) ? 0x0
     #10 0x718bcb202c (libunity.so) scripting_method_invoke(ScriptingMethodPtr, ScriptingObjectPtr, ScriptingArguments&, ScriptingExceptionPtr*, bool) 0xa4
     #11 0x718bcc155c (libunity.so) ScriptingInvocation::Invoke(ScriptingExceptionPtr*, bool) 0x98
     #12 0x718bcc9814 (libunity.so) Coroutine::I
2020-03-19 18:09:32.026 18645-18674/com.Bermost.TheGurons I/UnityIAP: Requesting 10 products
2020-03-19 18:09:32.026 18645-18674/com.Bermost.TheGurons I/UnityIAP: QueryInventory: 10
2020-03-19 18:09:32.411 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying owned items, item type: subs
2020-03-19 18:09:32.411 18645-18739/com.Bermost.TheGurons I/UnityIAP: Package name: com.Bermost.TheGurons
2020-03-19 18:09:32.411 18645-18739/com.Bermost.TheGurons I/UnityIAP: Calling getPurchases with continuation token: null
2020-03-19 18:09:32.441 18645-18656/com.Bermost.TheGurons W/System: A resource failed to call end.
2020-03-19 18:09:32.575 18645-18645/com.Bermost.TheGurons I/WebViewFactory: Loading com.android.chrome version 80.0.3987.149 (code 398714932)
2020-03-19 18:09:32.895 18645-18645/com.Bermost.TheGurons I/cr_LibraryLoader: Loaded native library version number "80.0.3987.149"
2020-03-19 18:09:32.915 18645-18759/com.Bermost.TheGurons W/rmost.TheGuron: Accessing hidden method Landroid/content/Context;->bindServiceAsUser(Landroid/content/Intent;Landroid/content/ServiceConnection;ILandroid/os/Handler;Landroid/os/UserHandle;)Z (light greylist, reflection)
2020-03-19 18:09:33.399 18645-18797/com.Bermost.TheGurons W/rmost.TheGuron: Accessing hidden method Landroid/media/AudioManager;->getOutputLatency(I)I (light greylist, reflection)
2020-03-19 18:09:33.404 18645-18797/com.Bermost.TheGurons W/cr_media: Requires BLUETOOTH permission
2020-03-19 18:09:33.589 18645-18808/com.Bermost.TheGurons W/VideoCapabilities: Unrecognized profile 4 for video/hevc
2020-03-19 18:09:33.593 18645-18808/com.Bermost.TheGurons W/VideoCapabilities: Unrecognized profile/level 0/3 for video/mpeg2
2020-03-19 18:09:33.639 18645-18808/com.Bermost.TheGurons I/VideoCapabilities: Unsupported profile 4 for video/mp4v-es
2020-03-19 18:09:33.910 18645-18739/com.Bermost.TheGurons I/UnityIAP: Owned items response: 0
2020-03-19 18:09:33.910 18645-18739/com.Bermost.TheGurons I/UnityIAP: Continuation token: null
2020-03-19 18:09:33.910 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying SKU details.
2020-03-19 18:09:34.073 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying owned items' purchase history, item type: subs
2020-03-19 18:09:34.073 18645-18739/com.Bermost.TheGurons I/UnityIAP: Package name: com.Bermost.TheGurons
2020-03-19 18:09:34.073 18645-18739/com.Bermost.TheGurons I/UnityIAP: Calling getPurchaseHistory with continuation token: null
2020-03-19 18:09:34.201 18645-18720/com.Bermost.TheGurons D/Unity: Unloading 5 Unused Serialized files (Serialized files now loaded: 0)
2020-03-19 18:09:34.201 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use before: 54.5 MB.
2020-03-19 18:09:34.222 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use after: 54.7 MB.
2020-03-19 18:09:34.222 18645-18674/com.Bermost.TheGurons D/Unity: Unloading 5 unused Assets to reduce memory usage. Loaded Objects now: 3801.
2020-03-19 18:09:34.222 18645-18674/com.Bermost.TheGurons D/Unity: Total: 20.562554 ms (FindLiveObjects: 1.196094 ms CreateObjectMapping: 0.800313 ms MarkObjects: 18.471513 ms  DeleteObjects: 0.092240 ms)
2020-03-19 18:09:34.226 18645-18720/com.Bermost.TheGurons D/Unity: Unloading 3 Unused Serialized files (Serialized files now loaded: 0)
2020-03-19 18:09:34.247 18645-18674/com.Bermost.TheGurons D/Unity: UnloadTime: 2.877136 ms
2020-03-19 18:09:34.254 18645-18674/com.Bermost.TheGurons W/Unity: Dialogue System: The scene is missing an EventSystem. Adding one.
    PixelCrushers.DialogueSystem.UITools:RequireEventSystem()
    UnityEngine.Events.UnityAction`2:Invoke(T0, T1)
  
    (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 35)
2020-03-19 18:09:34.267 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use before: 54.3 MB.
2020-03-19 18:09:34.279 18645-18739/com.Bermost.TheGurons I/UnityIAP: Purchase history response: 0
2020-03-19 18:09:34.279 18645-18739/com.Bermost.TheGurons I/UnityIAP: Continuation token: null
2020-03-19 18:09:34.279 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying owned items' purchase history, item type: inapp
2020-03-19 18:09:34.279 18645-18739/com.Bermost.TheGurons I/UnityIAP: Package name: com.Bermost.TheGurons
2020-03-19 18:09:34.279 18645-18739/com.Bermost.TheGurons I/UnityIAP: Calling getPurchaseHistory with continuation token: null
2020-03-19 18:09:34.281 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use after: 54.5 MB.
2020-03-19 18:09:34.281 18645-18674/com.Bermost.TheGurons D/Unity: Unloading 77 unused Assets to reduce memory usage. Loaded Objects now: 3463.
2020-03-19 18:09:34.281 18645-18674/com.Bermost.TheGurons D/Unity: Total: 14.371876 ms (FindLiveObjects: 1.183229 ms CreateObjectMapping: 0.752916 ms MarkObjects: 12.034220 ms  DeleteObjects: 0.397813 ms)
2020-03-19 18:09:34.292 18645-18720/com.Bermost.TheGurons D/Unity: Unloading 0 Unused Serialized files (Serialized files now loaded: 0)
2020-03-19 18:09:34.299 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use before: 53.6 MB.
2020-03-19 18:09:34.314 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use after: 53.8 MB.
2020-03-19 18:09:34.315 18645-18674/com.Bermost.TheGurons D/Unity: Unloading 0 unused Assets to reduce memory usage. Loaded Objects now: 3467.
2020-03-19 18:09:34.315 18645-18674/com.Bermost.TheGurons D/Unity: Total: 15.165574 ms (FindLiveObjects: 1.484219 ms CreateObjectMapping: 0.705834 ms MarkObjects: 12.923803 ms  DeleteObjects: 0.048907 ms)
2020-03-19 18:09:34.315 18645-18720/com.Bermost.TheGurons D/Unity: Unloading 0 Unused Serialized files (Serialized files now loaded: 0)
2020-03-19 18:09:34.317 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use before: 53.6 MB.
2020-03-19 18:09:34.333 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use after: 53.8 MB.
2020-03-19 18:09:34.333 18645-18674/com.Bermost.TheGurons D/Unity: Unloading 0 unused Assets to reduce memory usage. Loaded Objects now: 3467.
2020-03-19 18:09:34.333 18645-18674/com.Bermost.TheGurons D/Unity: Total: 15.370783 ms (FindLiveObjects: 1.287969 ms CreateObjectMapping: 0.831875 ms MarkObjects: 13.175679 ms  DeleteObjects: 0.070989 ms)
2020-03-19 18:09:34.384 18645-18739/com.Bermost.TheGurons I/UnityIAP: Purchase history response: 0
2020-03-19 18:09:34.387 18645-18739/com.Bermost.TheGurons I/UnityIAP: Continuation token: null
2020-03-19 18:09:34.388 18645-18739/com.Bermost.TheGurons I/UnityIAP: onQueryInventoryFinished: true
2020-03-19 18:09:34.388 18645-18739/com.Bermost.TheGurons I/UnityIAP: Inventory refresh successful. (response: 0:OK)
2020-03-19 18:09:34.405 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:09:34.405 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying owned items, item type: inapp
2020-03-19 18:09:34.405 18645-18739/com.Bermost.TheGurons I/UnityIAP: Package name: com.Bermost.TheGurons
2020-03-19 18:09:34.405 18645-18739/com.Bermost.TheGurons I/UnityIAP: Calling getPurchases with continuation token: null
2020-03-19 18:09:34.408 18645-18739/com.Bermost.TheGurons I/UnityIAP: Owned items response: 0
2020-03-19 18:09:34.409 18645-18739/com.Bermost.TheGurons I/UnityIAP: Continuation token: null
2020-03-19 18:09:34.409 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying SKU details.
2020-03-19 18:09:34.426 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying owned items, item type: subs
2020-03-19 18:09:34.426 18645-18739/com.Bermost.TheGurons I/UnityIAP: Package name: com.Bermost.TheGurons
2020-03-19 18:09:34.426 18645-18739/com.Bermost.TheGurons I/UnityIAP: Calling getPurchases with continuation token: null
2020-03-19 18:09:34.431 18645-18720/com.Bermost.TheGurons D/Unity: Unloading 4 Unused Serialized files (Serialized files now loaded: 0)
2020-03-19 18:09:34.446 18645-18674/com.Bermost.TheGurons I/Unity: In-App Purchasing OnInitialized: PASS
     #0 0x718c3c77e4 (libunity.so) GetStacktrace(int) 0x3c
     #1 0x718c248768 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x21c
     #2 0x718bd7d5fc (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> >, Object*) 0x90
     #3 0x718bd7d52c (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xf8
     #4 0x7188ca44e0 (libil2cpp.so) ? 0x0
     #5 0x7188bb0690 (libil2cpp.so) ? 0x0
     #6 0x7188bb02a8 (libil2cpp.so) ? 0x0
     #7 0x71889c6f88 (libil2cpp.so) ? 0x0
     #8 0x7189033fac (libil2cpp.so) ? 0x0
     #9 0x71889c1118 (libil2cpp.so) ? 0x0
     #10 0x71888bb41c (libil2cpp.so) ? 0x0
     #11 0x71887dc7a8 (libil2cpp.so) ? 0x0
     #12 0x718bcb202c (libunity.so) scripting_method_invoke(ScriptingMethodPtr, ScriptingObjectPtr, ScriptingArguments&, ScriptingExceptionPtr*, bool) 0xa4
     #13 0x718bcc155c (libunity.so) ScriptingInvocation::Invoke
2020-03-19 18:09:34.452 18645-18674/com.Bermost.TheGurons I/Unity: UnityIAP: Promo interface is available for 10 items
     #0 0x718c3c77e4 (libunity.so) GetStacktrace(int) 0x3c
     #1 0x718c248768 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x21c
     #2 0x718bd7d5fc (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> >, Object*) 0x90
     #3 0x718bd7d52c (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xf8
     #4 0x71889cf8ac (libil2cpp.so) ? 0x0
     #5 0x7189033fac (libil2cpp.so) ? 0x0
     #6 0x71889c1118 (libil2cpp.so) ? 0x0
     #7 0x71888bb41c (libil2cpp.so) ? 0x0
     #8 0x71887dc7a8 (libil2cpp.so) ? 0x0
     #9 0x718bcb202c (libunity.so) scripting_method_invoke(ScriptingMethodPtr, ScriptingObjectPtr, ScriptingArguments&, ScriptingExceptionPtr*, bool) 0xa4
     #10 0x718bcc155c (libunity.so) ScriptingInvocation::Invoke(ScriptingExceptionPtr*, bool) 0x98
     #11 0x718bccb550 (libunity.so) MonoBehaviour::CallUpdateMethod(int
2020-03-19 18:09:34.493 18645-18739/com.Bermost.TheGurons I/UnityIAP: Owned items response: 0
2020-03-19 18:09:34.493 18645-18739/com.Bermost.TheGurons I/UnityIAP: Continuation token: null
2020-03-19 18:09:34.493 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying SKU details.
2020-03-19 18:09:34.513 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying owned items' purchase history, item type: subs
2020-03-19 18:09:34.513 18645-18739/com.Bermost.TheGurons I/UnityIAP: Package name: com.Bermost.TheGurons
2020-03-19 18:09:34.513 18645-18739/com.Bermost.TheGurons I/UnityIAP: Calling getPurchaseHistory with continuation token: null
2020-03-19 18:09:34.566 18645-18833/com.Bermost.TheGurons I/UnityAds: com.unity3d.services.core.api.Sdk.logInfo() (line:82) :: mediation detection is:{"UnityEngine":true}
2020-03-19 18:09:34.584 18645-18833/com.Bermost.TheGurons I/UnityAds: com.unity3d.services.core.api.Sdk.logInfo() (line:82) :: Requesting configuration from https://publisher-config.unityads.unity3d.com/games/3501828/configuration?bundleId=com.Bermost.TheGurons&encrypted=false&rooted=false&platform=android&sdkVersion=3420&osVersion=9&deviceModel=moto%20g(7)%20power&language=es_CL&connectionType=wifi&screenHeight=1403&screenWidth=720&test=false&analyticsUserId=70b2560c50259786daef178627c4883a&analyticsSessionId=7481627444648540730&deviceMake=motorola&screenDensity=320&screenSize=268435810&advertisingTrackingId=bf6bc977-72c7-4cea-9669-26fa6e74471b&limitAdTracking=false&frameworkName=Unity&frameworkVersion=2019.3.5f1&adapterName=Packman&adapterVersion=3.4.2
2020-03-19 18:09:34.679 18645-18739/com.Bermost.TheGurons I/UnityIAP: Purchase history response: 0
2020-03-19 18:09:34.679 18645-18739/com.Bermost.TheGurons I/UnityIAP: Continuation token: null
2020-03-19 18:09:34.679 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying owned items' purchase history, item type: inapp
2020-03-19 18:09:34.680 18645-18739/com.Bermost.TheGurons I/UnityIAP: Package name: com.Bermost.TheGurons
2020-03-19 18:09:34.680 18645-18739/com.Bermost.TheGurons I/UnityIAP: Calling getPurchaseHistory with continuation token: null
2020-03-19 18:09:34.804 18645-18739/com.Bermost.TheGurons I/UnityIAP: Purchase history response: 0
2020-03-19 18:09:34.806 18645-18739/com.Bermost.TheGurons I/UnityIAP: Continuation token: null
2020-03-19 18:09:34.807 18645-18739/com.Bermost.TheGurons I/UnityIAP: onQueryInventoryFinished: true
2020-03-19 18:09:34.807 18645-18739/com.Bermost.TheGurons I/UnityIAP: Inventory refresh successful. (response: 0:OK)
2020-03-19 18:09:34.815 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:09:34.834 18645-18674/com.Bermost.TheGurons I/Unity: UnityIAP: Promo interface is available for 10 items
     #0 0x718c3c77e4 (libunity.so) GetStacktrace(int) 0x3c
     #1 0x718c248768 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x21c
     #2 0x718bd7d5fc (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> >, Object*) 0x90
     #3 0x718bd7d52c (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xf8
     #4 0x71889cf8ac (libil2cpp.so) ? 0x0
     #5 0x7189033fac (libil2cpp.so) ? 0x0
     #6 0x71889c1118 (libil2cpp.so) ? 0x0
     #7 0x71888bb41c (libil2cpp.so) ? 0x0
     #8 0x71887dc7a8 (libil2cpp.so) ? 0x0
     #9 0x718bcb202c (libunity.so) scripting_method_invoke(ScriptingMethodPtr, ScriptingObjectPtr, ScriptingArguments&, ScriptingExceptionPtr*, bool) 0xa4
     #10 0x718bcc155c (libunity.so) ScriptingInvocation::Invoke(ScriptingExceptionPtr*, bool) 0x98
     #11 0x718bccb550 (libunity.so) MonoBehaviour::CallUpdateMethod(int
2020-03-19 18:09:35.068 18645-18833/com.Bermost.TheGurons E/UnityAds: com.unity3d.services.core.webview.bridge.Invocation.nextInvocation() (line:55) :: Error handling invocation com.unity3d.services.core.api.Sdk.initError([not found, 0]): Attempt to invoke virtual method 'java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[])' on a null object reference
2020-03-19 18:09:35.068 18645-18833/com.Bermost.TheGurons E/UnityAds: com.unity3d.services.core.api.Sdk.logError() (line:70) :: Initialization error: not found
2020-03-19 18:09:35.177 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:09:35.338 18645-18674/com.Bermost.TheGurons D/Unity: UnloadTime: 2.361563 ms
2020-03-19 18:09:35.379 18645-18674/com.Bermost.TheGurons I/Unity: [TouchScript] Initialized Unity touch input.
     #0 0x718c3c77e4 (libunity.so) GetStacktrace(int) 0x3c
     #1 0x718c248768 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x21c
     #2 0x718bd7d5fc (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> >, Object*) 0x90
     #3 0x718bd7d52c (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xf8
     #4 0x7189178a28 (libil2cpp.so) ? 0x0
     #5 0x71888bb41c (libil2cpp.so) ? 0x0
     #6 0x71887dc7a8 (libil2cpp.so) ? 0x0
     #7 0x718bcb202c (libunity.so) scripting_method_invoke(ScriptingMethodPtr, ScriptingObjectPtr, ScriptingArguments&, ScriptingExceptionPtr*, bool) 0xa4
     #8 0x718bcc155c (libunity.so) ScriptingInvocation::Invoke(ScriptingExceptionPtr*, bool) 0x98
     #9 0x718bccd500 (libunity.so) MonoBehaviour::AddToManager() 0x1b8
     #10 0x718bcccfa4 (libunity.so) MonoBehaviour::AwakeFromLoad(AwakeFromLoadMode) 0x2b
2020-03-19 18:09:35.499 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:09:35.501 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use before: 57.8 MB.
2020-03-19 18:09:35.546 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use after: 58.1 MB.
2020-03-19 18:09:35.546 18645-18674/com.Bermost.TheGurons D/Unity: Unloading 2 unused Assets to reduce memory usage. Loaded Objects now: 5095.
2020-03-19 18:09:35.546 18645-18674/com.Bermost.TheGurons D/Unity: Total: 44.745994 ms (FindLiveObjects: 1.791823 ms CreateObjectMapping: 1.203125 ms MarkObjects: 41.643337 ms  DeleteObjects: 0.104166 ms)
2020-03-19 18:09:35.546 18645-18720/com.Bermost.TheGurons D/Unity: Unloading 0 Unused Serialized files (Serialized files now loaded: 0)
2020-03-19 18:09:35.549 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use before: 57.8 MB.
2020-03-19 18:09:35.593 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use after: 58.1 MB.
2020-03-19 18:09:35.593 18645-18674/com.Bermost.TheGurons D/Unity: Unloading 0 unused Assets to reduce memory usage. Loaded Objects now: 5095.
2020-03-19 18:09:35.593 18645-18674/com.Bermost.TheGurons D/Unity: Total: 44.419431 ms (FindLiveObjects: 1.985000 ms CreateObjectMapping: 1.065573 ms MarkObjects: 41.308494 ms  DeleteObjects: 0.057396 ms)
2020-03-19 18:09:35.844 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:09:36.401 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:09:36.849 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:09:37.362 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:09:37.797 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:09:38.278 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:09:38.623 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:09:38.990 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:09:39.336 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:09:39.665 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:09:40.001 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:09:40.497 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:09:40.846 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:09:41.197 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:09:41.546 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:09:41.918 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:09:42.267 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
2020-03-19 18:10:32.515 18645-18741/com.Bermost.TheGurons E/UnityAds: com.unity3d.services.core.configuration.InitializeThread$InitializeStateCreate.execute() (line:344) :: Unity Ads WebApp creation failed!
2020-03-19 18:10:32.515 18645-18741/com.Bermost.TheGurons E/UnityAds: com.unity3d.services.core.configuration.InitializeThread$InitializeStateError.execute() (line:383) :: Unity Ads init: halting init in create webapp: Creation of WebApp failed!
2020-03-19 18:10:48.053 18645-18645/com.Bermost.TheGurons V/MediaRouter: onRestoreRoute() : route=RouteInfo{ name=Dispositivo, description=null, status=null, category=RouteCategory{ name=Sistema types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null }
2020-03-19 18:10:48.053 18645-18645/com.Bermost.TheGurons V/MediaRouter: Selecting route: RouteInfo{ name=Dispositivo, description=null, status=null, category=RouteCategory{ name=Sistema types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null }
2020-03-19 18:13:11.626 18645-18645/com.Bermost.TheGurons V/MediaRouter: onRestoreRoute() : route=RouteInfo{ name=Dispositivo, description=null, status=null, category=RouteCategory{ name=Sistema types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null }
2020-03-19 18:13:11.627 18645-18645/com.Bermost.TheGurons V/MediaRouter: Selecting route: RouteInfo{ name=Dispositivo, description=null, status=null, category=RouteCategory{ name=Sistema types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null }

Thanks for your no answer. Because I need I solution I tried with different values as android Id and when I put a wrong ID (no the right one for this app that appear on ads dashboard settings) works s test ads, but with the correct one doesn’t work, no Init, no test no nothing. I hope have a question this week, or maybe need to move to other ads provider.

i think you swapped you android and ios gameId’s. The gameId in your logs is not an android gameId.

You were right, for some reason I swapped the ID. Thanks