-
-
Save devjaime/33946c2bc091dd18c47d92a4786f8fa1 to your computer and use it in GitHub Desktop.
permisos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //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)] | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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