Gradle.Dependencies.Compile support for files

This:

[Require("Gradle.Dependencies.Compile","files('src/main/libs/YouTubeAndroidPlayerApi.jar')")]

Creates this build.gradle:

compile 'files('src/main/libs/YouTubeAndroidPlayerApi.jar')'

But I need:

compile files('src/main/libs/YouTubeAndroidPlayerApi.jar')

Hey Bjørn, and thanks for your report!

We already have an internal issue to improve our Gradle dependency support, and I’ve added your suggestion to it.

I understand that this is different from the other use cases:

[Require("Gradle.Dependencies.Compile","com.facebook.android:facebook-android-sdk:[4,5)")]

where you want the quotes. So as you say there needs to be a way to support both.