I am developing an android application where I need to pass some records to .xls or .xlsx file. I did everything to pass values from my java class to excel sheet in android. But when I run the application I am getting this error
/test.xlsx: open failed: EROFS (Read-only file system)
I even gave permission in manifest file
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
Can you help me how to resolve this problem.