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
| <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.companyname.Geocodificacion"> | |
| <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="27" /> | |
| <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" /> | |
| <application android:label="Geocodificacion.Android"></application> | |
| </manifest> |
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
| using System.Reflection; | |
| using System.Runtime.CompilerServices; | |
| using System.Runtime.InteropServices; | |
| using Android.App; | |
| // 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("Geocodificacion.Android")] | |
| [assembly: AssemblyDescription("")] |
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
| <views:BasePage xmlns="http://xamarin.com/schemas/2014/forms" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
| xmlns:views="clr-namespace:Geolocalizacion.View" | |
| xmlns:viewmodels="clr-namespace:Geolocalizacion.ViewModel" | |
| x:Class="Geolocalizacion.View.GeolocationPage" | |
| Title="Geolocalización"> | |
| <views:BasePage.BindingContext> | |
| <viewmodels:GeolocationViewModel /> | |
| </views:BasePage.BindingContext> |
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
| namespace Geolocalizacion.View | |
| { | |
| public partial class GeolocationPage : BasePage | |
| { | |
| public GeolocationPage() | |
| { | |
| InitializeComponent(); | |
| } | |
| } | |
| } |
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
| using System; | |
| using System.Threading; | |
| using System.Windows.Input; | |
| using Xamarin.Essentials; | |
| using Xamarin.Forms; | |
| namespace Geolocalizacion.ViewModel | |
| { | |
| public class GeolocationViewModel : BaseViewModel | |
| { |
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
| {"lastUpload":"2021-07-19T02:00:30.621Z","extensionVersion":"v3.4.3"} |
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
| import discord | |
| from discord.ext import commands | |
| import datetime | |
| from urllib import parse, request | |
| import re | |
| bot = commands.Bot(command_prefix='>', description="This is a Helper Bot") | |
| @bot.command() |
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
| Text('Has presionado el botón tantas veces :' * 5) |