SilkFX: enable sharing to the app.

SilkFX previously enabled VIEW intent, so you could "open with" the app
on an image file for the Gain Map viewer. This change also adds support
for the SEND intent, so you can "share to" the app from other apps.

Bug: 280608957
Test: Share to works from Files and Photos, open with still works.
Change-Id: If647471fcf10ce6395300a9c38aa7e05379dfe85
diff --git a/tests/SilkFX/AndroidManifest.xml b/tests/SilkFX/AndroidManifest.xml
index 1b8e08b..c293589 100644
--- a/tests/SilkFX/AndroidManifest.xml
+++ b/tests/SilkFX/AndroidManifest.xml
@@ -63,6 +63,11 @@
                 <category android:name="android.intent.category.DEFAULT"/>
                 <data android:mimeType="image/*"/>
             </intent-filter>
+            <intent-filter>
+                <action android:name="android.intent.action.SEND" />
+                <category android:name="android.intent.category.DEFAULT" />
+                <data android:mimeType="image/*" />
+            </intent-filter>
         </activity>
 
     </application>