Valeriy O.
Valeriy O.
Yes, default precision is 3 decimals, and usually 1 is quite enough.
For the record, adding this line fixed it: ``` status: completed ``` Hopefully this helps someone.
> most people don't realize how little of OkHttp we are using Sounds fishy. If that's the case, just copy the "little" stuff that you're using and get rid of...
@MichaelRocks of course my problem was because my AAR now has a new dependency - and any app using it needs to add: ``` implementation("io.michaelrocks:paranoid-core:0.3.2") ``` Here is the thing...
BTW, if this helps, I ended up dropping `paranoid-core-0.3.2.jar` (downloaded from https://mvnrepository.com/artifact/io.michaelrocks/paranoid-core/0.3.2) into the `libs` folder in my AAR library project. That way, it's treated as a local dependency, so...
Has this ever worked? ``` import kotlinx.serialization.Serializable @Serializable sealed class Search( @SerialName("type") private var searchType: Int, @Transient open val table: String = "", ) @Serializable class QuerySearch( override val table:...
Inheritance doesn't seem to work at all... ``` import kotlinx.serialization.Serializable @Serializable open class Fruit( val name: String? = null ) @Serializable class Apricot( name: String ): Fruit(name) ``` ==> IllegalStateException:...
The need to loop over several `koinApp.modules` becomes necessary if some `single(createdAtStart = true)` objects when initialized, load more Koin modules. I'm using dynamic feature modules (https://developer.android.com/guide/playcore/feature-delivery), where a root-scoped...
Thanks @arnaudgiuliani I believe the fix in 3.x would be low-risk -- should I submit a PR?
`ContentScale.FillBounds` still doesn't work with 2.2.2 | Should look like this: | But it looks like this: | |----|----| |  |  | Original: 