☠🇷
/Users/rustam/AndroidStudioProjects/Room/app/build/tmp/kapt3/stubs/debug/com/nauka/room/EmployeeWithAddress.java:12: error: Fields annotated with @Relation must be a List or Set.
private io.reactivex.Flowable<java.util.List<com.nauka.room.Address>> getEmployeeWithAddress;
^/Users/rustam/AndroidStudioProjects/Room/app/build/tmp/kapt3/stubs/debug/com/nauka/room/EmployeeWithAddress.java:6: error: Entities and Pojos must have a usable public constructor. You can have an empty constructor or a constructor whose parameters match the fields (by name and type).
public final class EmployeeWithAddress {
^
Tried the following constructors but they failed to match:
EmployeeWithAddress(com.nauka.room.Employee,io.reactivex.Flowable<java.util.List<com.nauka.room.Address>>) -> [param:employee -> matched field:employee, param:getEmployeeWithAddress -> matched field:unmatched]/Users/rustam/AndroidStudioProjects/Room/app/build/tmp/kapt3/stubs/debug/com/nauka/room/EmployeeWithAddress.java:9: error: Cannot find setter for field.
private final com.nauka.room.Employee employee = null;
^[WARN] Incremental annotation processing requested, but support is disabled because the following processors are not incremental: androidx.room.RoomProcessor (NON_INCREMENTAL).