I try to get to the resource string of the resx file all day. I try this way:
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="test.MainPage">
<StackLayout>
<Label Text="{x:Static res:AppResources.String1}"/>
</StackLayout>
</ContentPage>
I created an AppResources file in directly in the test.android project with a String1 resource and set in public. How can I get to this resource on xaml? I have tried various methods found on the internet and nothing works.