Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

10
  • 50
    For anyone wondering how to upload the Symbols file ... support.google.com/googleplay/android-developer/answer/… Commented Nov 8, 2021 at 2:58
  • 7
    Thanks so much for this! Silly me thought that the *.symbols files were what needed to be uploaded for the "Native debug symbols" and not a zip of folders containing *.so files. Commented Jan 31, 2022 at 21:53
  • 2
    For me the folder is actually at: [YOUR_PROJECT]\build\app\intermediates\merged_native_libs\release\out\lib Commented May 15, 2023 at 21:02
  • 5
    To prevent macOS files in the zip, use terminal instead: 1. cd you_project_path/build/app/intermediates/stripped_native_libs/productionRelease/out/lib 2. rm .DS_Store 3. zip -r symbols.zip . And for anyone getting errors not accepting the .so files from this directory use build/app/intermediates/stripped_native_libs/productionRelease/out/lib instead. Commented Jul 12, 2023 at 8:53
  • 3
    So.. do I need to do this every time? Commented Nov 24, 2023 at 22:39