We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Try a class like
class BugReportRepositoryBuilder(val apiKey: String, val projectId: String, val properties: Map<String, String>)
and generate file dont compile:
class BugReportRepositoryBuilder(val apiKey: String, val projectId: String, val properties: Map<String, String>) : BugReportRepository.Builder, Parcelable { companion object { @JvmField val CREATOR: Parcelable.Creator<BugReportRepositoryBuilder> = object : Parcelable.Creator<BugReportRepositoryBuilder> { override fun createFromParcel(source: Parcel): BugReportRepositoryBuilder = BugReportRepositoryBuilder(source) override fun newArray(size: Int): Array<BugReportRepositoryBuilder?> = arrayOfNulls(size) } } constructor(source: Parcel) : this(source.readString(), source.readString(), source.readMap<String, String>()) override fun describeContents() = 0 override fun writeToParcel(dest: Parcel?, flags: Int) { dest?.writeString(apiKey) dest?.writeString(projectId) dest?.writeMap<String, String>(properties) } }
The text was updated successfully, but these errors were encountered:
Facing a similar problem here. Did you manage to solve this, @caipivara?
Thanks in advance for any inputs.
Sorry, something went wrong.
No branches or pull requests
Try a class like
and generate file dont compile:
The text was updated successfully, but these errors were encountered: