Daniel-Donev

Results 27 comments of Daniel-Donev

@mk-5, just wondering did you get the email?

@mk-5, we have resended the e-mail from another e-mail account - Magic box. If it`s not in you inbox please check the spam folder.

Hi I have the same problem I get from Firebase list of my game levels and if have some fields in Level.class different from String type return null pointer in...

``` public class Level { public int id; public String type; public Level(){} public Level(int id, String type){ this.id = id; this.type = type; } } Map LevelArray = new...

Thanks for the fast response! I try to change int to Integer but the problem is still there. They are recorded to the Firebase correct, but after deserialization my Level...

Hi sorry for delay response. LevelArray is HashMap: `HashMap LevelArray = new HashMap();` save it in Firebase with (all fine in save) ``` GdxFIRDatabase.inst() .inReference("system/LevelDB") .setValue(LevelArray); ``` If I have...

This is a full example of my code: ``` public class Level { public Integer id; public Integer type; public Integer depend_id; public Level(Integer id, Integer type, Integer depend_id){ this.id...