Good afternoon,
I decided to play around with Xamarin today, and I've been having a few issues getting Vector images to work. I've followed the instructions here and have the following in my layout:
<ImageView
app:srcCompat="@drawable/fort"
android:layout_height="wrap_content"
android:id="@+id/imageView1" />
However, I get the following error at runtime:
Unhandled Exception: Java.Lang.IllegalStateException: This app has been built with an incorrect configuration. Please configure your build for VectorDrawableCompat. occurred
Throwing that error in Google, I get a few links, most notably, this StackOverflow post where most answers refer to the native Android SDK and include Gradle file modifications, but I'm not sure. I can't see any of the Gradle stuff from my VS project so I'm not sure I should edit them.
What should I do to fix this issue, is modifying the Gradle config the right answer?