How Can I Build This Gradle Project (kotlinparcelize) From The Command Line (ubuntu 18.04, Fail: Wrong Plugin Option Format)?
I found this article: https://android.jlelse.eu/yet-another-awesome-kotlin-feature-parcelize-5439718ba220 - and I wanted to look at the code there, https://github.com/burakeregar/K
Solution 1:
Well, finally opened the project with Android Studio 4.0.1, and:
- Updated gradle in project to 6.1.1 (from the original 4.1)
- Updated to
ext.kotlin_version = '1.3.72'
from 1.2.0 - Used kotlin-stdlib-jdk7 instead of kotlin-stdlib-jre7 (because I got a deprecation message somewhere)
... and now I do not get the "Wrong plugin option format" anymore - but now I get "Class 'PersonModel' is not abstract and does not implement abstract member public abstract ..." - which I'll ask a new question about.
Post a Comment for "How Can I Build This Gradle Project (kotlinparcelize) From The Command Line (ubuntu 18.04, Fail: Wrong Plugin Option Format)?"