schimanski Well-Known Member Licensed User Longtime User Dec 27, 2012 #1 When I want to send a file, Android shows me a list of all apps, which are able to send the file. What do I have to do, that my own app is also shown in this list? Tanks for help... Gesendet von meinem XT910
When I want to send a file, Android shows me a list of all apps, which are able to send the file. What do I have to do, that my own app is also shown in this list? Tanks for help... Gesendet von meinem XT910
thedesolatesoul Expert Licensed User Longtime User Dec 27, 2012 #2 Add something like this to your manifest: B4X: <intent-filter> <action android:name="android.intent.action.SEND" /> <category android:name="android.intent.category.DEFAULT" /> <data android:mimeType="image/*" /> </intent-filter> Upvote 0
Add something like this to your manifest: B4X: <intent-filter> <action android:name="android.intent.action.SEND" /> <category android:name="android.intent.category.DEFAULT" /> <data android:mimeType="image/*" /> </intent-filter>