Kirill Rakhman

Results 68 comments of Kirill Rakhman

In Kotlin, `Foo!` means platform type, i.e. the compiler doesn't known whether it's nullable or not. Kotlin has the `!!` operator that asserts that a value is not null. Maybe...

If something made me use this, it would be this. To reduce complexity, you could mandate that resources with dimensions never have qualifiers so that you can implement it by...

Would appreciate an option for this.

There is AnimatorListenerAdapter which you can create an anonymous subclass of. You only need to override onAnimationEnd().

Since retrolambda is now using the transform api, I suspect it will work just fine. However I'm unable to test, because the Kotlin plugin isn't compatible with 2.0.0-alpha5.

Would it be possible to only pipe those classes that need conversion through retrolambda and jill and let the rest be taken care of by jack?

And on a completely different note, would it be possible to hook into jack directly and somehow allow direct translation of Java 8 source code to dex? @orfjackal, any opinions?

@orfjackal Let us know, if you investigate that possibility or if you need some help with testing.

@dommy1985 How do I check if 401 is returned? GoogleMusicApi.login() seems to always return true, if the token isn't empty.

Thanks for responding. I modified the login() method to look like this: ``` public static final boolean login(final Context context, final String authToken) { if (!TextUtils.isEmpty(authToken)) { final SimpleForm form...