Xamarin Android How to tell what text to put in the Skip linking assemblies box based on the missing assembly

Viewed 1337

I am having Release Build crashes due to Error inflating class android.support.design.widget.CoordinatorLayout. I have never used the CoordinatorLayout in my code, so I'm thinking it us being excluded by the Linker. The app runs when linking is set to None, and crashing starts when set to "Sdk Assemblies Only".

I have had a similar error before and I was able to solve it by adding the text Xamarin.Android.Support.v7.AppCompat;Xamarin.Android.Support.v4 to the Skip linking assemblies box (credit to mariusk).But this isn't working for android.support.design.widget.CoordinatorLayout

Skip Linking Assemblies box.

In order to help me and anyone else having issues like this in the future:

How to tell what text to put in the Skip linking assemblies box based on the missing assembly?

For example, my current error message is for android.support.design.widget.CoordinatorLayout, but adding android.support.design;android.support.design.widget; doesn't work.

0 Answers
Related