Dmytro Zaitsev
Dmytro Zaitsev
Hi @raniejade have you had a chance to look at this?
@raniejade I have. For IDEA CE it at least installs. For AS I get the following message: ``` Plugin 'Spek Framework' (version '2.0.19-alpha.0.2+04a479e-SNAPSHOT-Studio4.2') is not compatible with the current version...
Hello @devtechvalens! Thanks! You can easily generate VIPER classes using RxViper gradle plugin. Sorry, I'm still working on readme (#21). You need to: * add the plugin to your classpath...
Hi @vikrams061 your question relates to #53 The work is in progress. For now, you can check out the branch [ide_template](https://github.com/RxViper/RxViper/tree/ide_template/android-ide-template), fix sh scripts with the exact name of your...
@obiwancenobi, it's in my pipeline too. I've opened #27 for this purpose. Thanks!
Thanks, @SemenovAlexander! For security reasons, I do not plan to add such functionality to the library in near future, but I will leave this question open for those who might...
@Aleks-Z, I'm not sure I understand your question. Could you please rephrase it and give more details?
@Aleks-Z, да.
@Aleks-Z, Тело метода `getCheeses()` не выполняет никакой фоновой работы. Метод вызывается на UI-потоке, возращает `Observable`, на который уже оформляется подписка на указанном даггером шедуллере, а этот самый `Observable` уже в...
Kotlinx supports `@SerialName` for enums. No need to generate custom serializers anymore. It can be just ``` @Serializable enum class MessageFunction(val value: String) { @SerialName("AUTP") Autp("AUTP"), @SerialName("AUTQ") Autq("AUTQ") } ```