[Xamarin.Android.Build.Tasks] default $(AndroidUseAssemblyStore) to false for debug builds #6660
+23
−4
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Context: https://github.com/xamarin/QualityAssurance/tree/master/Manual/CrossPlatformDebugging
Fixes: https://devdiv.visualstudio.com/DevDiv/_workitems/edit/1430409
Fixes: #6480
A
CrossPlatformDebuggingsample project in the QA repo fails todebug with:
The problem goes away if you do one of:
<AndroidUseAssemblyStore>false</AndroidUseAssemblyStore>$(DebugType)toportable. (the project hasfull)The problem appears to be:
$(AndroidUseAssemblyStore)defaults totruewhen you turn FastDeployment off.
Assembly stores appear to have some issue when
DebugType=full--that is where the crash occurs.
In this case let's address No. 1, as we don't really want the
assembly store to be used when debugging. I reordered default values
for MSBuild properties, so that
$(AndroidIncludeDebugSymbols)istaken into account.
I added parameters for a debugging test for
DebugType=full, and Iupdated another test that used to set
AndroidUseAssemblyStore=falsethat should not be needed.