I am trying to access RealmList of model class in forEach
loop.
Attempt : 1
realmList.forEach(obj -> { System.out.println("value"+obj.getValue())});
Attempt : 2
realmList.forEach((ModelClass obj) -> { System.out.println("value"+obj.getValue())});
On both attempt i got error
java.lang.NoClassDefFoundError:activites.MainActivity$$Lambda$1
how do i resolve this error?