If you are developing a mobile application & you might want to store the data globally so that you can access from the different views.
Using PersistenceManager we can achieve this. We can use the PersistenceManager which stores the data by using key value.
Using PersistenceManager we can achieve this. We can use the PersistenceManager which stores the data by using key value.
var persistenceManager:PersistenceManager = new PersistenceManager();
persistenceManager.setProperty("dataURL","http://google.com");
persistenceManager.getProperty("dataURL");