My app let the user to select from a list of various apps instaled in the device, if the user selecct one or more options each selection its saved in a ArrayList as the name of the app, example:
ArrayList<String> appSelected = new ArrayList<>();
appSelected.add("name_of_the_app");
Then the array is used for another purposes.
My question is: its posible to save the array? In the way that the user does not need to re-select the apps again when the application starts, like user preferences.