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
remove line
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