I am creating a Xamarin.Forms app in which I want to use the Dolby Android SDK. I have gotten this to work as an Android app by adding implementation "com.voxeet.sdk:sdk:3.4.1"
to my build.gradle
and adding maven { url "https://android-sdk.voxeet.com/release" }
to the repositories
array.
From what I've gathered from the docs and searching online I will need to create an Android Binding Library to make use of this library, Unfortunately I have not found a way to get this working so far with Gradle dependencies. There is an old plugin that potentially used to work but it hasn't been updated in over 4 years, I've tried using it but have had no luck with it.
I feel like my use-case should be quite common so I must be missing something obvious! What would be the best way to consume a Gradle dependency in Xamarin.Forms?