summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Android/AndroidAppIndexProvider.cs
blob: e9b85eec9f0d828e5da3d3e13c9d040f23ed1ee7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using Android.Content;
using System;
using System.Reflection;
using System.Linq;
using System.Globalization;

namespace Xamarin.Forms.Platform.Android
{
	public class AndroidAppIndexProvider : IAppIndexingProvider
	{
		public AndroidAppIndexProvider(Context context)
		{
			var assemblyAppLinks = GetAssemblyForAppLinks(AppLinksAssemblyName);

			if (assemblyAppLinks != null)
			{
				Type type = assemblyAppLinks.GetType($"{AppLinksAssemblyName}.{AppLinksClassName}");

				if (type != null)
				{
					var applink = Activator.CreateInstance(type, new object[] { context }, null);

					if (applink != null)
					{
						AppLinks = applink as IAppLinks;
					}
				}
			}
		}

		public IAppLinks AppLinks { get; }

		private Assembly GetAssemblyForAppLinks(string assemblyName)
		{
			return Device.GetAssemblies().FirstOrDefault(assembly => assembly.GetName().Name == assemblyName);
		}

		const string AppLinksAssemblyName = "Xamarin.Forms.Platform.Android.AppLinks";
		const string AppLinksClassName = "AndroidAppLinks";
	}
}