Search Unity

App not working on some devices; Failed to load 'libmain.so'

Discussion in 'Android' started by ishimurax, Jan 1, 2021.

  1. ishimurax

    ishimurax

    Joined:
    May 7, 2020
    Posts:
    6
    After upgrading our Unity project from 2019.3.15f1 to 2020.2.1f1
    some of our testers started getting error:

    12-31 16:21:34.740 20342 20342 E Unity   : Failed to load 'libmain.so'
    12-31 16:21:34.740 20342 20342 E Unity :
    12-31 16:21:34.740 20342 20342 E Unity : java.lang.UnsatisfiedLinkError: dlopen failed: library "/data/app/com.*****.*****-2VG7SJabCDmTNFQuPiQIyw==/lib/arm64/libmain.so" not found
    12-31 16:21:34.740 20342 20342 E Unity : Your hardware does not support this application.



    We are building our project as .aab (Android App Bundle) with Google Play. When built .aab is checked with winrar, we can see that
    libmain.so is included in both ****.aab\base\lib\arm64-v8a ****.aab\base\lib\armeabi-v7a.

    By now we tried:
    - Checking our build settings are: scripting backend is IL2cpp, both ARMv7 ARM64 target architectures are checked.
    - Deleted library completely and let unity recreate it
    - Setting install location to `automatic`
    - Setting write permission to `internal`
    - Clearing play store cache and app cache for testers device

    build.gradle:

    android {
    compileSdkVersion 30
    buildToolsVersion '30.0.3'

    compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
    }

    defaultConfig {
    minSdkVersion 24
    targetSdkVersion 30
    ndk {
    abiFilters 'armeabi-v7a', 'arm64-v8a'
    }
    versionCode 490
    versionName '1.490'
    consumerProguardFiles 'proguard-unity.txt'
    }

    lintOptions {
    abortOnError false
    }

    aaptOptions {
    noCompress = ['.ress', '.resource', '.obb'] + unityStreamingAssets.tokenize(', ')
    ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~"
    }

    packagingOptions {
    doNotStrip '*/armeabi-v7a/*.so'
    doNotStrip '*/arm64-v8a/*.so'
    }


    Graphics API: OpenGLES3

    Some packages in project

    - Facebook SDK 8.1.1
    - Backtrace 3.2.6
    - Google Play Asset Delivery & Google Play Core 1.3.0
    - Localization 0.9.0
    - AR Foundation 4.0.9
    - IAP 2.1.1
    - EMpro 2.13.0
     
  2. chenklein

    chenklein

    Joined:
    Aug 11, 2012
    Posts:
    13
    Same here
     
    Mouton_redstone likes this.
  3. mocerezo

    mocerezo

    Joined:
    Jan 21, 2013
    Posts:
    8
    I have the same issue
     
    Mouton_redstone likes this.
  4. darkmagas

    darkmagas

    Joined:
    Aug 28, 2013
    Posts:
    4
    yeah it happens also for me has anyone found a solution?, so far im thinking on going back to 2020.1.17 since it worked on that version of unity.
     
  5. ishimurax

    ishimurax

    Joined:
    May 7, 2020
    Posts:
    6
    Update: I haven't been able to make it work on this editor version.
    I restored to my physical backup which was for unity version 2019.3.15f1 and upgraded it to 2020.1.17 this time. It is working now.
     
  6. mantassk

    mantassk

    Unity Technologies

    Joined:
    Apr 27, 2017
    Posts:
    9
    Hey, could someone report a bug and attach the case number here or send me a private message? If you could attach a project that would be very helpful in debugging the issue.
     
    Mouton_redstone likes this.
  7. namadeveloper1

    namadeveloper1

    Joined:
    Mar 27, 2018
    Posts:
    1
    We're a small game studio and we have just experienced this issue with large number of users. This issue happens only on devices Android 9 or newer. Any device using OS older than Android 9 will run the game just fine.

    The reason we missed it in our testing is the issue doesn't happen with APK build, it happens with Android App Bundle (AAB) build only. (We stayed late so we thought testing APK build would just be fine, then we paid for that).

    We're rolling back to Unity 2020.1.17 as suggested above. Hope you guys will find a better solution soon.
     
  8. alexds9

    alexds9

    Joined:
    Feb 9, 2019
    Posts:
    16
    I've been experiencing this "libmain.so" error on Android 9+ devices with Unity 2020.2.1f1 and 2020.2.2f1, while older Android versions were working fine.
    I followed @namadeveloper1 advice to downgrade to 2020.1.17f1, had to clean and reinstall packages/plugins.
    Now AAB installed from Google Store is working as expected, no more "libmain.so" error on launch.
     
  9. savantedroid

    savantedroid

    Joined:
    Oct 8, 2015
    Posts:
    12
    Did anybody issue a bug for this?
     
  10. Volcore

    Volcore

    Joined:
    Jan 14, 2020
    Posts:
    24
    Same issue here. Unity 2020.2.1f1. Would rather not downgrade. Any insights?
     
  11. Volcore

    Volcore

    Joined:
    Jan 14, 2020
    Posts:
    24
    nik_d likes this.
  12. nik_d

    nik_d

    Joined:
    Apr 27, 2018
    Posts:
    66
    Reproduced in pure empty project in Unity 2020.2.3f1.
    Reported as (Case 1314472).

    Workaround:
    * Use custom gradle properties template
    * Add to its end:
    android.bundle.enableUncompressedNativeLibs=false

    (It's the only difference between Exported Project and the project located in Temp when building from GUI)
     
    yauheni_ivanou and Volcore like this.
  13. mantassk

    mantassk

    Unity Technologies

    Joined:
    Apr 27, 2017
    Posts:
    9
    Hey, the case is being worked on at the moment. Once I will have any updates, I will let you know.
     
  14. srgstudios

    srgstudios

    Joined:
    May 15, 2015
    Posts:
    16
    I'm getting the same issue on 2019.4.17f1 trying to run on a Pixel 4a running Android 11 build number RQ1A.210105.002. I've been on this Unity version for a while now, and have tested the game on this phone before, so im leaning towards an issue with an Android update.
     
  15. FlynnyMac

    FlynnyMac

    Joined:
    Aug 24, 2020
    Posts:
    12
    Any update to this?
     
  16. lorenzog45

    lorenzog45

    Joined:
    Sep 20, 2019
    Posts:
    2
    I also ran into this and just built an APK instead of AAB as a quick fix
     
  17. FlynnyMac

    FlynnyMac

    Joined:
    Aug 24, 2020
    Posts:
    12
    Anyone tried 2020.3.0f1 yet?
     
  18. NickHydro

    NickHydro

    Joined:
    Feb 22, 2021
    Posts:
    4
    This is still an issue with 2020.3.0f1 (also the gradle.properties workaround is not working in my Flutter project either).

    EDIT:

    Actually adding
    android:extractNativeLibs="true"
    to the <application> element in AndroidManifest.xml as a temporary workaround does work with 2020.3.0f1. This might be specific to my version of Gradle (per <application> | Android Developers, this is set to false by default in Android Gradle plugin 3.6.0).

    This isn't a long-term solution as Unity should be able to handle loading native libraries without extracting to the filesystem first.

    I also confirm this is still present in 2021.1.0b11
     
    Last edited: Mar 15, 2021
    vcamargo9 likes this.
  19. vl4dimir

    vl4dimir

    Joined:
    Jun 28, 2012
    Posts:
    21
    I've also submitted a bug report, attaching a minimal project demonstrating the bug. The ID on FogBugz is 1321977. None of the workarounds worked for me BTW (Unity 2020.2.7f1). A complete showstopper...
     
  20. LarsNonne

    LarsNonne

    Joined:
    Jun 30, 2016
    Posts:
    5
    Hi,
    would you mind elaborating more on your settings? For me this workaround still doesn't work.

    I'm using Unity 2020.3 with Android Api 30 (also tested 28), IL2CPP and Google PAD.
    Maybe it is this specific combination, who knows.
    I tried your manifest addition and the gradleTemplate addition, but nothing seems to work.

    Any help to get the app running on android again is much appreciated.
     
    emreludum likes this.
  21. Tomas1856

    Tomas1856

    Unity Technologies

    Joined:
    Sep 21, 2012
    Posts:
    3,905
  22. NickHydro

    NickHydro

    Joined:
    Feb 22, 2021
    Posts:
    4
    Can you post your AndroidManifest.xml, build.gradle and gradle.properties? I'm running this via a Flutter app so it will be easier for me to check your files against mine to see if there's any version mismatches.
     
  23. LarsNonne

    LarsNonne

    Joined:
    Jun 30, 2016
    Posts:
    5
    Sorry, I'm not sure how to get the final versions of those files, since building as project with the Google build-pipline inside Unity does not support exporting a project, right? In the .aab I was only able to find the Manifest, but not the gradle files (which makes sense, since that step is already done).
    I never really had to change any of those, so I simply used the template-overrides in the Unity Prefs. Is that correct?

    Here's the Manifest:
    Code (JavaScript):
    1. <?xml version="1.0" encoding="utf-8"?>
    2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
    3.     package=[censored]
    4.     platformBuildVersionCode="30"
    5.     platformBuildVersionName="11"
    6.     android:compileSdkVersion="30"
    7.     android:compileSdkVersionCodename="11"
    8.     android:installLocation="preferExternal"
    9.     android:versionCode="1"
    10.     android:versionName="0.1" >
    11.  
    12.     <uses-sdk
    13.         android:minSdkVersion="25"
    14.         android:targetSdkVersion="30" />
    15.  
    16.     <supports-screens
    17.         android:anyDensity="true"
    18.         android:largeScreens="true"
    19.         android:normalScreens="true"
    20.         android:smallScreens="true"
    21.         android:xlargeScreens="true" />
    22.  
    23.     <uses-feature android:glEsVersion="0x00030000" />
    24.     <uses-feature
    25.         android:name="android.hardware.vulkan.version"
    26.         android:required="false" />
    27.  
    28.     <uses-permission android:name="android.permission.INTERNET" />
    29.     <uses-permission android:name="android.permission.VIBRATE" />
    30.     <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    31.  
    32.     <uses-feature
    33.         android:name="android.hardware.location.gps"
    34.         android:required="false" />
    35.     <uses-feature
    36.         android:name="android.hardware.location"
    37.         android:required="false" />
    38.     <uses-feature
    39.         android:name="android.hardware.touchscreen"
    40.         android:required="false" />
    41.     <uses-feature
    42.         android:name="android.hardware.touchscreen.multitouch"
    43.         android:required="false" />
    44.     <uses-feature
    45.         android:name="android.hardware.touchscreen.multitouch.distinct"
    46.         android:required="false" />
    47.  
    48.     <uses-permission android:name="com.android.vending.BILLING" />
    49.     <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
    50.  
    51.     <application
    52.         android:extractNativeLibs="true"
    53.         android:icon="@mipmap/app_icon"
    54.         android:label="@string/app_name" >
    55.         <activity
    56.             android:name="com.unity3d.player.UnityPlayerActivity"
    57.             android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale|layoutDirection|density"
    58.             android:hardwareAccelerated="false"
    59.             android:launchMode="singleTask"
    60.             android:screenOrientation="fullSensor"
    61.             android:theme="@style/UnityThemeSelector" >
    62.             <intent-filter>
    63.                 <action android:name="android.intent.action.MAIN" />
    64.  
    65.                 <category android:name="android.intent.category.LAUNCHER" />
    66.             </intent-filter>
    67.  
    68.             <meta-data
    69.                 android:name="unityplayer.UnityActivity"
    70.                 android:value="true" />
    71.         </activity>
    72.  
    73.         <meta-data
    74.             android:name="unity.splash-mode"
    75.             android:value="0" />
    76.         <meta-data
    77.             android:name="unity.splash-enable"
    78.             android:value="True" />
    79.         <meta-data
    80.             android:name="unity.build-id"
    81.             android:value=[censored] />
    82.         <meta-data
    83.             android:name="com.google.android.play.billingclient.version"
    84.             android:value="3.0.1" />
    85.  
    86.         <activity
    87.             android:name="com.android.billingclient.api.ProxyBillingActivity"
    88.             android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
    89.             android:exported="false"
    90.             android:theme="@android:style/Theme.Translucent.NoTitleBar" />
    91.         <activity
    92.             android:name="com.google.android.play.core.missingsplits.PlayCoreMissingSplitsActivity"
    93.             android:enabled="false"
    94.             android:exported="false"
    95.             android:launchMode="singleInstance"
    96.             android:process=":playcore_missing_splits_activity"
    97.             android:stateNotNeeded="true" />
    98.         <activity
    99.             android:name="com.google.android.play.core.common.PlayCoreDialogWrapperActivity"
    100.             android:enabled="false"
    101.             android:exported="false"
    102.             android:stateNotNeeded="true"
    103.             android:theme="@style/Theme.PlayCore.Transparent" />
    104.  
    105.         <service
    106.             android:name="com.google.android.play.core.assetpacks.AssetPackExtractionService"
    107.             android:enabled="false"
    108.             android:exported="true" />
    109.     </application>
    110.  
    111. </manifest>
    When exporting the project with the standard export setting from build settings these files are generated:

    build.gradle
    Code (JavaScript):
    1. // GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
    2.  
    3. allprojects {
    4.     buildscript {
    5.         repositories {
    6.             google()
    7.             jcenter()
    8.         }
    9.  
    10.         dependencies {
    11.             classpath 'com.android.tools.build:gradle:3.6.0'
    12.            
    13.         }
    14.     }
    15.  
    16.     repositories {
    17.         google()
    18.         jcenter()
    19.         flatDir {
    20.             dirs "${project(':unityLibrary').projectDir}/libs"
    21.         }
    22.     }
    23. }
    24.  
    25. task clean(type: Delete) {
    26.     delete rootProject.buildDir
    27. }
    gradle.properties
    Code (JavaScript):
    1. org.gradle.jvmargs=-Xmx4096M
    2. org.gradle.parallel=true
    3. android.enableR8=false
    4. unityStreamingAssets=.unity3d, google-services-desktop.json
    5. android.bundle.enableUncompressedNativeLibs=false
     
    Last edited: Mar 17, 2021
    vcamargo9 likes this.
  24. NickHydro

    NickHydro

    Joined:
    Feb 22, 2021
    Posts:
    4
    OK, the only thing I can suggest is changing

    classpath 'com.android.tools.build:gradle:3.6.0'
    to
    classpath 'com.android.tools.build:gradle:4.1.2'

    and removing enableUncompressedNativeLibs from gradle.properties. Otherwise, that looks consistent with mine, so if it doesn't work for you, maybe the Flutter build scripts are doing something with Gradle that happens to fix the issue.

    (I'm new to Unity but I understand you can just delete the "GENERATED BY UNITY." comments, edit the files and re-export to use the modified properties).

    Also maybe try changing compileSdkVersion to 29, changing gradle-wrapper.properties to use
    gradle-6.5-all.zip and Unity 2021.1.0b11.2079. That will be as consistent as possible with my setup but I doubt it's going to make a difference, fairly sure the issue is with Unity/Android Gradle plugin, nothing else.
     
  25. LarsNonne

    LarsNonne

    Joined:
    Jun 30, 2016
    Posts:
    5
    I tried exporting the project and building in android studio with the updated gradle. The app was starting again, but unfortunately that breaks the Google Play Services (did I miss something here?). Upgrading Gradle inside Unity is, as I understand it, a bigger problem. Each Unity Version comes with a Gradle Version that is tested with that specific Unity Version. Updating this can potentially break a lot of things, especially when upgrading to another major version.
    Might be a last restort to test for me though...

    Usually I would just wait for the fix to be pushed, but I need a working build (for demonstration purposes) in 5 days, so there's that.

    Thanks a lot for your help!
    At least now I understand more of where the problem comes from and can try to fix it somehow.

    [Update]
    Updating Gradle to the newest version did not create any build errors for me, but didn't fix the issue either. So there must be some other difference.
     
    Last edited: Mar 17, 2021
  26. genoompjes2

    genoompjes2

    Joined:
    Mar 23, 2021
    Posts:
    1
    Got the same error on my emulators. But when i run this on a physical device (samsung s10 SM-G73F) it works fine. I am new to this and already tried for 2 weeks to get this working.
     
  27. domonyiv

    domonyiv

    Joined:
    Oct 1, 2016
    Posts:
    76
  28. BBO_Lagoon

    BBO_Lagoon

    Joined:
    Mar 2, 2017
    Posts:
    200
    domonyiv likes this.
  29. domonyiv

    domonyiv

    Joined:
    Oct 1, 2016
    Posts:
    76
  30. Tomas1856

    Tomas1856

    Unity Technologies

    Joined:
    Sep 21, 2012
    Posts:
    3,905
    I don't think so, but can't say for sure.
     
  31. karyll

    karyll

    Joined:
    Apr 4, 2017
    Posts:
    50
  32. BBO_Lagoon

    BBO_Lagoon

    Joined:
    Mar 2, 2017
    Posts:
    200
  33. karyll

    karyll

    Joined:
    Apr 4, 2017
    Posts:
    50
    excuse my noobness , but in Unity Hub I only see 2020.3.2f1. Does it mean that 2020.3.3f1 has not been rolled out yet?
     
    eelir_g likes this.
  34. vl4dimir

    vl4dimir

    Joined:
    Jun 28, 2012
    Posts:
    21
    This is still happening for me with Unity 2021.1.1f1. I've made my small repo demonstrating the bug available on Github, see this other thread for details.
     
  35. karyll

    karyll

    Joined:
    Apr 4, 2017
    Posts:
    50
    I think you need to wait for 2021.1.2f1 to be rolled out.
     
  36. sharonj731

    sharonj731

    Joined:
    Jun 10, 2018
    Posts:
    8

    I'm using 2020.3.2f1 and this edit saves me for the time-being. I dreaded upgrading to 2020 but got forced into trying it. Other breaks to research, but this one at least has me up and running again. I'm grateful!
     
  37. addavies

    addavies

    Joined:
    May 18, 2018
    Posts:
    8
    I was getting this same error using the uaal github example and none of these fixes seemed to work. I even upgraded to Unity 2020.3.3f1 and get this error when pressing the Show Unity button. Credit to benoit-dumas for this fix that worked for me.

    Failure to initialize!
    Your hardware does not support this application.
    Failed to load 'libmain.so'

    Adding this to my app level build.gradle file solved the issue

    defaultConfig {
    ndk {
    abiFilters 'armeabi-v7a', 'x86'
    }
    }
     
    angganaro3 and Jagie like this.
  38. DFT-Games

    DFT-Games

    Joined:
    Jun 24, 2010
    Posts:
    454
    2020.3.8f1 same error on many devices :(
     
  39. GameEver

    GameEver

    Joined:
    Apr 28, 2020
    Posts:
    12
    I suddently started getting this error on my builds, using Unity 2020.3.4f1, updated to 2020.3.10f1 and still the same error. Sometimes it happens only in 32bits phones, and sometimes only in 64bits phones
     
  40. Jagie

    Jagie

    Joined:
    Oct 3, 2019
    Posts:
    1
    The real reason is: you should export both arm64-v8a and armeabi-v7a jnilibs when you export your unity project.
    so, just make sure your exporting configuration for android is right, just like this:
     

    Attached Files:

    • aaa.png
      aaa.png
      File size:
      251.5 KB
      Views:
      1,600
    fdasfsa, mbatutis and john_goren like this.
  41. frontwavegames

    frontwavegames

    Joined:
    Jan 28, 2020
    Posts:
    1
    Hi, I had the same problem.

    Just changing Player Settings -> Other Settings -> "Api Compatibility Level" field from ".NET 4.x" to ".Net Standard 2.0" solves the problem. Of course you should have ARMv7 and ARM64 both enabled too.

    My Unity version is 2020.3.11f1c1. Hope that helps.

    -- Edit: I also disabled the "Allow unsafe code" option, don't know exactly which option is in effect to solve it.
     
  42. JoRangers

    JoRangers

    Joined:
    Nov 7, 2017
    Posts:
    26
    Hi, I got a similar problem

    I use Unity 2021.1.13f1.

    During all my tests, I did build in ARM64.

    Yesterday, I had to build for ARMv7 devices so I check ARM64 and ARMv7 in Player Settings then all works :
    Device ARM64 with build ARM64
    Device ARMv7 with build ARM64 + ARMv7

    Today, I build again with ARM64 + ARMv7 and nothing works.
    The app won't launch : I stop on a black screen or back to device menu without the luck to see the black screen.

    After one hour of debug, I try the Split APK's by target architecture (Experimental) to have 2 unique apks.
    Unfortunately, nothing works.

    I do a lot of test from an empty scene and found a strange behaviour that when I put my prefab "AudioManager" in scene, the app doesn't work. My prefab has a script AudioManager in singleton with 2 basic function to play sound.

    What I don't understand is why this prefab and how it could create a crash because the scene didn't load in the case of a crash.
    I comment all my code, change audio source, the issue is always there.
    Same when I use the last Unity version : 2021.1.15f1

    Finally after 3 hours, I found a solution and do my 2 builds one by one.
    I do a build For ARM64, I check the ARM64 and uncheck the ARMv7.
    Then I do a build for ARMv7, I do the inverse.

    Now it works but I don't know how long.


    Here is a part of a logcat with the crash log from my device ARM64. I don't understand the log but perhaps you could find somethings.

    0001/01/01 00:00:00.000 -1 -1 Info --------- beginning of main
    2021/07/31 10:08:27.217 19901 19901 Error Zygote isWhitelistProcess - Process is Whitelisted
    2021/07/31 10:08:27.219 19901 19901 Error Zygote accessInfo : 1
    2021/07/31 10:08:27.246 19901 19901 Error world.caregive Not starting debugger since process cannot load the jdwp agent.
    2021/07/31 10:08:27.252 19901 19901 Debug ActivityThread setConscryptValidator
    2021/07/31 10:08:27.252 19901 19901 Debug ActivityThread setConscryptValidator - put
    2021/07/31 10:08:27.286 19901 19901 Warn ActivityThread handleWindowVisibility: no activity for token android.os.BinderProxy@ee489a7
    2021/07/31 10:08:27.328 19901 19901 Info IL2CPP JNI_OnLoad
    2021/07/31 10:08:27.338 19901 19901 Debug PhoneWindow forceLight changed to true [] from com.android.internal.policy.PhoneWindow.updateForceLightNavigationBar:4268 com.android.internal.policy.DecorView.updateColorViews:1513 com.android.internal.policy.PhoneWindow.dispatchWindowAttributesChanged:3246 android.view.Window.setFlags:1148 com.android.internal.policy.PhoneWindow.generateLayout:2474
    2021/07/31 10:08:27.338 19901 19901 Info MultiWindowDecorSupport updateCaptionType >> DecorView@aa7069f[], isFloating: false, isApplication: true, hasWindowDecorCaption: false, hasWindowControllerCallback: true
    2021/07/31 10:08:27.338 19901 19901 Debug MultiWindowDecorSupport setCaptionType = 0, DecorView = DecorView@aa7069f[]
    2021/07/31 10:08:27.354 19901 19901 Debug ViewRootImpl@f789631[UnityPlayerActivity] setView = com.android.internal.policy.DecorView@aa7069f TM=true MM=false
    2021/07/31 10:08:27.356 19901 19901 Verbose InputMethodManager Not IME target window, ignoring
    2021/07/31 10:08:27.356 19901 19901 Debug SurfaceView onWindowVisibilityChanged(0) true android.view.SurfaceView{f011116 VFE...... .F....I. 0,0-0,0 #7f010003 app:id/unitySurfaceView} of ViewRootImpl@f789631[UnityPlayerActivity]
    2021/07/31 10:08:27.361 19901 19901 Debug ViewRootImpl@f789631[UnityPlayerActivity] Relayout returned: old=(0,0,1600,2560) new=(0,0,1600,2560) req=(1600,2560)0 dur=5 res=0x7 s={true 484422434816} ch=true
    2021/07/31 10:08:27.365 19901 19901 Debug SurfaceView surfaceCreated 1 #8 android.view.SurfaceView{f011116 VFE...... .F....ID 0,0-1600,2452 #7f010003 app:id/unitySurfaceView}
    2021/07/31 10:08:27.365 19901 19901 Debug SurfaceView surfaceChanged (1600,2452) 1 #8 android.view.SurfaceView{f011116 VFE...... .F....ID 0,0-1600,2452 #7f010003 app:id/unitySurfaceView}
    2021/07/31 10:08:27.369 19901 19901 Warn Gralloc3 mapper 3.x is not supported
    2021/07/31 10:08:27.394 19901 19901 Debug ViewRootImpl@f789631[UnityPlayerActivity] Relayout returned: old=(0,0,1600,2560) new=(0,0,1600,2560) req=(1600,2560)0 dur=6 res=0x1 s={true 484422434816} ch=false
    2021/07/31 10:08:27.394 19901 19901 Debug ViewRootImpl@f789631[UnityPlayerActivity] MSG_WINDOW_FOCUS_CHANGED 1 1
    2021/07/31 10:08:27.394 19901 19901 Debug InputMethodManager prepareNavigationBarInfo() DecorView@aa7069f[UnityPlayerActivity]
    2021/07/31 10:08:27.394 19901 19901 Debug InputMethodManager getNavigationBarColor() -855310
    2021/07/31 10:08:27.396 19901 19901 Debug InputMethodManager prepareNavigationBarInfo() DecorView@aa7069f[UnityPlayerActivity]
    2021/07/31 10:08:27.396 19901 19901 Debug InputMethodManager getNavigationBarColor() -855310
    2021/07/31 10:08:27.396 19901 19901 Verbose InputMethodManager Starting input: tba=com.xyz.xyz.xyz ic=null mNaviBarColor -855310 mIsGetNaviBarColorSuccess true , NavVisible : true , NavTrans : false
    2021/07/31 10:08:27.396 19901 19901 Debug InputMethodManager startInputInner - Id : 0
    2021/07/31 10:08:27.396 19901 19901 Info InputMethodManager startInputInner - mService.startInputOrWindowGainedFocus
    2021/07/31 10:08:27.398 19901 19901 Debug ViewRootImpl@f789631[UnityPlayerActivity] MSG_RESIZED: frame=(0,0,1600,2560) ci=(0,0,0,108) vi=(0,54,0,108) or=1
    2021/07/31 10:08:27.407 19901 20078 Info Unity MemoryManager: Using 'Dynamic Heap' Allocator.
    2021/07/31 10:08:27.417 19901 19901 Debug InputMethodManager prepareNavigationBarInfo() DecorView@aa7069f[UnityPlayerActivity]
    2021/07/31 10:08:27.417 19901 19901 Debug InputMethodManager getNavigationBarColor() -855310
    2021/07/31 10:08:27.417 19901 19901 Verbose InputMethodManager Starting input: tba=com.xyz.xyz.xyz ic=null mNaviBarColor -855310 mIsGetNaviBarColorSuccess true , NavVisible : true , NavTrans : false
    2021/07/31 10:08:27.417 19901 19901 Debug InputMethodManager startInputInner - Id : 0
    2021/07/31 10:08:27.422 19901 20078 Info Unity SystemInfo CPU = ARM64 FP ASIMD AES, Cores = 8, Memory = 3589mb
    2021/07/31 10:08:27.422 19901 20078 Info Unity
    2021/07/31 10:08:27.422 19901 20078 Info Unity SystemInfo ARM big.LITTLE configuration: 4 big (mask: 0xf0), 4 little (mask: 0xf)
    2021/07/31 10:08:27.422 19901 20078 Info Unity
    2021/07/31 10:08:27.423 19901 20078 Info Unity ApplicationInfo com.xyz.xyz.xyz version 1.0 build 3c920fe3-e998-416e-8144-e6d5ff5eb81f
    2021/07/31 10:08:27.423 19901 20078 Info Unity
    2021/07/31 10:08:27.423 19901 20078 Info Unity Built from '2021.1/draft/staging' branch, Version '2021.1.13f1 (46f3b9702e2b)', Build type 'Release', Scripting Backend 'il2cpp', CPU 'arm64-v8a', Stripping 'Enabled'
    2021/07/31 10:08:27.423 19901 20078 Info Unity
    2021/07/31 10:08:27.431 19901 19901 Debug ViewRootImpl@f789631[UnityPlayerActivity] Relayout returned: old=(0,0,1600,2560) new=(0,0,1600,2560) req=(1600,2560)0 dur=4 res=0x1 s={true 484422434816} ch=false
    2021/07/31 10:08:27.448 19901 20078 Warn world.caregive 0xebadde09 skipped times: 0
    2021/07/31 10:08:27.451 19901 20078 Error CRASH *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
    2021/07/31 10:08:27.451 19901 20078 Error CRASH Version '2021.1.13f1 (46f3b9702e2b)', Build type 'Release', Scripting Backend 'il2cpp', CPU 'arm64-v8a'
    2021/07/31 10:08:27.451 19901 20078 Error CRASH Build fingerprint: 'samsung/gts4lwifixx/gts4lwifi:10/QP1A.190711.020/T830XXU5CUE2:user/release-keys'
    2021/07/31 10:08:27.451 19901 20078 Error CRASH Revision: '7'
    2021/07/31 10:08:27.451 19901 20078 Error CRASH ABI: 'arm64'
    2021/07/31 10:08:27.451 19901 20078 Error CRASH Timestamp: 2021-07-31 10:08:27+0200
    2021/07/31 10:08:27.451 19901 20078 Error CRASH pid: 19901, tid: 20078, name: UnityMain >>> com.xyz.xyz.xyz <<<
    2021/07/31 10:08:27.451 19901 20078 Error CRASH uid: 10250
    2021/07/31 10:08:27.451 19901 20078 Error CRASH signal 11 (SIGSEGV), code 2 (SEGV_ACCERR), fault addr 0x70c5ab0fe0
    2021/07/31 10:08:27.451 19901 20078 Error CRASH x0 00000070be440008 x1 00000070c56008c0 x2 00000070be4401c8 x3 00000070be4402b8
    2021/07/31 10:08:27.451 19901 20078 Error CRASH x4 000000000000000e x5 0000000000000000 x6 0000000000000001 x7 00000000001fd000
    2021/07/31 10:08:27.451 19901 20078 Error CRASH x8 0000000000000002 x9 0000000000000000 x10 0000000000000001 x11 0000000000000000
    2021/07/31 10:08:27.451 19901 20078 Error CRASH x12 0000000000000009 x13 fffffffffc000000 x14 0000000000000180 x15 0000000040000000
    2021/07/31 10:08:27.451 19901 20078 Error CRASH x16 00000071576cd8f0 x17 00000071576bf6f0 x18 0000007060b30000 x19 00000070be4402b8
    2021/07/31 10:08:27.451 19901 20078 Error CRASH x20 00000070c5ab1078 x21 000000000000000e x22 00000070be4401c8 x23 00000070be4402b8
    2021/07/31 10:08:27.451 19901 20078 Error CRASH x24 00000070c5bb4020 x25 00000070bc9c86ee x26 0000007062927f00 x27 00000070bc9c86a4
    2021/07/31 10:08:27.451 19901 20078 Error CRASH x28 0000007062f18000 x29 00000070c5ab1050
    2021/07/31 10:08:27.451 19901 20078 Error CRASH sp 00000070c5ab0fd0 lr 0000007157652f80 pc 00000071576289f4
    2021/07/31 10:08:27.451 19901 20078 Error CRASH
    2021/07/31 10:08:27.451 19901 20078 Error CRASH backtrace:
    2021/07/31 10:08:27.451 19901 20078 Error CRASH #00 pc 00000000000509f4 /apex/com.android.runtime/lib64/bionic/libc.so (je_arena_tcache_fill_small+4) (BuildId: c2f522895fa97ff8c517cefefec04171)
    2021/07/31 10:08:27.451 19901 20078 Error CRASH #01 pc 000000000007af7c /apex/com.android.runtime/lib64/bionic/libc.so (je_tcache_alloc_small_hard+24) (BuildId: c2f522895fa97ff8c517cefefec04171)
    2021/07/31 10:08:27.451 19901 20078 Error CRASH #02 pc 000000000004766c /apex/com.android.runtime/lib64/bionic/libc.so (je_calloc+620) (BuildId: c2f522895fa97ff8c517cefefec04171)
    2021/07/31 10:08:27.451 19901 20078 Error CRASH #03 pc 0000000000041270 /apex/com.android.runtime/lib64/bionic/libc.so (calloc+48) (BuildId: c2f522895fa97ff8c517cefefec04171)
    2021/07/31 10:08:27.451 19901 20078 Error CRASH #04 pc 00000000005290ec /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.451 19901 20078 Error CRASH #05 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.452 19901 20078 Error CRASH #06 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.452 19901 20078 Error CRASH #07 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.452 19901 20078 Error CRASH #08 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.452 19901 20078 Error CRASH #09 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.452 19901 19901 Debug ViewRootImpl@f789631[UnityPlayerActivity] Relayout returned: old=(0,0,1600,2560) new=(0,0,1600,2560) req=(1600,2560)0 dur=8 res=0x1 s={true 484422434816} ch=false
    2021/07/31 10:08:27.452 19901 20078 Error CRASH #10 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.452 19901 20078 Error CRASH #11 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.452 19901 20078 Error CRASH #12 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.452 19901 20078 Error CRASH #13 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.452 19901 20078 Error CRASH #14 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.452 19901 20078 Error CRASH #15 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.452 19901 20078 Error CRASH #16 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.452 19901 20078 Error CRASH #17 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.452 19901 20078 Error CRASH #18 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.452 19901 20078 Error CRASH #19 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.452 19901 20078 Error CRASH #20 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.452 19901 20078 Error CRASH #21 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.452 19901 20078 Error CRASH #22 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.452 19901 20078 Error CRASH #23 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.452 19901 20078 Error CRASH #24 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.452 19901 19901 Debug SurfaceView surfaceChanged (1600,2560) 1 #5 android.view.SurfaceView{f011116 VFE...... .F....ID 0,0-1600,2560 #7f010003 app:id/unitySurfaceView}
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #25 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #26 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #27 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #28 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #29 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #30 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #31 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #32 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #33 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #34 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #35 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #36 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #37 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #38 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #39 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #40 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #41 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #42 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #43 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #44 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #45 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #46 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #47 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #48 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #49 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.453 19901 20078 Error CRASH #50 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #51 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #52 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #53 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #54 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #55 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #56 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #57 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #58 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #59 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #60 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #61 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #62 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #63 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #64 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #65 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #66 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #67 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #68 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #69 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #70 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #71 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #72 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #73 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #74 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #75 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #76 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.454 19901 20078 Error CRASH #77 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #78 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #79 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #80 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #81 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #82 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #83 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #84 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #85 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #86 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #87 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #88 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #89 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #90 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #91 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #92 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #93 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #94 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #95 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #96 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #97 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #98 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #99 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #100 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.455 19901 20078 Error CRASH #101 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.456 19901 20078 Error CRASH #102 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.456 19901 20078 Error CRASH #103 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.456 19901 20078 Error CRASH #104 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.456 19901 20078 Error CRASH #105 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.456 19901 20078 Error CRASH #106 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.456 19901 20078 Error CRASH #107 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.456 19901 20078 Error CRASH #108 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.456 19901 20078 Error CRASH #109 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.456 19901 20078 Error CRASH #110 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.456 19901 20078 Error CRASH #111 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.456 19901 20078 Error CRASH #112 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.456 19901 20078 Error CRASH #113 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.456 19901 20078 Error CRASH #114 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.456 19901 20078 Error CRASH #115 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.456 19901 20078 Error CRASH #116 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.456 19901 20078 Error CRASH #117 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.457 19901 20078 Error CRASH #118 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.457 19901 20078 Error CRASH #119 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.457 19901 20078 Error CRASH #120 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.457 19901 20078 Error CRASH #121 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.457 19901 20078 Error CRASH #122 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.457 19901 20078 Error CRASH #123 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.457 19901 20078 Error CRASH #124 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.457 19901 20078 Error CRASH #125 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.457 19901 20078 Error CRASH #126 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.457 19901 20078 Error CRASH #127 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.457 19901 20078 Error CRASH #128 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.457 19901 20078 Error CRASH #129 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.457 19901 20078 Error CRASH #130 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.457 19901 20078 Error CRASH #131 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.457 19901 20078 Error CRASH #132 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.457 19901 20078 Error CRASH #133 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.457 19901 20078 Error CRASH #134 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.457 19901 20078 Error CRASH #135 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:27.457 19901 20078 Error CRASH #136 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.058 19901 20078 Error CRASH Tombstone written to: /storage/emulated/0/Android/data/com.xyz.xyz.xyz/files/tombstone_02
    0001/01/01 00:00:00.000 -1 -1 Info --------- beginning of crash
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime FATAL EXCEPTION: UnityMain
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime Process: com.xyz.xyz.xyz, PID: 19901
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime java.lang.Error: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime Version '2021.1.13f1 (46f3b9702e2b)', Build type 'Release', Scripting Backend 'il2cpp', CPU 'arm64-v8a'
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime Build fingerprint: 'samsung/gts4lwifixx/gts4lwifi:10/QP1A.190711.020/T830XXU5CUE2:user/release-keys'
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime Revision: '7'
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime ABI: 'arm64'
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime Timestamp: 2021-07-31 10:08:27+0200
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime pid: 19901, tid: 20078, name: UnityMain >>> com.xyz.xyz.xyz <<<
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime uid: 10250
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime signal 11 (SIGSEGV), code 2 (SEGV_ACCERR), fault addr 0x70c5ab0fe0
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime x0 00000070be440008 x1 00000070c56008c0 x2 00000070be4401c8 x3 00000070be4402b8
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime x4 000000000000000e x5 0000000000000000 x6 0000000000000001 x7 00000000001fd000
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime x8 0000000000000002 x9 0000000000000000 x10 0000000000000001 x11 0000000000000000
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime x12 0000000000000009 x13 fffffffffc000000 x14 0000000000000180 x15 0000000040000000
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime x16 00000071576cd8f0 x17 00000071576bf6f0 x18 0000007060b30000 x19 00000070be4402b8
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime x20 00000070c5ab1078 x21 000000000000000e x22 00000070be4401c8 x23 00000070be4402b8
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime x24 00000070c5bb4020 x25 00000070bc9c86ee x26 0000007062927f00 x27 00000070bc9c86a4
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime x28 0000007062f18000 x29 00000070c5ab1050
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime sp 00000070c5ab0fd0 lr 0000007157652f80 pc 00000071576289f4
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime backtrace:
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #00 pc 00000000000509f4 /apex/com.android.runtime/lib64/bionic/libc.so (je_arena_tcache_fill_small+4) (BuildId: c2f522895fa97ff8c517cefefec04171)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #01 pc 000000000007af7c /apex/com.android.runtime/lib64/bionic/libc.so (je_tcache_alloc_small_hard+24) (BuildId: c2f522895fa97ff8c517cefefec04171)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #02 pc 000000000004766c /apex/com.android.runtime/lib64/bionic/libc.so (je_calloc+620) (BuildId: c2f522895fa97ff8c517cefefec04171)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #03 pc 0000000000041270 /apex/com.android.runtime/lib64/bionic/libc.so (calloc+48) (BuildId: c2f522895fa97ff8c517cefefec04171)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #04 pc 00000000005290ec /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #05 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #06 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #07 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #08 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #09 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #10 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #11 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #12 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #13 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #14 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #15 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #16 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #17 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #18 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #19 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #20 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #21 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #22 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #23 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #24 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #25 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #26 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #27 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #28 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #29 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #30 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #31 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #32 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #33 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #34 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #35 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #36 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #37 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #38 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #39 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #40 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #41 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #42 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #43 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #44 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #45 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #46 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #47 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #48 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #49 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #50 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #51 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #52 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #53 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #54 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #55 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #56 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #57 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:29.059 19901 20078 Error AndroidRuntime #58 pc 0000000000529360 /data/app/com.xyz.xyz.xyz-6fczTiuSZkeuWyyMCGLhzA==/lib/arm64/libil2cpp.so (BuildId: e8d892463f91d405e437fde6d3f9ecdf85e3a75d)
    2021/07/31 10:08:33.088 19901 19901 Warn Unity Timeout while trying to pause the Unity Engine.
    2021/07/31 10:08:33.100 19901 19901 Debug ViewRootImpl@f789631[UnityPlayerActivity] MSG_WINDOW_FOCUS_CHANGED 0 1
    2021/07/31 10:08:33.101 19901 19901 Debug InputMethodManager prepareNavigationBarInfo() DecorView@aa7069f[UnityPlayerActivity]
    2021/07/31 10:08:33.101 19901 19901 Debug InputMethodManager getNavigationBarColor() -855310
    2021/07/31 10:08:33.102 19901 19901 Debug ViewRootImpl@f789631[UnityPlayerActivity] stopped(true) old=false
    2021/07/31 10:08:33.102 19901 19901 Debug SurfaceView windowStopped(true) false android.view.SurfaceView{f011116 VFE...... .F....I. 0,0-1600,2560 #7f010003 app:id/unitySurfaceView} of ViewRootImpl@f789631[UnityPlayerActivity]
    2021/07/31 10:08:33.105 19901 19901 Debug SurfaceView surfaceDestroyed callback.size 1 #1 android.view.SurfaceView{f011116 VFE...... .F....I. 0,0-1600,2560 #7f010003 app:id/unitySurfaceView}
    2021/07/31 10:08:37.147 19901 19901 Warn Unity Timeout while trying detaching primary window.
    2021/07/31 10:08:37.150 19901 19901 Debug SurfaceView remove() android.view.SurfaceView{f011116 VFE...... .F....I. 0,0-1600,2560 #7f010003 app:id/unitySurfaceView} Surface(name=SurfaceView - com.xyz.xyz.xyz/com.unity3d.player.UnityPlayerActivity@f011116@0)/@0x917e787
    2021/07/31 10:08:41.192 19901 19901 Debug SurfaceView onWindowVisibilityChanged(8) false android.view.SurfaceView{f011116 VFE...... ......ID 0,0-1600,2560 #7f010003 app:id/unitySurfaceView} of ViewRootImpl@f789631[UnityPlayerActivity]
    2021/07/31 10:08:41.193 19901 19901 Info Process Sending signal. PID: 19901 SIG: 9
     
  43. LE-Peter

    LE-Peter

    Joined:
    Sep 15, 2020
    Posts:
    44
    I'm now getting this with builds from 2020.3.18. Builds were fine up until today. I'm (currently) only testing APK builds.

    Things I changed today:
    - set minimum API level as 29
    - set target API level as 30
    - enabled ARM64 target architecture
    - added a keystore
     
  44. fabiojscosta1583

    fabiojscosta1583

    Joined:
    May 3, 2021
    Posts:
    4
    In my case it was caused by the debug builds. Try it without the debug check box
    upload_2021-10-14_13-17-11.png
     
  45. mauricioxnobre

    mauricioxnobre

    Joined:
    Jun 9, 2021
    Posts:
    3
    Hi.

    I'm having this same issue with LTS 2019.4.28f1, I'll see if there are any updates to LTS 2019 and try again.

    Meanwhile, I see people saying to create the AAB with both ARMv7 and ARM64 architectures, however, when I tried to upload an AAB with both architectures to Play Store sooner this month it was rejected, it seems Play Store will only accept ARM64 without ARMv7 from now on.

    Edit: It seems there are no updates to LTS 2019, as far as I remember it's still an active LTS so the issue is present at 2019 versions as well, how can someone file a bug report on this ?

    2nd Edit: Nevermind, looks like there is an update even though the editor is reporting none.
     
    Last edited: Oct 14, 2021
    angganaro3 likes this.
  46. LE-Peter

    LE-Peter

    Joined:
    Sep 15, 2020
    Posts:
    44
    It appears that just having ARM64 selected causes the issue. Having ARMv7 and Development Build selected (or not) makes no difference - for me.


    The hub is the place to look for updates, not the editor itself
     
  47. LE-Peter

    LE-Peter

    Joined:
    Sep 15, 2020
    Posts:
    44
    BergOnTheJob likes this.
  48. abe_unity647

    abe_unity647

    Joined:
    Apr 28, 2022
    Posts:
    6
    Not sure if this will help anyone else, but here is what got me past this error:

    Player Settings -> Other Settings -> Configuration -> set Scripting Backend to IL2CPP (was Mono)
    Player Settings -> Other Settings -> Configuration -> check ARM64 and ARMv7 (was previously just ARMv7)
    Player Settings -> Other Settings -> Identification -> set Target API Level to 30 (this matches the project we are embedding Unity into and may not be relevant to your project)
     
  49. creat327

    creat327

    Joined:
    Mar 19, 2009
    Posts:
    1,756
    This bug is back now in 2021.3.4. I'm getting users reporting that it crashes on their chromebook samsung 3 meanwhile samsung chromebook 4 seems to work. Any ideas?
     
  50. ejazullah579

    ejazullah579

    Joined:
    Oct 6, 2021
    Posts:
    3
    go to build settings and change the scripting backend from mono to IL2Cpp
    upload_2022-6-22_23-5-8.png