-
Notifications
You must be signed in to change notification settings - Fork 14
Description
Xamarin Forms documentation needs to be improved!! It is woefully out of date and inaccurate.
The documentation provides a link for a xamarin forms implementation but when clicking it one is taken to a xamarin native implementation.
Neither of theses are Xamarin Forms apps.
In the documentation for using Xamarin Forms we are told to have 2 classes that both inherit from "Application", one that implements IBranchSessionInterface and one that implements IBranchBUOSessionInterface. I have found that it is the iOS AppDelegate that has to implement IBranchSessionInterface and NOT the Forms "Application" class since the call to Init the service requires an instance of the IBranchSessionInterface passes as "this".
BranchIOS.Init("key_live_XxxXXXXX", options, this); <-- "this" is IBranchSessionInterface
The docs say "Change the C# project's profile to PCL 4.5 - Profile78". Xamarin Forms is beyond PLCs now that it is .NET standard compatible.
Can you fix the Xamarin Forms documentation to be correct and up to date?
Can we get a up to date Xamarin Forms sample project?