I am creating a new XF project using 4.0.4.4 XF. I can not find App.AppName anywhere. I am trying to follow https://developer.xamarin.com/guides/xamarin-forms/web-services/authentication/oauth/ where it is specifically mentioned in the docs.
If I create a public property in PCL / App.cs with AppName, it works fine. Is it correct?
Usage in the tutorial The following code example shows how the account object is stored securely on the iOS platform:
AccountStore.Create ().Save (e.Account, App.AppName);
The following code example shows how the account object is stored securely on the Android platform:
AccountStore.Create (Context).Save (e.Account, App.AppName);
source share