I have a custom map renderer where I want to add custom pin. I have the pin's image file added in Resources/drawable. But when I specifically used Android code to locate the file, I found that it didn't exist. The method I called is something like this:
BitmapDescriptorFactory.FromResource(Resource.Drawable.CustomPin);
I know that in native Android, the images will have an integer identification, so I think that CustomPin does not have its integer identification generated and that is why it cannot be found. If this is the case, what can I do to have the image files I put in Resources/drawable to have their integer ids generated?

