-
Notifications
You must be signed in to change notification settings - Fork 138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use separate buildType and productFlavors for determining the json locations #131
Use separate buildType and productFlavors for determining the json locations #131
Conversation
Anything I can do to get this PR merged? |
@ChristianBecker A lot of waiting apparently 🤔 |
@jkasnicki @caller9 @aaronj1335 Friendly ping. This "bug" makes the plugin unusable for me :( |
@caller9 Any chance you can eventually get this PR reviewed and merged? I still can't use the release version of this plugin 👎 |
Another team works on this plugin and they're taking a look. If you could update with the latest changes from |
@caller9 Thanks for forwarding this request 👍 I just rebased against latest |
This was merged in #149 |
@davidmotson Thank you! Do you plan to release a new version with this fix? |
it is now released in 4.3.6 |
why it is not closed then? |
I have a project with two dimensions. The brands are named in
lowerCamelCase
, so I may have an uppercase character in the name of the brand.Unfortunately, the current version of the Play Services Plugin does not work with those names, as we split the
variant.dirName
by uppercase characters to get all different flavors – which is not correct in my situation.I refactored the
GoogleServicesTask
to use the names of the existing fieldsbuildType
andproductFlavors
. Using this approach, we don't have to use regular expressions at all.