Hi,
I just want to open an attached XML with my app.
With gmail mail client it's ok:
But with the default Android email client, my Smile App does not appear:
Here is the manifest intent filter :
Any idea ?
I just want to open an attached XML with my app.
With gmail mail client it's ok:
But with the default Android email client, my Smile App does not appear:
Here is the manifest intent filter :
B4X:
AddActivityText(importxml,
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="application/xml" />
<data android:mimeType="text/xml" />
<data android:mimeType="text/html" />
<data android:mimeType="text/*" />
</intent-filter>)
Any idea ?