You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 1, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,18 @@ ALCameraViewController is available on CocoaPods. Add the following to your Podf
24
24
pod 'ALCameraViewController'
25
25
```
26
26
27
+
### Privacy (iOS 10) ###
28
+
If you are building your app with iOS 10 or newer, you need to add two privacy keys to your app's `Info.plist` to allow the usage of the camera and photo library, or your app will crash.
29
+
30
+
Add the keys below to the `<dict>` tag of your `Info.plist`, replacing the strings with the description you want to provide when prompting the user:
31
+
32
+
```
33
+
<key>NSPhotoLibraryUsageDescription</key>
34
+
<string>Enable Photos access to import photos from your library.</string>
0 commit comments