From e6d5186c8acbf37b877c7ca3c77a378352a3743d Mon Sep 17 00:00:00 2001 From: kingces95 Date: Tue, 7 Mar 2017 14:56:24 -0500 Subject: Remove InternalsVisibleTo from Core to XF.Platforms.* (#782) * Remove InternalsVisibleTo from Core to XF.Platforms.* * Changes per Jason's code review * Move LockableObservableListWrapper to internals namespace * Changes per Stephane's code review * update docs * Touch code to get CI to run tests * Rebase; Update documentation --- Xamarin.Forms.Platform.Android/NativeValueConverterService.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Xamarin.Forms.Platform.Android/NativeValueConverterService.cs') diff --git a/Xamarin.Forms.Platform.Android/NativeValueConverterService.cs b/Xamarin.Forms.Platform.Android/NativeValueConverterService.cs index ff6faa90..69cccd94 100644 --- a/Xamarin.Forms.Platform.Android/NativeValueConverterService.cs +++ b/Xamarin.Forms.Platform.Android/NativeValueConverterService.cs @@ -1,10 +1,11 @@ using System; +using Xamarin.Forms.Xaml.Internals; using AView = Android.Views.View; [assembly: Xamarin.Forms.Dependency(typeof(Xamarin.Forms.Platform.Android.NativeValueConverterService))] namespace Xamarin.Forms.Platform.Android { - class NativeValueConverterService : Xaml.INativeValueConverterService + class NativeValueConverterService : INativeValueConverterService { public bool ConvertTo(object value, Type toType, out object nativeValue) { -- cgit v1.2.3