db = await Db.create("mongodb://10.0.2.2:27017/bestchat");
I have mongoDB on my pc. if I try connect to mongo on emulator it works fine.
db = await Db.create("mongodb://192.168.1.33:27017/bestchat");
But on real device I use wifi network local ip like 192.168.1.33 and it not work. What the problem?