Error saving data with pointer from a mobile App but works in Appery / browser mode
Hi
Recently I introduced pointers into my DB and started encountering a strange problem.
I'm able to save records with pointers while I work on Appery and even using the Appery tester App.
However when I create an APK and run on Android it gives me an error.
This is my code to store a pointer value
var id = localStorage.getItem("udid");
return {"collName" : "userdetails", "_id" : id};
Not sure why this is happening.