У меня есть фильтр намерений для обработки файлов excel.xlsx, и он прекрасно работает в android 8, но когда я пробую его в android 7, он не работает, мой фильтр намерений таков:
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="*"
android:mimeType="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
android:scheme="file" />
</intent-filter>