summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Android/IDeviceInfoProvider.cs
blob: c9810b16934421cdf561fe30fdf4f30f65220654 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using Android.Content.Res;

namespace Xamarin.Forms.Platform.Android
{
	public interface IDeviceInfoProvider
	{
		Resources Resources { get; }

		event EventHandler ConfigurationChanged;
	}
}