Crashes split_config.armeabi_v7a.apk and split_config.arm64_v8a.apk
Asked Answered
G

1

6

I have updated android app with native libraries, that was build only for armeabi_v7 CPU architecture, and I added arm64 support after update. App was written in cocos2d-x. After update I started to get crashes in firebase crashlytics:

enter image description here

With empty stack trace:

enter image description here

Any help is appreciated. Thanks!

Grow answered 19/6, 2020 at 12:55 Comment(0)
I
1

Firebaser here -

If you are building AABs and using Crashlytics NDK, you may have to try adding the following in your AndroidManifest.xml file, in your <application/> block:

<application
    android:extractNativeLibs="true"
    ...

</application>

This may not work for you, but we have seen it work with some developers. Note that this will increase the size of the final app binary that your end-users download.

Ignominious answered 22/6, 2020 at 18:14 Comment(4)
But the default is true thoughEmbezzle
Any update on this? Were you able to fix it?Fabaceous
any update on its fix?Renault
Still getting this errors, is anyone get solution for this?Shiff

© 2022 - 2024 — McMap. All rights reserved.