I'm trying to do an image button on my Xamarin Forms application (shared project configuration).
My XAML is like this :
<Button x:Name="btn_params" Image="app_params.png" Grid.Row="2" Grid.Column="0" Command="{Binding OpenParamsCommand}" HorizontalOptions="StartAndExpand"></Button>
Because I used shared project configuration, it seems like I cannot have my image within my shared project, so I moved it in the appropriate folder. I'm currently only testing on Android.
I put it in Resources/Drawable on my Android
This image is marked as compile as AndroidResource, just like Xamarin says in its documentation
When I open this page, I have an NullReferenceException. I know this is this image, because if I remove the Image param, no errors are throwns...
Any idea of what happens because I have no debug infos other than this exception.

