Google Play crash logs not symbolicated with Android App Bundle

前端 未结 1 1081
既然无缘
既然无缘 2021-02-20 11:00

We have recently updated our apps to use Android App Bundles (aab) and to also include arm64 native libs.

Since doing so, our crash logs in native code in the \'Google P

1条回答
  •  温柔的废话
    2021-02-20 11:39

    Edit: The NDK 21 RC1 should fix this issue.

    This seems related to the fact that native libraries are kept uncompressed in the APK.

    By adding the following option in your gradle.properties, you can disable it:

    android.bundle.enableUncompressedNativeLibs=false
    

    You'll need to release a new App Bundle built with this option.

    0 讨论(0)
提交回复
热议问题