SecUSo / privacy-friendly-shopping-list

Privacy Friendly App to create and manage shoppings lists on Android devices.
Apache License 2.0
63 stars 37 forks source link

Use intent instead of camera #19

Closed Yonjuni closed 7 years ago

Yonjuni commented 7 years ago

By using an intent that accesses a camera app, the camera permission can be saved

ifillbrito commented 7 years ago

The first implementation was done by using an intent, but we had the problem that the camera app could not save the photo inside of the shopping list app and the shopping list app could not read the URL given by the camera app because of not having the external storage permission. So there was no way (meaning we didn't find a way, maybe there is one) to pass the photo to the shopping list app. The thumbnail can be passed through the intent, but the real images are too big and therefore only the URL can be passed.

We had to make a decision between Camera and External Storage Permission.

Yonjuni commented 7 years ago

Okay, thanks for explaining.