エラーを生成する次のコードがあります。Error:Parceler: Unable to find read/write generator for type io.realm.Realm for io.realm.RealmObject.realm
なくても問題なく動作していましたがextends RealmObject
、Realmを使用してデータベースに簡単に配置したいと考えています。RealmObject フィールドを除外して、@Parcel の基本的な pojo フィールドのみを使用する方法はありますか?
@Parcel
public class Feed extends RealmObject{
int id;
public String text;
public String time_created;
String time_modified;
int comments_count;
int likes_count;
String feed_type;
int obj_id;
String image;
String user_name;
String user_earthmile_points;
boolean liked;
boolean commented;
boolean is_private;
String url;
int feed_creator_id;
}