0

I have read several questions and answers in the forum, without getting a reason for why my manifest registered Activity is not being executed (and previously was)

Not duplicated of this or this or this or this

I have ensured that the Manifest is correctly spelled.

I have rebuilt the project

I have invalidated the Android Studio cache

I have altered the scheme with *, or file, or content and others, without any difference in behavior (clicking in a File, in a File Browser showing as no application options, when it used to behave correctly in the same device, and same application)

This was working, and the Activity was being requested (when a File was clicked) however, it has then stopped working, and I am unable to understand why.

Manifest Activity:

<activity android:name=".activities.FileLoaderActivity">
        <intent-filter>
            <action android:name="android.intent.action.VIEW" />
            <action android:name="android.intent.action.EDIT" />

            <category android:name="android.intent.category.DEFAULT" />

            <data android:mimeType="*/*" />
            <data android:scheme="file" />
            <data android:host="*" />
            <data android:pathPattern=".*\\.dvc" />
            <data android:pathPattern=".*\\.pfl" />
            <data android:pathPattern=".*\\.voc" />
            <data android:pathPattern=".*\\..*\\.dvc" />
            <data android:pathPattern=".*\\..*\\.pfl" />
            <data android:pathPattern=".*\\..*\\.voc" />
            <data android:pathPattern=".*\\..*\\..*\\.dvc" />
            <data android:pathPattern=".*\\..*\\..*\\.pfl" />
            <data android:pathPattern=".*\\..*\\..*\\.voc" />
            <data android:pathPattern=".*\\..*\\..*\\..*\\.dvc" />
            <data android:pathPattern=".*\\..*\\..*\\..*\\.pfl" />
            <data android:pathPattern=".*\\..*\\..*\\..*\\.voc" />
            <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.dvc" />
            <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.pfl" />
            <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.voc" />
        </intent-filter>
    </activity>
Phantômaxx
  • 36,442
  • 21
  • 78
  • 108
Bonatti
  • 2,732
  • 5
  • 23
  • 38

1 Answers1

0

The issue was an update, in the "File Browser" application, that altered android.intent.action.VIEW to com.sec.android.app.myfiles.PICK_DATA, thus rendering the concept of "View Intent" invalid.

This is for "Samsung" only. In other Devices, the system is behaving as expected

Bonatti
  • 2,732
  • 5
  • 23
  • 38