Volodymyr Chernyshov
Volodymyr Chernyshov
Hi, I need to preload a lot of images with different priorities. I'm doing it like this: ``` model.images.map { item -> val target = GlideApp.with(contextProvider.get()) .load(imageMapper.map(model.settings, item.image)) .priority(item.priority.toGlidePriority()) .diskCacheStrategy(DiskCacheStrategy.AUTOMATIC)...
I use moko-resources in the project and want to use colors in the storyboard that will generate a plugin. I added a file in xcode through ‘Add files’ but when...
I fix explicit dimension issue
When set height of SlidingLayer wrap_content it takes all height of parent container. I guess the SlidingLayer must measure all children and then set dimension to itself.
Hi, getting the error when running Danger Kotlin on TeamCity CI: `sh: 1: kotlinc: not found` But kotlinc is installed at: `/usr/local/kotlinc/bin/kotlinc` Do you happen to know how to solve...
I'm getting this error: ``` java.lang.NullPointerException at systems.danger.kotlin.models.danger.DangerDSL.getBitBucketServer(DangerDSL.kt:27) at Dangerfile_df.(Dangerfile.df.kts:9) ``` This is my danger file: ``` @file:Repository("https://repo.maven.apache.org") @file:DependsOn("org.apache.commons:commons-text:1.6") import org.apache.commons.text.WordUtils import systems.danger.kotlin.* import systems.danger.kotlin.models.danger.DangerDSL danger(args) { if (bitBucketServer.pullRequest.title.contains("WIP", false))...
Hi, I have faced with `java.lang.IllegalStateException: found errors: [found unsupported ast node ... in typeProjection!` when was parsing Kotlin file that contains function type at generic type: `List Boolean>`. According...