I create a new XF project using 4.0.4.4 XF. Nowhere can I find App.AppName. I'm trying to follow the tutorial at https://developer.xamarin.com/guides/xamarin-forms/web-services/authentication/oauth/ where it is definitely referenced in docs.
If I create a public property in PCL / App.cs with AppName it appears to work fine. Is this the right way?
Usage in the tutorial The following code example shows how an Account object is securely saved on the iOS platform:
AccountStore.Create ().Save (e.Account, App.AppName);
The following code example shows how an Account object is securely saved on the Android platform:
AccountStore.Create (Context).Save (e.Account, App.AppName);