24 строки
871 B
C#
24 строки
871 B
C#
using System.Reflection;
|
|
using System.Runtime.InteropServices;
|
|
using Android;
|
|
using Android.App;
|
|
using Xamarin.Forms;
|
|
using Xamarin.Forms.Internals;
|
|
using Xamarin.Forms.Maps;
|
|
using Xamarin.Forms.Maps.Android;
|
|
// General Information about an assembly is controlled through the following
|
|
// set of attributes. Change these attribute values to modify the information
|
|
// associated with an assembly.
|
|
|
|
[assembly: AssemblyTitle("Xamarin.Forms.Maps.Android")]
|
|
[assembly: AssemblyDescription("")]
|
|
[assembly: AssemblyConfiguration("")]
|
|
[assembly: AssemblyCulture("")]
|
|
[assembly: ComVisible(false)]
|
|
|
|
// Add some common permissions, these can be removed if not needed
|
|
|
|
[assembly: UsesPermission(Manifest.Permission.Internet)]
|
|
[assembly: UsesPermission(Manifest.Permission.WriteExternalStorage)]
|
|
[assembly: ExportRenderer(typeof (Map), typeof (MapRenderer))]
|
|
[assembly: Preserve] |