Zsolt Bertalan
Zsolt Bertalan
I had the same issue on TeamCity with the no-op library. It's building in Android Studio. I replaced compile with implementation, so it became: `releaseImplementation 'com.readystatesoftware.chuck:library-no-op:1.1.0'` but I don't think...
Using maxLines="2" doesn't work because in AutofitHelper.autofit() you call getAutofitTextSize only if maxLines==1. I deleted this requirement in my subclass and it works.
I see. For me the text was two words on a button, and the first word was too long, so it was chopped and the second part was added to...
I ran into this as well. Business requirement is to have a registration flow with sliding animation, and the second screen is date of birth. It has to have a...
That's because vector images are xml, not json. This library is for optimising Android vector images. You probably try to use it for something else.
I'm on a previous version of Espresso, but had the same issue. This works: ``` packagingOptions { resources.excludes.add("META-INF/LICENSE.md") resources.excludes.add("META-INF/LICENSE-notice.md") } ```