Search Unity

Creation of WebApp failed! ADS 3.4.4 PACKMAN

Discussion in 'Unity Ads & User Acquisition' started by janiche, Mar 19, 2020.

  1. janiche

    janiche

    Joined:
    Jan 4, 2015
    Posts:
    52
    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)

    Code (CSharp):
    1.  
    2.  
    3. #if UNITY_ANDROID
    4.         appKey = androidId;
    5. #elif UNITY_IOS
    6.         appKey = iosId;
    7. #elif UNITY_EDITOR
    8.         appKey = "1111111";
    9. #endif
    10.  
    11.         if (!Advertisement.isInitialized)
    12.         {
    13.             if (Advertisement.isSupported)
    14.             {
    15.                 //Advertisement.AddListener(this);
    16.                 Advertisement.Initialize(appKey, testMode);
    17.             }
    18.         }
    19.  
    20.         Advertisement.AddListener(this);
    21.     }
    Code (CSharp):
    1.     public void _ShowRewarded()
    2.     {
    3.         if (Advertisement.IsReady(_videoPlacement))
    4.         {
    5.             Advertisement.Show(_videoPlacement);
    6.         }
    7.  
    8.         //mostrar mensaje ad no disponible
    9.         else
    10.         {
    11.  
    12.         }
    13.     }
    Code (CSharp):
    1. 2020-03-18 19:25:50.888 28472-28499/com.Bermost.TheGurons D/Unity: System memory in use before: 58.1 MB.
    2. 2020-03-18 19:25:50.935 28472-28499/com.Bermost.TheGurons D/Unity: System memory in use after: 58.4 MB.
    3. 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.
    4. 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)
    5. 2020-03-18 19:25:50.935 28472-28545/com.Bermost.TheGurons D/Unity: Unloading 0 Unused Serialized files (Serialized files now loaded: 0)
    6. 2020-03-18 19:25:50.938 28472-28499/com.Bermost.TheGurons D/Unity: System memory in use before: 58.1 MB.
    7. 2020-03-18 19:25:50.982 28472-28499/com.Bermost.TheGurons D/Unity: System memory in use after: 58.3 MB.
    8. 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.
    9. 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)
    10. 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!
    11. 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!
    12.  
     
  2. sbankhead

    sbankhead

    Unity Technologies

    Joined:
    Jul 27, 2014
    Posts:
    97
    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.
     
  3. janiche

    janiche

    Joined:
    Jan 4, 2015
    Posts:
    52
    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:

    Code (CSharp):
    1. using UnityEngine;
    2.  
    3. using CodeStage.AntiCheat.ObscuredTypes;
    4. using UnityEngine.Advertisements;
    5. using System.Collections;
    6.  
    7. public class AdsManager : MonoBehaviour, IUnityAdsListener
    8. {
    9.     public delegate void AdEvent(string _value);
    10.  
    11.     public static AdEvent OnReadyAd;
    12.     public static AdEvent OnErrorAd;
    13.     public static AdEvent OnStartAd;
    14.     public static AdEvent OnFinishedAd;
    15.     public static AdEvent OnSkippedAd;
    16.     public static AdEvent OnFailedAd;
    17.  
    18.     public static void ReadyAd(string _value)
    19.     {
    20.         OnReadyAd?.Invoke(_value);
    21.     }
    22.  
    23.     public static void ErrorAd(string _value)
    24.     {
    25.         OnErrorAd?.Invoke(_value);
    26.     }
    27.  
    28.     public static void StartAd(string _value)
    29.     {
    30.         OnStartAd?.Invoke(_value);
    31.     }
    32.  
    33.     public static void FinishedAd(string _value)
    34.     {
    35.         OnFinishedAd?.Invoke(_value);
    36.     }
    37.  
    38.     public static void SkippedAd(string _value)
    39.     {
    40.         OnSkippedAd?.Invoke(_value);
    41.     }
    42.  
    43.     public static void FailedAd(string _value)
    44.     {
    45.         OnFailedAd?.Invoke(_value);
    46.     }
    47.  
    48.  
    49.     private static AdsManager Instance;
    50.     public static AdsManager instance
    51.     {
    52.         get { return Instance; }
    53.     }
    54.  
    55.  
    56.     #region VARIABLES
    57.  
    58.     [Header("Modo de Prueba")]
    59.     [SerializeField] private ObscuredBool testMode = true;
    60.  
    61.     [Header("Configuración Ads")]
    62.     [SerializeField] private ObscuredString androidId = "";
    63.     [SerializeField] private ObscuredString iosId = "";
    64.     private ObscuredString appKey;
    65.  
    66.  
    67.     [Header("Placement")]
    68.     [SerializeField] private string _bannerPlacement = Ads_Constants.Ads_Placement_Banner;
    69.     [SerializeField] private string _videoPlacement = Ads_Constants.Ads_Placement_Rewarded;
    70.  
    71.     #endregion
    72.  
    73.     public void _Init()
    74.     {
    75.         if (Instance == null)
    76.         {
    77.             Instance = this;
    78.             DontDestroyOnLoad(gameObject);
    79.         }
    80.  
    81.         //ASIGNACIÓN A APPKEY SEGUN PLATAFORMA
    82. #if UNITY_ANDROID
    83.         appKey = androidId;
    84. #elif UNITY_IOS
    85.         appKey = iosId;
    86. #elif UNITY_EDITOR
    87.         appKey = "1111111";
    88. #endif
    89.  
    90.         if (!Advertisement.isInitialized)
    91.         {
    92.             if (Advertisement.isSupported)
    93.             {
    94.                 Advertisement.Initialize(appKey, testMode);
    95.             }
    96.         }
    97.  
    98.         Advertisement.AddListener(this);
    99.     }
    100.  
    101.     void OnDisable()
    102.     {
    103.         Advertisement.RemoveListener(this);
    104.     }
    105.  
    106.     public void _ShowBanner(bool active)
    107.     {
    108.         if (active)
    109.         {
    110.             StartCoroutine(_WaitBanner());
    111.         }
    112.         else
    113.         {
    114.             StopCoroutine(_WaitBanner());
    115.             Advertisement.Banner.Hide();
    116.         }
    117.     }
    118.  
    119.  
    120.     IEnumerator _WaitBanner()
    121.     {
    122.         while (!Advertisement.IsReady(_bannerPlacement))
    123.         {
    124.             yield return new WaitForSeconds(0.5f);
    125.         }
    126.         Advertisement.Banner.SetPosition(BannerPosition.BOTTOM_CENTER);
    127.         Advertisement.Banner.Show(_bannerPlacement);
    128.     }
    129.  
    130.  
    131.     public void _ShowRewarded()
    132.     {
    133.         if (Advertisement.IsReady(_videoPlacement))
    134.         {
    135.             Advertisement.Show(_videoPlacement);
    136.         }
    137.  
    138.         //mostrar mensaje ad no disponible
    139.         else
    140.         {
    141.  
    142.         }
    143.     }
    144.  
    145.     public bool _IsRewardedReady()
    146.     {
    147.         return Advertisement.IsReady(_videoPlacement);
    148.     }
    149.  
    150.     public void OnUnityAdsReady(string placementId)
    151.     {
    152.         ReadyAd(placementId);
    153.     }
    154.  
    155.     public void OnUnityAdsDidError(string message)
    156.     {
    157.         ErrorAd(message);
    158.     }
    159.  
    160.     public void OnUnityAdsDidStart(string placementId)
    161.     {
    162.         StartAd(placementId);
    163.     }
    164.  
    165.     public void OnUnityAdsDidFinish(string placementId, ShowResult showResult)
    166.     {
    167.         if (placementId == Ads_Constants.Ads_Placement_Rewarded)
    168.         {
    169.             switch (showResult)
    170.             {
    171.                 case ShowResult.Finished:
    172.                     FinishedAd(placementId);
    173.                     break;
    174.  
    175.                 case ShowResult.Skipped:
    176.                     SkippedAd(placementId);
    177.                     break;
    178.  
    179.                 case ShowResult.Failed:
    180.                     FailedAd(placementId);
    181.                     break;
    182.             }
    183.         }
    184.  
    185.     }
    186. }
    187.  
    188. public class Ads_Constants
    189. {
    190.     public const string Ads_Placement_Banner = "Banner";
    191.     public const string Ads_Placement_Rewarded = "rewardedVideo";
    192. }
    And the Logcat

    Code (CSharp):
    1. 2020-03-19 18:09:30.439 18645-18674/com.Bermost.TheGurons D/Unity: UnloadTime: 0.964896 ms
    2. 2020-03-19 18:09:30.456 18645-18674/com.Bermost.TheGurons D/Unity: UUID: 3bd10ab937a58511 => da9f74a94d7f916dde8c1e69ec4c5f9e
    3. 2020-03-19 18:09:30.654 18645-18674/com.Bermost.TheGurons I/Unity: [TouchScript] Initialized Unity touch input.
    4.      #0 0x718c3c77e4 (libunity.so) GetStacktrace(int) 0x3c
    5.      #1 0x718c248768 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x21c
    6.      #2 0x718bd7d5fc (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> >, Object*) 0x90
    7.      #3 0x718bd7d52c (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xf8
    8.      #4 0x7189178a28 (libil2cpp.so) ? 0x0
    9.      #5 0x71888bb41c (libil2cpp.so) ? 0x0
    10.      #6 0x71887dc7a8 (libil2cpp.so) ? 0x0
    11.      #7 0x718bcb202c (libunity.so) scripting_method_invoke(ScriptingMethodPtr, ScriptingObjectPtr, ScriptingArguments&, ScriptingExceptionPtr*, bool) 0xa4
    12.      #8 0x718bcc155c (libunity.so) ScriptingInvocation::Invoke(ScriptingExceptionPtr*, bool) 0x98
    13.      #9 0x718bccd500 (libunity.so) MonoBehaviour::AddToManager() 0x1b8
    14.      #10 0x718bcccfa4 (libunity.so) MonoBehaviour::AwakeFromLoad(AwakeFromLoadMode) 0x2b
    15. 2020-03-19 18:09:30.817 18645-18674/com.Bermost.TheGurons I/Unity: Initializing UnityPurchasing via Codeless IAP
    16.      #0 0x718c3c77e4 (libunity.so) GetStacktrace(int) 0x3c
    17.      #1 0x718c248768 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x21c
    18.      #2 0x718bd7d5fc (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> >, Object*) 0x90
    19.      #3 0x718bd7d52c (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xf8
    20.      #4 0x71897ed93c (libil2cpp.so) ? 0x0
    21.      #5 0x71888baf3c (libil2cpp.so) ? 0x0
    22.      #6 0x71887dc7a8 (libil2cpp.so) ? 0x0
    23.      #7 0x718bcb202c (libunity.so) scripting_method_invoke(ScriptingMethodPtr, ScriptingObjectPtr, ScriptingArguments&, ScriptingExceptionPtr*, bool) 0xa4
    24.      #8 0x718bcc155c (libunity.so) ScriptingInvocation::Invoke(ScriptingExceptionPtr*, bool) 0x98
    25.      #9 0x718bae0bc8 (libunity.so) RuntimeInitializeOnLoadManager::ExecuteInitializeOnLoad(std::__ndk1::vector<int, stl_allocator<int, (MemLabelIdentifier
    26. 2020-03-19 18:09:30.819 18645-18674/com.Bermost.TheGurons I/Unity: UnityIAP Version: 1.23.1
    27.      #0 0x718c3c77e4 (libunity.so) GetStacktrace(int) 0x3c
    28.      #1 0x718c248768 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x21c
    29.      #2 0x718bd7d5fc (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> >, Object*) 0x90
    30.      #3 0x718bd7d52c (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xf8
    31.      #4 0x71889d1c94 (libil2cpp.so) ? 0x0
    32.      #5 0x71897ed9a8 (libil2cpp.so) ? 0x0
    33.      #6 0x71888baf3c (libil2cpp.so) ? 0x0
    34.      #7 0x71887dc7a8 (libil2cpp.so) ? 0x0
    35.      #8 0x718bcb202c (libunity.so) scripting_method_invoke(ScriptingMethodPtr, ScriptingObjectPtr, ScriptingArguments&, ScriptingExceptionPtr*, bool) 0xa4
    36.      #9 0x718bcc155c (libunity.so) ScriptingInvocation::Invoke(ScriptingExceptionPtr*, bool) 0x98
    37.      #10 0x718bae0bc8 (libunity.so) RuntimeInitializeOnLoadManager::ExecuteInitializeOnLoad(std::__ndk1::vector<int, stl_allocator<int, (
    38. 2020-03-19 18:09:30.838 18645-18674/com.Bermost.TheGurons I/UnityIAP: IAB helper created.
    39. 2020-03-19 18:09:30.878 18645-18674/com.Bermost.TheGurons D/Unity: Sensor :        Accelerometer ( 1) ; 0.002396 / 0.00s ; BMI160 Accelerometer / BOSCH
    40. 2020-03-19 18:09:30.890 18645-18674/com.Bermost.TheGurons D/Unity: Choreographer available: Enabling VSYNC timing
    41. 2020-03-19 18:09:30.994 18645-18685/com.Bermost.TheGurons D/NetworkSecurityConfig: No Network Security Config specified, using platform default
    42. 2020-03-19 18:09:31.255 18645-18674/com.Bermost.TheGurons E/Unity: Actual Version
    43.     SaveSystem:Load()
    44.     Initialize:Init()
    45.     InitializationEvents:Invoke()
    46.  
    47.     (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 35)
    48. 2020-03-19 18:09:31.293 18645-18674/com.Bermost.TheGurons I/UnityIAP: Starting in-app billing setup.
    49. 2020-03-19 18:09:31.351 18645-18645/com.Bermost.TheGurons I/UnityIAP: Billing service connected.
    50. 2020-03-19 18:09:31.352 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    51. 2020-03-19 18:09:31.352 18645-18739/com.Bermost.TheGurons I/UnityIAP: Checking for in-app billing 3 support.
    52. 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
    53. 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
    54. 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
    55. 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
    56. 2020-03-19 18:09:31.442 18645-18674/com.Bermost.TheGurons D/UnityAds: com.unity3d.services.ads.UnityAdsImplementation.initialize() (line:60) :: ENTERED METHOD
    57. 2020-03-19 18:09:31.442 18645-18674/com.Bermost.TheGurons D/UnityAds: com.unity3d.services.UnityServices.initialize() (line:30) :: ENTERED METHOD
    58. 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
    59. 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
    60. 2020-03-19 18:09:31.456 18645-18739/com.Bermost.TheGurons I/UnityIAP: In-app billing version 3 supported for com.Bermost.TheGurons
    61. 2020-03-19 18:09:31.460 18645-18739/com.Bermost.TheGurons I/UnityIAP: Subscriptions AVAILABLE.
    62. 2020-03-19 18:09:31.462 18645-18739/com.Bermost.TheGurons I/UnityIAP: Subscription upgrade and downgrade are AVAILABLE.
    63. 2020-03-19 18:09:31.465 18645-18739/com.Bermost.TheGurons I/UnityIAP: Subscriptions information parse AVAILABLE.
    64. 2020-03-19 18:09:31.475 18645-18739/com.Bermost.TheGurons I/UnityIAP: VR supported.
    65. 2020-03-19 18:09:31.477 18645-18739/com.Bermost.TheGurons I/UnityIAP: onIabSetupFinished: 0
    66. 2020-03-19 18:09:31.478 18645-18739/com.Bermost.TheGurons I/UnityIAP: Requesting 10 products
    67. 2020-03-19 18:09:31.479 18645-18739/com.Bermost.TheGurons I/UnityIAP: QueryInventory: 10
    68. 2020-03-19 18:09:31.479 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    69. 2020-03-19 18:09:31.479 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying owned items, item type: inapp
    70. 2020-03-19 18:09:31.480 18645-18739/com.Bermost.TheGurons I/UnityIAP: Package name: com.Bermost.TheGurons
    71. 2020-03-19 18:09:31.480 18645-18739/com.Bermost.TheGurons I/UnityIAP: Calling getPurchases with continuation token: null
    72. 2020-03-19 18:09:31.485 18645-18739/com.Bermost.TheGurons I/UnityIAP: Owned items response: 0
    73. 2020-03-19 18:09:31.485 18645-18739/com.Bermost.TheGurons I/UnityIAP: Continuation token: null
    74. 2020-03-19 18:09:31.485 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying SKU details.
    75. 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
    76. 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
    77. 2020-03-19 18:09:32.021 18645-18674/com.Bermost.TheGurons I/Unity: Using configuration builder objects
    78.      #0 0x718c3c77e4 (libunity.so) GetStacktrace(int) 0x3c
    79.      #1 0x718c248768 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x21c
    80.      #2 0x718bd7d5fc (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> >, Object*) 0x90
    81.      #3 0x718bd7d52c (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xf8
    82.      #4 0x71889d3dd0 (libil2cpp.so) ? 0x0
    83.      #5 0x71893b285c (libil2cpp.so) ? 0x0
    84.      #6 0x71889be310 (libil2cpp.so) ? 0x0
    85.      #7 0x71892f7e1c (libil2cpp.so) ? 0x0
    86.      #8 0x71888ce36c (libil2cpp.so) ? 0x0
    87.      #9 0x71887dc7a8 (libil2cpp.so) ? 0x0
    88.      #10 0x718bcb202c (libunity.so) scripting_method_invoke(ScriptingMethodPtr, ScriptingObjectPtr, ScriptingArguments&, ScriptingExceptionPtr*, bool) 0xa4
    89.      #11 0x718bcc155c (libunity.so) ScriptingInvocation::Invoke(ScriptingExceptionPtr*, bool) 0x98
    90.      #12 0x718bcc9814 (libunity.so) Coroutine::I
    91. 2020-03-19 18:09:32.026 18645-18674/com.Bermost.TheGurons I/UnityIAP: Requesting 10 products
    92. 2020-03-19 18:09:32.026 18645-18674/com.Bermost.TheGurons I/UnityIAP: QueryInventory: 10
    93. 2020-03-19 18:09:32.411 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying owned items, item type: subs
    94. 2020-03-19 18:09:32.411 18645-18739/com.Bermost.TheGurons I/UnityIAP: Package name: com.Bermost.TheGurons
    95. 2020-03-19 18:09:32.411 18645-18739/com.Bermost.TheGurons I/UnityIAP: Calling getPurchases with continuation token: null
    96. 2020-03-19 18:09:32.441 18645-18656/com.Bermost.TheGurons W/System: A resource failed to call end.
    97. 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)
    98. 2020-03-19 18:09:32.895 18645-18645/com.Bermost.TheGurons I/cr_LibraryLoader: Loaded native library version number "80.0.3987.149"
    99. 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)
    100. 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)
    101. 2020-03-19 18:09:33.404 18645-18797/com.Bermost.TheGurons W/cr_media: Requires BLUETOOTH permission
    102. 2020-03-19 18:09:33.589 18645-18808/com.Bermost.TheGurons W/VideoCapabilities: Unrecognized profile 4 for video/hevc
    103. 2020-03-19 18:09:33.593 18645-18808/com.Bermost.TheGurons W/VideoCapabilities: Unrecognized profile/level 0/3 for video/mpeg2
    104. 2020-03-19 18:09:33.639 18645-18808/com.Bermost.TheGurons I/VideoCapabilities: Unsupported profile 4 for video/mp4v-es
    105. 2020-03-19 18:09:33.910 18645-18739/com.Bermost.TheGurons I/UnityIAP: Owned items response: 0
    106. 2020-03-19 18:09:33.910 18645-18739/com.Bermost.TheGurons I/UnityIAP: Continuation token: null
    107. 2020-03-19 18:09:33.910 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying SKU details.
    108. 2020-03-19 18:09:34.073 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying owned items' purchase history, item type: subs
    109. 2020-03-19 18:09:34.073 18645-18739/com.Bermost.TheGurons I/UnityIAP: Package name: com.Bermost.TheGurons
    110. 2020-03-19 18:09:34.073 18645-18739/com.Bermost.TheGurons I/UnityIAP: Calling getPurchaseHistory with continuation token: null
    111. 2020-03-19 18:09:34.201 18645-18720/com.Bermost.TheGurons D/Unity: Unloading 5 Unused Serialized files (Serialized files now loaded: 0)
    112. 2020-03-19 18:09:34.201 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use before: 54.5 MB.
    113. 2020-03-19 18:09:34.222 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use after: 54.7 MB.
    114. 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.
    115. 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)
    116. 2020-03-19 18:09:34.226 18645-18720/com.Bermost.TheGurons D/Unity: Unloading 3 Unused Serialized files (Serialized files now loaded: 0)
    117. 2020-03-19 18:09:34.247 18645-18674/com.Bermost.TheGurons D/Unity: UnloadTime: 2.877136 ms
    118. 2020-03-19 18:09:34.254 18645-18674/com.Bermost.TheGurons W/Unity: Dialogue System: The scene is missing an EventSystem. Adding one.
    119.    PixelCrushers.DialogueSystem.UITools:RequireEventSystem()
    120.    UnityEngine.Events.UnityAction`2:Invoke(T0, T1)
    121.  
    122.    (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 35)
    123. 2020-03-19 18:09:34.267 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use before: 54.3 MB.
    124. 2020-03-19 18:09:34.279 18645-18739/com.Bermost.TheGurons I/UnityIAP: Purchase history response: 0
    125. 2020-03-19 18:09:34.279 18645-18739/com.Bermost.TheGurons I/UnityIAP: Continuation token: null
    126. 2020-03-19 18:09:34.279 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying owned items' purchase history, item type: inapp
    127. 2020-03-19 18:09:34.279 18645-18739/com.Bermost.TheGurons I/UnityIAP: Package name: com.Bermost.TheGurons
    128. 2020-03-19 18:09:34.279 18645-18739/com.Bermost.TheGurons I/UnityIAP: Calling getPurchaseHistory with continuation token: null
    129. 2020-03-19 18:09:34.281 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use after: 54.5 MB.
    130. 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.
    131. 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)
    132. 2020-03-19 18:09:34.292 18645-18720/com.Bermost.TheGurons D/Unity: Unloading 0 Unused Serialized files (Serialized files now loaded: 0)
    133. 2020-03-19 18:09:34.299 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use before: 53.6 MB.
    134. 2020-03-19 18:09:34.314 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use after: 53.8 MB.
    135. 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.
    136. 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)
    137. 2020-03-19 18:09:34.315 18645-18720/com.Bermost.TheGurons D/Unity: Unloading 0 Unused Serialized files (Serialized files now loaded: 0)
    138. 2020-03-19 18:09:34.317 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use before: 53.6 MB.
    139. 2020-03-19 18:09:34.333 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use after: 53.8 MB.
    140. 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.
    141. 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)
    142. 2020-03-19 18:09:34.384 18645-18739/com.Bermost.TheGurons I/UnityIAP: Purchase history response: 0
    143. 2020-03-19 18:09:34.387 18645-18739/com.Bermost.TheGurons I/UnityIAP: Continuation token: null
    144. 2020-03-19 18:09:34.388 18645-18739/com.Bermost.TheGurons I/UnityIAP: onQueryInventoryFinished: true
    145. 2020-03-19 18:09:34.388 18645-18739/com.Bermost.TheGurons I/UnityIAP: Inventory refresh successful. (response: 0:OK)
    146. 2020-03-19 18:09:34.405 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    147. 2020-03-19 18:09:34.405 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying owned items, item type: inapp
    148. 2020-03-19 18:09:34.405 18645-18739/com.Bermost.TheGurons I/UnityIAP: Package name: com.Bermost.TheGurons
    149. 2020-03-19 18:09:34.405 18645-18739/com.Bermost.TheGurons I/UnityIAP: Calling getPurchases with continuation token: null
    150. 2020-03-19 18:09:34.408 18645-18739/com.Bermost.TheGurons I/UnityIAP: Owned items response: 0
    151. 2020-03-19 18:09:34.409 18645-18739/com.Bermost.TheGurons I/UnityIAP: Continuation token: null
    152. 2020-03-19 18:09:34.409 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying SKU details.
    153. 2020-03-19 18:09:34.426 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying owned items, item type: subs
    154. 2020-03-19 18:09:34.426 18645-18739/com.Bermost.TheGurons I/UnityIAP: Package name: com.Bermost.TheGurons
    155. 2020-03-19 18:09:34.426 18645-18739/com.Bermost.TheGurons I/UnityIAP: Calling getPurchases with continuation token: null
    156. 2020-03-19 18:09:34.431 18645-18720/com.Bermost.TheGurons D/Unity: Unloading 4 Unused Serialized files (Serialized files now loaded: 0)
    157. 2020-03-19 18:09:34.446 18645-18674/com.Bermost.TheGurons I/Unity: In-App Purchasing OnInitialized: PASS
    158.      #0 0x718c3c77e4 (libunity.so) GetStacktrace(int) 0x3c
    159.      #1 0x718c248768 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x21c
    160.      #2 0x718bd7d5fc (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> >, Object*) 0x90
    161.      #3 0x718bd7d52c (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xf8
    162.      #4 0x7188ca44e0 (libil2cpp.so) ? 0x0
    163.      #5 0x7188bb0690 (libil2cpp.so) ? 0x0
    164.      #6 0x7188bb02a8 (libil2cpp.so) ? 0x0
    165.      #7 0x71889c6f88 (libil2cpp.so) ? 0x0
    166.      #8 0x7189033fac (libil2cpp.so) ? 0x0
    167.      #9 0x71889c1118 (libil2cpp.so) ? 0x0
    168.      #10 0x71888bb41c (libil2cpp.so) ? 0x0
    169.      #11 0x71887dc7a8 (libil2cpp.so) ? 0x0
    170.      #12 0x718bcb202c (libunity.so) scripting_method_invoke(ScriptingMethodPtr, ScriptingObjectPtr, ScriptingArguments&, ScriptingExceptionPtr*, bool) 0xa4
    171.      #13 0x718bcc155c (libunity.so) ScriptingInvocation::Invoke
    172. 2020-03-19 18:09:34.452 18645-18674/com.Bermost.TheGurons I/Unity: UnityIAP: Promo interface is available for 10 items
    173.      #0 0x718c3c77e4 (libunity.so) GetStacktrace(int) 0x3c
    174.      #1 0x718c248768 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x21c
    175.      #2 0x718bd7d5fc (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> >, Object*) 0x90
    176.      #3 0x718bd7d52c (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xf8
    177.      #4 0x71889cf8ac (libil2cpp.so) ? 0x0
    178.      #5 0x7189033fac (libil2cpp.so) ? 0x0
    179.      #6 0x71889c1118 (libil2cpp.so) ? 0x0
    180.      #7 0x71888bb41c (libil2cpp.so) ? 0x0
    181.      #8 0x71887dc7a8 (libil2cpp.so) ? 0x0
    182.      #9 0x718bcb202c (libunity.so) scripting_method_invoke(ScriptingMethodPtr, ScriptingObjectPtr, ScriptingArguments&, ScriptingExceptionPtr*, bool) 0xa4
    183.      #10 0x718bcc155c (libunity.so) ScriptingInvocation::Invoke(ScriptingExceptionPtr*, bool) 0x98
    184.      #11 0x718bccb550 (libunity.so) MonoBehaviour::CallUpdateMethod(int
    185. 2020-03-19 18:09:34.493 18645-18739/com.Bermost.TheGurons I/UnityIAP: Owned items response: 0
    186. 2020-03-19 18:09:34.493 18645-18739/com.Bermost.TheGurons I/UnityIAP: Continuation token: null
    187. 2020-03-19 18:09:34.493 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying SKU details.
    188. 2020-03-19 18:09:34.513 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying owned items' purchase history, item type: subs
    189. 2020-03-19 18:09:34.513 18645-18739/com.Bermost.TheGurons I/UnityIAP: Package name: com.Bermost.TheGurons
    190. 2020-03-19 18:09:34.513 18645-18739/com.Bermost.TheGurons I/UnityIAP: Calling getPurchaseHistory with continuation token: null
    191. 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}
    192. 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
    193. 2020-03-19 18:09:34.679 18645-18739/com.Bermost.TheGurons I/UnityIAP: Purchase history response: 0
    194. 2020-03-19 18:09:34.679 18645-18739/com.Bermost.TheGurons I/UnityIAP: Continuation token: null
    195. 2020-03-19 18:09:34.679 18645-18739/com.Bermost.TheGurons I/UnityIAP: Querying owned items' purchase history, item type: inapp
    196. 2020-03-19 18:09:34.680 18645-18739/com.Bermost.TheGurons I/UnityIAP: Package name: com.Bermost.TheGurons
    197. 2020-03-19 18:09:34.680 18645-18739/com.Bermost.TheGurons I/UnityIAP: Calling getPurchaseHistory with continuation token: null
    198. 2020-03-19 18:09:34.804 18645-18739/com.Bermost.TheGurons I/UnityIAP: Purchase history response: 0
    199. 2020-03-19 18:09:34.806 18645-18739/com.Bermost.TheGurons I/UnityIAP: Continuation token: null
    200. 2020-03-19 18:09:34.807 18645-18739/com.Bermost.TheGurons I/UnityIAP: onQueryInventoryFinished: true
    201. 2020-03-19 18:09:34.807 18645-18739/com.Bermost.TheGurons I/UnityIAP: Inventory refresh successful. (response: 0:OK)
    202. 2020-03-19 18:09:34.815 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    203. 2020-03-19 18:09:34.834 18645-18674/com.Bermost.TheGurons I/Unity: UnityIAP: Promo interface is available for 10 items
    204.      #0 0x718c3c77e4 (libunity.so) GetStacktrace(int) 0x3c
    205.      #1 0x718c248768 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x21c
    206.      #2 0x718bd7d5fc (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> >, Object*) 0x90
    207.      #3 0x718bd7d52c (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xf8
    208.      #4 0x71889cf8ac (libil2cpp.so) ? 0x0
    209.      #5 0x7189033fac (libil2cpp.so) ? 0x0
    210.      #6 0x71889c1118 (libil2cpp.so) ? 0x0
    211.      #7 0x71888bb41c (libil2cpp.so) ? 0x0
    212.      #8 0x71887dc7a8 (libil2cpp.so) ? 0x0
    213.      #9 0x718bcb202c (libunity.so) scripting_method_invoke(ScriptingMethodPtr, ScriptingObjectPtr, ScriptingArguments&, ScriptingExceptionPtr*, bool) 0xa4
    214.      #10 0x718bcc155c (libunity.so) ScriptingInvocation::Invoke(ScriptingExceptionPtr*, bool) 0x98
    215.      #11 0x718bccb550 (libunity.so) MonoBehaviour::CallUpdateMethod(int
    216. 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
    217. 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
    218. 2020-03-19 18:09:35.177 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    219. 2020-03-19 18:09:35.338 18645-18674/com.Bermost.TheGurons D/Unity: UnloadTime: 2.361563 ms
    220. 2020-03-19 18:09:35.379 18645-18674/com.Bermost.TheGurons I/Unity: [TouchScript] Initialized Unity touch input.
    221.      #0 0x718c3c77e4 (libunity.so) GetStacktrace(int) 0x3c
    222.      #1 0x718c248768 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x21c
    223.      #2 0x718bd7d5fc (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> >, Object*) 0x90
    224.      #3 0x718bd7d52c (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xf8
    225.      #4 0x7189178a28 (libil2cpp.so) ? 0x0
    226.      #5 0x71888bb41c (libil2cpp.so) ? 0x0
    227.      #6 0x71887dc7a8 (libil2cpp.so) ? 0x0
    228.      #7 0x718bcb202c (libunity.so) scripting_method_invoke(ScriptingMethodPtr, ScriptingObjectPtr, ScriptingArguments&, ScriptingExceptionPtr*, bool) 0xa4
    229.      #8 0x718bcc155c (libunity.so) ScriptingInvocation::Invoke(ScriptingExceptionPtr*, bool) 0x98
    230.      #9 0x718bccd500 (libunity.so) MonoBehaviour::AddToManager() 0x1b8
    231.      #10 0x718bcccfa4 (libunity.so) MonoBehaviour::AwakeFromLoad(AwakeFromLoadMode) 0x2b
    232. 2020-03-19 18:09:35.499 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    233. 2020-03-19 18:09:35.501 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use before: 57.8 MB.
    234. 2020-03-19 18:09:35.546 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use after: 58.1 MB.
    235. 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.
    236. 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)
    237. 2020-03-19 18:09:35.546 18645-18720/com.Bermost.TheGurons D/Unity: Unloading 0 Unused Serialized files (Serialized files now loaded: 0)
    238. 2020-03-19 18:09:35.549 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use before: 57.8 MB.
    239. 2020-03-19 18:09:35.593 18645-18674/com.Bermost.TheGurons D/Unity: System memory in use after: 58.1 MB.
    240. 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.
    241. 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)
    242. 2020-03-19 18:09:35.844 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    243. 2020-03-19 18:09:36.401 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    244. 2020-03-19 18:09:36.849 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    245. 2020-03-19 18:09:37.362 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    246. 2020-03-19 18:09:37.797 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    247. 2020-03-19 18:09:38.278 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    248. 2020-03-19 18:09:38.623 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    249. 2020-03-19 18:09:38.990 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    250. 2020-03-19 18:09:39.336 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    251. 2020-03-19 18:09:39.665 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    252. 2020-03-19 18:09:40.001 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    253. 2020-03-19 18:09:40.497 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    254. 2020-03-19 18:09:40.846 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    255. 2020-03-19 18:09:41.197 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    256. 2020-03-19 18:09:41.546 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    257. 2020-03-19 18:09:41.918 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    258. 2020-03-19 18:09:42.267 18645-18739/com.Bermost.TheGurons I/UnityIAP: invoking callback
    259. 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!
    260. 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!
    261. 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 }
    262. 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 }
    263. 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 }
    264. 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 }
    265.  
    266.  
     
  4. janiche

    janiche

    Joined:
    Jan 4, 2015
    Posts:
    52
    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.
     
  5. sbankhead

    sbankhead

    Unity Technologies

    Joined:
    Jul 27, 2014
    Posts:
    97
    i think you swapped you android and ios gameId's. The gameId in your logs is not an android gameId.
     
  6. janiche

    janiche

    Joined:
    Jan 4, 2015
    Posts:
    52
    You were right, for some reason I swapped the ID. Thanks