Reputation: 89
I have a cross platform app set up using Xamarin forms in Visual Studio 2017. I am wanting to integrate Twilio and their push notification service. I am in the process of setting the service up on Android first using this guide:
However i am stuck on step 3 as it asks to modify the 'project-level build' file. I can't see this anywhere, how do i access this file in Visual Studio 2017?
Thanks.
Upvotes: 1
Views: 326
Reputation: 15360
build.gradle
is specific to Android apps built in Java.
For a Xamarin.Forms app built in C#, you'll want to use the Xamarin.Firebase.Messaging
NuGet package: https://www.nuget.org/packages/Xamarin.Firebase.Messaging/
Upvotes: 1