Pavel Sveda

Results 7 comments of Pavel Sveda

Me neither, thank you for the link to the discussion. So let's wait for its outcome...

Same here: ``` Failed to resolve :app:releaseUnitTestCompileClasspath org.gradle.api.artifacts.UnknownConfigurationException: Configuration with name 'releaseUnitTestCompileClasspathCopy' not found. at org.gradle.api.internal.artifacts.configurations.DefaultConfigurationContainer.createNotFoundException(DefaultConfigurationContainer.java:159) at org.gradle.api.internal.DefaultNamedDomainObjectCollection.getByName(DefaultNamedDomainObjectCollection.java:332) at org.gradle.api.internal.artifacts.configurations.DefaultConfigurationContainer.getByName(DefaultConfigurationContainer.java:149) at org.gradle.api.internal.artifacts.configurations.DefaultConfigurationContainer.getByName(DefaultConfigurationContainer.java:62) at org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyConstraintHandler.add(DefaultDependencyConstraintHandler.java:63) ``` It is a pretty standard...

I tried to gradually revert back to Gradle 5.2 / AGP 3.3 / Versions Plugin 0.18.0 but still seeing the errors.

Anyway, there is no need to ship `koin-android` dependency as Android AAR, it could be a simple JAR. We have many modules in our Android project that could be JVM...

Sorry, I was wrong. I have looked through the code in the `koin-android` module and its dependencies and unfortunately I have to admit that the current AAR format is necessary....

My idea is to have serialization support when observing certain value using `getXxxFlow()`. So next to `fun Settings.decodeValue(serializer, key, defaultValue: T, serializersModule): T` we would have `fun FlowSettings.getDecodedValueFlow(serializer, key, defaultValue:...

@cebbens Thank you very much for the note in docs! I've ended up with a configuration that keeps `infrastructure.CollectionFormats.kt` file as it is referenced from every Retrofit `Api` class: ```...