Alex Trotsenko

Results 23 issues of Alex Trotsenko

It's more a question/feedback to @ypresto similar to https://github.com/mockk/mockk/issues/374 for MockK. Me as many other devs are happy to have android-transcoder project, thank you @ypresto for creating and taking care...

@ypresto can you please check https://github.com/ypresto/android-transcoder/pull/32 ? Example: video without audio is created by Android Studio recording and can't be used with this lib.

I am using "native" fragments instead of `android.support.v4.app.Fragment` and target `4.1` only. That's why I only have ``` .Groovy compile 'com.android.support:appcompat-v7:21.0.+' compile 'com.android.support:support-v13:21.0.+' compile 'com.viewpagerindicator:library:2.4.1@aar' ``` When I just add...

Have you considered using [JMH](https://openjdk.java.net/projects/code-tools/jmh/)? Normally it's advised for testing performance of Jvm code. If you need _instrumented_ Android test - [androidx.benchmark](https://developer.android.com/jetpack/androidx/releases/benchmark) is an option as well.

Hello, this January I was looking for gradle plugin to automate publishing apps to store. I found your and another plugin - https://github.com/Triple-T/gradle-play-publisher. I see, that you both actively developing...

in [FahManager](https://github.com/pro100svitlo/FingerprintAuthHelper/blob/master/fingerprintauthhelper/src/main/kotlin/com/pro100svitlo/fingerprintAuthHelper/FahManager.kt#L45) : ``` private var fingerprintManager: FingerprintManager = c.getSystemService(FingerprintManager::class.java) ```` Now `c.getSystemService(FingerprintManager::class.java)` is annotated as `Nullable` thus could return `null` and cause NPE. SDK sources: ``` public final @Nullable...

When building [multi-kotlin-project](https://github.com/gradle/kotlin-dsl-samples/tree/master/samples/multi-kotlin-project) with latest Gradle 6.5 it shows following warning: ``` > Configure project : The archives configuration has been deprecated for dependency declaration. This will fail with an...

I know, that there are issues like following: https://github.com/android10/frodo/issues/38 https://github.com/android10/frodo/issues/33 Issue: after looking in the `Readme` it's not that clear, that it's not compatible with RxJava2 _(which is mostly used...

Javadoc for usePrivateFiles params in [Builder.useSerializerInDisk() ](https://github.com/vincentbrison/dualcache/blob/v3.1.1/dualcache-library/src/main/java/com/vincentbrison/openlibraries/android/dualcache/Builder.java#L156) says: _"`true` if you want to use {@link Context#MODE_PRIVATE} with the default disk cache folder."_ But, as far as I see, both folder...

If app shows image once per start (e.g. background loading image on start-up), it could be nice to have ability to skip caching this image in memory cache. Specially it...