I'm developing a Xamarin.Forms application which manages some assets in the shared project by using the embedded images feature. Now I have platform specific renderers which also need to access these images.
On iOS I can simply use
UIImage.FromResource(typeof(CustomMap).Assembly, "my_graphic");
to load an embedded image and use it in an UIImageView or similar. How can the same be accomplished in Android specific code?