gabrielhuff
gabrielhuff
The current bundle creation method (`bundleOf`) accepts an array of `Pair`. Although the implementation takes care of resolving the value type at runtime, the API is 'unsafe' at compile time...
This implements #265. Usage: ```kotlin class MyActivity : Activity { private val id by extra("id") private val timestamp by extra("timestamp") private val name by extra("name") { "Default Name" } }...
I think it would be nice to have something for accessing argument intent extras within an `Activity` implementation. I'm proposing two alternatives here (I'd personally go for the second one):...
### How to reproduce The following minimal `build.gradle`: ```groovy plugins { id 'org.jetbrains.kotlin.jvm' version '1.3.61' id "com.google.protobuf" version "0.8.12" id "com.github.marcoferrer.kroto-plus" version "0.6.1" id "idea" } krotoPlus { config {...