'Screenshot (share_screenshot_as_stream) is no longer shared
Currently, I am developing an Android application that saves bookmarks using the shared information of the browser.
Until version 92 of chrome, if you select [Share] ⇒ [App under development] from Chrome on Android, the screenshot information of the site opened in Chrome was also shared to the application side, but version 93.0.4577.62 It is no longer shared after updating to.
<activity
android:name=".aaa.bbb.cccActivity"
android:exported="true"
android:label="ccc"
android:screenOrientation="portrait"
tools:ignore="LockedOrientationActivity">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
</activity>
Previously it was possible to share with the above settings. Since it is no longer shared after chrome version 93, please tell me how to set the intent-filter to share share_screenshot_as_stream.
I have already queried a bug report for chrome. Please check here for details. https://bugs.chromium.org/p/chromium/issues/detail?id=1249037
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
