Sergey C.
Sergey C.
@davidmotson PTAL, I think this would be a nice improvement.
I rebased, added AGP 3.5.0 to test matrix, fixed Travis build and made Gradle console output more readable on Travis.
I sent a PR a while ago to fix this https://github.com/google/play-services-plugins/pull/61
FYI Gradle 4.6 is out which supports JUnit Platform out of the box so we can now run JUnit 5 tests in Android projects without any 3rd party plugins. It'd...
Another workaround that doesn't require JDK 11: ```gradle android { testOptions { unitTests.all { useJUnitPlatform { // TODO: Remove when https://github.com/cashapp/paparazzi/issues/384 is fixed if (JavaVersion.current() >= JavaVersion.VERSION_13) { jvmArgs "-XX:+AllowRedefinitionToAddDeleteMethods"...
I'd like to share my solution that looks clean and seems to be working well: 1. Replaced all calls to `GlideApp` with my own wrapper so that I would have...
Updated the code in https://github.com/bumptech/glide/issues/1440#issuecomment-576486525 with a bugfix for some corner cases.
@thevery do you have `javaVersion JavaVersion.VERSION_1_7` in your retrolambda config by any chance? @tbsandee that's just Lint warnings, I checked the generated code and the calls to addSuppressed are actually...
@thevery gradle-retrolambda uses Transform API since 3.3.0 and doesn't modify the original class files produced by javac which in your case are located in `./app/build/intermediates/classes/prod/debug/`. Do you see `addSuppressed` calls...
Hm that's really odd. For me the original configuration from https://github.com/evant/android-retrolambda-lombok seems to be enough: ``` ``` I'm also using plugin 2.2.0 and minSdkVersion 15 like @thevery.