Jhardy
Jhardy

Reputation: 89

Setting up Twilio Push notifications on an Android app

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:

https://www.twilio.com/docs/notify/configure-android-push-notifications#step-3-set-up-your-projects-dependencies

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

Answers (1)

Brandon Minnick
Brandon Minnick

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

Related Questions