I am wondering if Shared Preference is a clean way to do what I am trying to accomplish. I am building an application where I need to have the ability to allow a 3rd party to pre-setup the application on the phone prior a user using it. I figured one way of doing this would be for the 3rd party to supply a Shared Preference XML file and for the application to attempt to read it at start up. If there is no custom file provided the application will start in default conditions.
I understand that this can be done using a regular file as well and I could just read and parse through a file, I am just wondering if Shared Preference is the clean way of doing this.
I am still somewhat new to Android Development so I also welcome better ideas of accomplishing this.
Thank you