I am trying to publish my Xamarin.Forms app to the play store and I am walking through the prep doc.
The document says I should include the following code in the AssemblyInfo.cs file.
#if DEBUG
[assembly: Application(Debuggable=true)]
#else
[assembly: Application(Debuggable=false)]
#endif
I looked around but I can only find this file in my obj dirs which means it get's generated during the build. But not in my folder of my android project (the MyApp.Android\obj\debug or release dir)
The comments say this info is outdated but do not refer to how the 2020 way of working should be.
Where do I find this info?