Skip to content

Instantly share code, notes, and snippets.

@devjaime
Created April 20, 2019 23:15
Show Gist options
  • Select an option

  • Save devjaime/33946c2bc091dd18c47d92a4786f8fa1 to your computer and use it in GitHub Desktop.

Select an option

Save devjaime/33946c2bc091dd18c47d92a4786f8fa1 to your computer and use it in GitHub Desktop.
permisos
//assamby
[assembly: UsesPermission(Android.Manifest.Permission.AccessCoarseLocation)]
[assembly: UsesPermission(Android.Manifest.Permission.AccessFineLocation)]
[assembly: UsesFeature("android.hardware.location", Required = false)]
[assembly: UsesFeature("android.hardware.location.gps", Required = false)]
[assembly: UsesFeature("android.hardware.location.network", Required = false)]
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-feature android:name="android.hardware.location" android:required="false" />
<uses-feature android:name="android.hardware.location.gps" android:required="false" />
<uses-feature android:name="android.hardware.location.network" android:required="false" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment