You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to MIT App Inventor Forum
I have built an app that picks mp3 files from the SD card using Activity Starter and AndExplorer. The files are used for building playlists. On Android 5.0 it works fine, but in Android 7.0 I get this message: file:///sdcard exposed beyond app through Intent.getData() -and the program stops.
-and I don't even know what the message means. Could someone please explain it in simple english :-) Thanks.
SteveJG
unread,
Nov 2, 2018, 8:42:15 AM11/2/18
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to MIT App Inventor Forum
Google removed the ability to use file:/// as a security change with intents (the ActivityStarter is how AI2 uses intents)File:// is not permitted in an Intent anymore on Android 7+. If it is used, it will throwFileUriExposedException You can not use your neat method using Activity starter to capture files on the external sdCard.
You might be able to use Taifun's File extension.
Regards,
Steve
Preben Palsgaard
unread,
Nov 2, 2018, 9:49:23 AM11/2/18
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message