Activity with "android.intent.action.SEND" intent filter is not showing up in list when sharing photo from stock Google Photos app -
i have android app activity intent filter set receive photos , videos. declared in androidmanifest.xml so:
<activity android:name="com.foo.gallery.app.activity.recievephotosactivity" android:label="@string/photoapp_gallery_common_app_name" android:exported="true" android:configchanges="orientation|keyboardhidden|screensize" > <intent-filter > <action android:name="android.intent.action.send" /> <action android:name="android.intent.action.send_multiple" /> <category android:name="android.intent.category.default" /> <data android:mimetype="image/*" /> <data android:mimetype="video/*" /> </intent-filter> </activity>
however, when going stock lollipop photos app , sharing photo, app not appear in list.
my app appear in share list when sharing other apps, onedrive, dropbox, , quickpic. stock photos app 1 i've found far app doesn't show up.
i found problem. app named "photos" - same stock photos app. guess google decided hide apps same name in share list.
Comments
Post a Comment