-
Notifications
You must be signed in to change notification settings - Fork 110
Description
I have been using the library for almost 2 years. Previously was able to open csv file from the app into sheets. few days ago found a issue where its showing in the UI of APP that "Google Sheets was unable to open your spreadsheet.". But if I chose Microsoft 365 Copilot to show the csv file then it can be opened with it.
previously inside my AndroidManifest.xml i had the following code
<queries> <intent> <action android:name="android.intent.action.VIEW"/> <data android:mimeType="*/*"/> </intent> </queries>
after going through the issues here and other ways found that the following code might help
<queries> <intent> <action android:name="android.intent.action.VIEW"/> <data android:mimeType="text/csv"/> </intent> </queries>
but still its showing the same issue. for more information I have allowed the permission for external read and write
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
