Hi All,
I am trying to create an Android application that would use a configuration file (plain text) when loading.
When testing locally (with an emulator), I place my config file in the src/ folder (ecplise) and I see it is copied and used from the bin/ folder upon project build.
My questions are:
1) Where do I need to place this file when testing on a device ? From what I understand I need the *.apk file and the config file to be both present on the device during run time.
2) If I am using eclipse to install the *.apk file can I somehow specify the config file as a dependant file and force eclipse to copy it as well ? If not do I need to manually copy the *.apk & config files to the device ?
NOTE: I am using getResourceAsStream
to load the file.
Thanks,
RM