Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

While compiling my Android code, the compiler displayed the following warning:

warning: Unclosed files for the types '[io.realm.OrderListRealmProxy]'; these types will not undergo annotation processing"

What is wrong with my Realm object class?

like image 853
Mohamed Elnady Avatar asked Dec 19 '22 00:12

Mohamed Elnady


1 Answers

This is because you're using List<> instead of RealmList<> in an object you've extended RealmObject

like image 55
Johnyoat Avatar answered Dec 29 '22 11:12

Johnyoat