I added the intent-filter to ApplicationManifest.xml to take my app to "Share via" Dialog:
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
How can I handle the request from another app.
1 Is it possible to differentiate between directly app-start and sharing start?
2 How to get access to sharing data?