Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Last active October 15, 2018 13:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icebeam7/093d43cbb8b784d4cfd990b1c3321426 to your computer and use it in GitHub Desktop.
Save icebeam7/093d43cbb8b784d4cfd990b1c3321426 to your computer and use it in GitHub Desktop.
XamarinWhatsApp: App.xaml.cs
using Twilio;
using Xamarin.Forms;
using XamarinWhatsApp.Helpers;
namespace XamarinWhatsApp
{
public partial class App : Application
{
public App ()
{
InitializeComponent();
TwilioClient.Init(Constantes.TwilioAccountSID, Constantes.TwilioAuthToken);
MainPage = new XamarinWhatsApp.Paginas.PaginaMensaje();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment