You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lets say I have structure like below in multi module project
JVM external library A {
class City()
}
Android Module B {
@ParcelClass(value = City, converter=BlahConverter::class)
data class Professor(val city: CIty)
}
Android Module C {
@ParcelClass(value = City, converter=BlahConverter::class)
data class Professor(val city: CIty)
}
Now when I assemble this, D8 will complain that program type already present for class City$$Parcelable how do i make this work?
The text was updated successfully, but these errors were encountered:
Lets say I have structure like below in multi module project
Now when I assemble this, D8 will complain that program type already present for class
City$$Parcelable
how do i make this work?The text was updated successfully, but these errors were encountered: