Can't create property RealmList<TranslatedString> by Realm Studio
See original GitHub issueHere my Realm object
public class LocalizedString extends RealmObject {
private RealmList<TranslatedString> translations = new RealmList<>();
public RealmList<TranslatedString> getTranslations() {
return translations;
}
}
I want to create this schema by Realm Studio So here screenshots:
But I get error:
Why I can’t create properties RealmList<TranslatedString> translations
?
Issue Analytics
- State:
- Created 6 years ago
- Comments:10 (6 by maintainers)
Top Results From Across the Web
Realm object list functions are undefined, even though object ...
Trying to push a new int into an int realm list. I can get the Realm object, I can print it and when...
Read more >Define a Realm Object Schema - Java SDK - MongoDB
To define a Realm object in your application, create a subclass of RealmObject or implement RealmModel. ... var favoriteColors : RealmList<String>? = null....
Read more >Realm Database in Real Life
You create an object of that class, and you instantiate the Realm database. In this case, it's a local instance. Data will be...
Read more >Show HN: Realm for Android | Hacker News
Given a list of `Object`, how do I make a `RealmList` of it? ... but I couldn't figure out how to translate the...
Read more >Untitled
Tagu botu ramesh, Dubai property development map, Matting and framing a picture, ... H-142-ps, Republiq club manila website, Legacy wow realmlist, Tammaar, ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Realm Studio has been updated to no longer show invalid combinations for the nullability flag. This should be part of the next release.
In that case,
RealmList<TranslatedString>
cannot contain null elements.