I am migrating a legacy Xamarin app to .NET MAUI
This app has a class that derives from ViewRenderer<HybridWebView,Android.Webkit.WebView>
VS presents an error : “The type name ‘Webkit’ does not exist in ‘Android'”
Reading articles, I have tried adding the XamarinX.Webkit NuGet package to the project. But I now get an error that the type or namespace ‘AndroidX’ could not be found. Are you missing an assembly reference?
In the past, adding the NuGet package seemed to make it referenceable. I can not find any other way to add a reference to AndroidX.
What am I missing? How do I reference AndroidX.Webkit after I have added the NuGet package it to the project?