How to remove my Android App from share menu list

454 views Asked by At

I would like to know how can I remove my app from share menu list of other apps except for Google Maps. I added to my Manifest an Activity with an intent filter:

<intent-filter android:autoVerify="true">
  <action android:name="android.intent.action.SEND" />
  <category android:name="android.intent.category.DEFAULT" />
  <data android:mimeType="text/plain" />
</intent-filter>

This configuration causes my app to be present in all the share menu lists of other apps. Is there any way to be present only in Google Maps share menu list?

Thanks

1

There are 1 answers

3
Ibrahem Hamdy On

remove line

 <data android:mimeType="text/plain" />

Edit

The line above will not show your application in all other applications

Take a look here

Opening an Android App from another Android App using Intents