boxme / SquareCamera

Android Camera Library For Square Photo Taking
MIT License
569 stars 189 forks source link

Tapping checkmark doesn't close camera. #65

Open b-antczak opened 7 years ago

b-antczak commented 7 years ago

Once I take a picture and I like the preview, I tap the checkmark to close the camera but it doesn't; in fact nothing happens when I tap the checkmark. What's up??

andresrivero commented 6 years ago

Hey. Sounds like it doesn't have permissions to save. Try making sure these uses are in your AndroidManifest.xml file:

<uses-permission android:name="android.permission.CAMERA" /> <uses-feature android:name="android.hardware.camera" android:required="false" /> <uses-feature android:name="android.hardware.camera.autofocus" android:required="false" /> <uses-feature android:name="android.hardware.camera.flash" android:required="false" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />