Results 9 issues of Michał Z.

Could you add support for secondaryProgress like Android's ProgressBar class does? Sample use would be start streaming music and showind song progress and also buffering progress (using setSecondaryProgress). Sample for...

enhancement

Leak Canary deobfuscation plugin doesn't work with app bundles. The mapping file is not being copied into the final .aab file. It sometimes works but most of the time it...

type: bug
status: help wanted

Currently deobfuscation plugin looks for Proguard/R8 tasks by name and makes itself dependent on those tasks. It copies mapping file after Proguard/R8 task is finished. Android Gradle Plugin 4.x introduced...

type: enhancement

Since R8 started to parse Kotlin metadata annotations to support Kotlin language constructs, mapping files got large (even a couple dozen megabytes). The idea is to zip the mapping file...

type: enhancement

## Proposed Changes This change adds support for large SQLite queries. Large queries are queries with more than 999 host parameters. Prior to this change, if someone created a query...

Currently Cockpit doesn't support Gradle Task Caching which causes that build takes more time. I suggest to add support for task caching: https://docs.gradle.org/current/userguide/build_cache.html?_ga=2.219831121.973550216.1580802978-1949218979.1568871414#task_output_caching

**Description:** It seems that in some cases filtering is incorrectly applied to `AutocompleteTextView` after rotating the device which causes that all options except for the selected one disappear from Dropdown...

bug
Widget: TextField

I'm looking for a license for Google Nearby APIs for iOS. I found one for android in the library's `.pom` file but I can't find anything for iOS.

Consider this example: ``` fun test(lineNumber: Int = __LINE__) { println("$lineNumber") } test() test() ``` It prints the same value twice. This means that it's impossible to get a call...