adamped / WebViewJavascript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Needs to be

kenneymyers opened this issue · comments

This code produces errors

	element.RefreshCommand = new Command(() =>
		{
			Control?.Reload();
		});

		element.GoBackCommand = new Command(() =>
		{
			var ctrl = Control;
			if (ctrl == null)
				return;

			if (ctrl.CanGoBack())
				ctrl.GoBack();
		});

I was able to get around this through rewriting this part so iOS works now but Android does not build. Did you build this against API26? I am getting stuck at: /Users/Desktop/WebViewJavascript-master/WebViewJavascript/WebViewJavascript.Android/obj/Debug/library_projects/Xamarin.Android.Support.v7.AppCompat/library_project_imports/res/values-v26/values-v26.xml(0,0): Error APT0000: Error: No resource found that matches the given name: attr 'android:keyboardNavigationCluster'. (APT0000) (WebViewJavascript.Android)