What folder should I put in excel files (*.xls) to android project? I want them to be in the apk files, and how to open them later? I tried to put them in assets folder, and open like that:
try {
in = getAssets().open("schedule.xml");
} catch (IOException e) {
e.printStackTrace();
return "can't open the file";
}
but it didn't work.