Java – Warning : Unclosed files for the types ‘[io.realm.OrderListRealmProxy]’ ; these types will not undergo annotation processing

Warning : Unclosed files for the types ‘[io.realm.OrderListRealmProxy]’ ; these types will not undergo annotation processing… here is a solution to the problem.

Warning : Unclosed files for the types ‘[io.realm.OrderListRealmProxy]’ ; these types will not undergo annotation processing

When compiling my Android code, the compiler displays the following warning:

Warning: "[io.realm.OrderListRealmProxy]" type unclosed file; These types are not annotated"

What’s wrong with my Realm object class?

Solution

This is because you are using a List<> not a RealmList<> in an object that you extend RealmObject

Related Problems and Solutions