mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-29 13:26:50 +01:00
Fix opening screenshots from notification on external apps
This commit is contained in:
parent
849337b447
commit
12dd9651e7
@ -395,6 +395,7 @@ public abstract class AbstractDeviceSupport implements DeviceSupport {
|
|||||||
intent.setAction(android.content.Intent.ACTION_VIEW);
|
intent.setAction(android.content.Intent.ACTION_VIEW);
|
||||||
Uri screenshotURI = FileProvider.getUriForFile(context, context.getApplicationContext().getPackageName() + ".screenshot_provider", new File(fullpath));
|
Uri screenshotURI = FileProvider.getUriForFile(context, context.getApplicationContext().getPackageName() + ".screenshot_provider", new File(fullpath));
|
||||||
intent.setDataAndType(screenshotURI, "image/*");
|
intent.setDataAndType(screenshotURI, "image/*");
|
||||||
|
intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
|
||||||
|
|
||||||
PendingIntent pIntent = PendingIntentUtils.getActivity(context, 0, intent, 0, false);
|
PendingIntent pIntent = PendingIntentUtils.getActivity(context, 0, intent, 0, false);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user