As a user of the library, I can't write something ...
# kapt
v
As a user of the library, I can't write something like the code bellow (because Message.CREATOR will appear only after bytecode transformation phase):
Copy code
data class Message(
	val message: String,
	val timestamp: Long
) : AutoParcelable

…

Message.CREATOR.createFromParcel(...)
I'm not sure if there is a valid use case when I really to do so as an end user, I just thought it would be nice to at least have a replacement like
AutoParcelable.creator<Message>().createFromParcel(...)
for this kind of situations.