Fixed
Status Update
Comments
da...@google.com <da...@google.com> #2
I created a thread on the android-developers forum related to this bug:
http://groups.google.com/group/android-
developers/browse_thread/thread/6caa57135927e242/86d4d895e88a5ebb?
lnk=gst&q=custom+account#86d4d895e88a5ebb
developers/browse_thread/thread/6caa57135927e242/86d4d895e88a5ebb?
lnk=gst&q=custom+account#86d4d895e88a5ebb
ap...@google.com <ap...@google.com> #3
My personal theory is that Google broke this part of the API intentionally to keep
the lock-in on sync functionality they've enjoyed since Android 1.0.....
the lock-in on sync functionality they've enjoyed since Android 1.0.....
Description
Version used: 2.1.0
Devices/Android versions reproduced on: any device/version
When I define UUID as ids for my POJOs, and try to use @Relation, as result relation list is always empty.
Here is example:
object RoomTypeConverters {
@TypeConverter
@JvmStatic
fun uuidToData(uuid: UUID?): ByteArray = ...
@TypeConverter
@JvmStatic
fun dataToUUID(data: ByteArray?): UUID = ...
}
@Entity
data class Pet(
@ PrimaryKey
val uuid: UUID,
val userUuid: UUID,
val name: String
// other fields
)
data class UserNameAndAllPets(
val uuid: UUID,
val name: String,
@Relation(parentColumn = "uuid", entityColumn = "userUuid")
lateinit var pets: List<Pet>
)
@Dao
interface UserPetDao {
@Query("SELECT id, name from User")
fun loadUserAndPets(): List<UserNameAndAllPets>
}