4

I have a Xamarin.Forms app, created using Visual Studio, which includes Android and iOS projects.

The app is deployed via App Center, which supports crash logging, but this feature requires upload of the app's debug symbols.

The App Center documentation includes detailed information about how to locate and upload debug symbols for iOS projects, but there is no equivalent documentation for Android projects. I have also been unable to find this documentation online, either from Xamarin or elsewhere.

Can anyone please point me to a resource that explains Xamarin.Android debug symbolication (or tell me the procedure)?

Many thanks.

Tim Coulter
  • 8,705
  • 11
  • 64
  • 95

1 Answers1

0

I got the symbol files from: "...{Project}.Android\obj\Debug\130\app_shared_libraries" (there should be a "libxamarin-app" inside) and then zipped the whole folder for one of the architectures (for example, arm64-v8a). You should not change the name or folder structure or Play Console will not accept it.

alera729
  • 31
  • 2