I am trying to use the following manifest edited:
It changes the manifest and installs the app
But if imake a *.des1 file clicking it does not open the app but asks "Open as ...."
B4X:
'*****************************************************
'*** FILTER INTENTS BASED ON CLICKING A BROWSED FILE
'*****************************************************
'Handle intent from a file click simply based on file extensionAddActivityText(Main,
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="file" />
<data android:host="*" />
<data android:pathPattern=".*\\.des1" />
<data android:mimeType="*/*" />
</intent-filter>)
It changes the manifest and installs the app
But if imake a *.des1 file clicking it does not open the app but asks "Open as ...."
Last edited: