Alex Vasilkov
Alex Vasilkov
Please check issue #24 as it looks like a duplicate. In short, try to use `origin/master` instead of just `master`. I'll update the docs meanwhile.
Sorry, the plugin does not support Kotlin DSL at the moment, it should be explcitly mentioned in readme, I'll fix this. There are no plans for Kotlin support yet because...
Stracktrace you posted is caused (most probably) by the Groovy trick to handle unknown methods with special `missingMethod` method from [EmptyExtenstion.groovy](https://github.com/alexvasilkov/GradleGitDependenciesPlugin/blob/master/src/main/groovy/com/alexvasilkov/gradle/git/EmptyExtension.groovy). But I think the trickiest part will be manual...
Yeah, good point, that should work if you are fine with keeping your `settings.gradle` in Groovy.
Thanks bot, but I think there is enough info :) Regarding `https://apps.apple.com/account/subscriptions` link, it seems it does not make sense on Android either as it opens Apple Music website with...
Thanks for the swift reply! Can you maybe suggest a temporary workaround for the issue?
Thanks for the workaround details. The later link opens to "Tell us where you are" page, which is not immediatelly obvious for the users I think. Once providing my location...
I can confirm that PREFER_RGB_565 is ignored for me as well, I'm using jpeg images which have no alpha. I beleive the reason why RGB_565 is ignored is because we...
@basti-shi031 I doubt you can use ~ARGB_8888~ RGB_565 with circle-croped images because they require alpha channel. If you'll use RGB_565 then you'll have to fill the background with solid color....
The old way to enable seamless scrolling with ViewPager was more like a hack. A better approach would be to use [`NestedScrollingChild`](https://developer.android.com/reference/androidx/core/view/NestedScrollingChild) / [`NestedScrollingParent`](https://developer.android.com/reference/androidx/core/view/NestedScrollingParent) mechanizm, but it's a rather complicated...