My intent picks .xls
while
fileintent.setType("application/vnd.ms-excel");
Picks .xlsx
while
fileintent.setType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
How to make both .xls
and .xlsx
selectable and readable? Appreciate help!