I have a Xamarin.Forms application that is deployed on both iOS and Android.
In the latest version, I'm having an issue that the build (from AppCenter) is crashing with the following message:
(wrapper dynamic-method) System.Object.1060f582-4695-4003-9852-3f5a0d375371(intptr,intptr,intptr,intptr,intptr)
android.content.res.Resources$NotFoundException: Resource ID #0x7f0b0071
android.content.res.ResourcesImpl.getValue(ResourcesImpl.java:215)
I searched for the resource with the ID #0x7f0b0071 and found the following:
// aapt resource value: 0x7f0b0071
public const int abc_tint_switch_track = 2131427441;
I'm not sure exactly what abc_tint_switch_track is. This file is auto-generated but I don't know why it has added this value or where it is used.
What is happening here?