I'm trying out the Realm Mobile Platform for determining if it will be suitable for a upcoming project.
I'm using the server admin user to login into my sample app, and by providing different paths in the SyncConfiguration
object I'm able to create different Realms, locally and in the Object Server.
String realmUrl = String.format("realm://%1$s:%2$s/my_realm_name", OBJECT_SERVER_IP, BASE_PORT);
SyncConfiguration syncConfiguration = new SyncConfiguration.Builder(SyncUser.currentUser(), realmUrl).build();
Realm realm = Realm.getInstance(syncConfiguration);
The problem is that when I access to the web dashboard, it seems that the administrator doesn't own the Realms he created with the client app.
So my question is: what's the best way for a user to create N owned Realms which may be shared to other users by managing access permissions?