How to make my Android app appear in the share list of another specific app
<action android:name="android.intent.action.SEND" /> <category android:name="android.intent.category.DEFAULT" /> <data android:mimeType="text/plain" /> this is in my manifest file this will make my app appear on the share list of all apps but I want my app to appear in the share list of another specific app and I don't own the other app DanO In order to do this, you need to know the Intent that the application is creating and create an IntentFilter that will add your application to the specific list. Receiving an Implicit Intent on Intents and Filters (Android Developers) The application