In my project I've a button that starts an activity. The function called by the button click is:
setPreferences: function showPreferencesFn () {
var architectSdkUrl = "architectsdk://setpreferences";
document.location = architectSdkUrl;
this.reloadPlaces();
},
In this way, I start an activity but it reloads the POIs after the creation of the activity. I need to call the function reloadedPlaces() after closing the activity. How can I fix my code?
Nicola Macchiarulo