I am new to Android development. I have an XML file with data that the app will read. Where should I keep this XML file? Should it be stored within the \"value\" folder?<
You can put it in the res/raw folder. Then you will access it using:
getResources().openRawResource(resourceName)