summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Android/IDeviceInfoProvider.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.Android/IDeviceInfoProvider.cs')
-rw-r--r--Xamarin.Forms.Platform.Android/IDeviceInfoProvider.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.Android/IDeviceInfoProvider.cs b/Xamarin.Forms.Platform.Android/IDeviceInfoProvider.cs
new file mode 100644
index 00000000..c9810b16
--- /dev/null
+++ b/Xamarin.Forms.Platform.Android/IDeviceInfoProvider.cs
@@ -0,0 +1,12 @@
+using System;
+using Android.Content.Res;
+
+namespace Xamarin.Forms.Platform.Android
+{
+ public interface IDeviceInfoProvider
+ {
+ Resources Resources { get; }
+
+ event EventHandler ConfigurationChanged;
+ }
+} \ No newline at end of file