Forum Discussion
Rajesh Aravapalli
Jan 31, 2022Copper Contributor
.NET MAUI AppLinks
Xamarin.Forms documentation has information on how to setup app links. .NET MAUI works with single project for both iOS and Android. I didn't see documentation to setup AppLinks/UniversalLinks i...
- Jan 31, 2022
This would work the same pretty much as with Xamarin.Forms as you still would update code in your AppDelegate and MainActivity (they are in the platform folder). The main difference is that you don't need a separate nuget package, it is built in:
JamesMontemagno
Microsoft
Jan 31, 2022This would work the same pretty much as with Xamarin.Forms as you still would update code in your AppDelegate and MainActivity (they are in the platform folder). The main difference is that you don't need a separate nuget package, it is built in:
Tobination
Dec 20, 2022Copper Contributor
How do I update my AppDelegate and what do I have to add? Sorry for the question. I know how to do it in android with IntentFilter but not for iOS.