iOS Info.plist Builder
v1.0.0Common Info.plist keys helper — usage descriptions, URL types, supported orientations.
Info.plist entries
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>CFBundleIdentifier</key> <string>com.example.myapp</string> <key>CFBundleDisplayName</key> <string>My App</string> <key>NSCameraUsageDescription</key> <string>This app requires camera access to take photos.</string> <key>NSPhotoLibraryUsageDescription</key> <string>This app requires photo library access to select images.</string> <key>NSLocationWhenInUseUsageDescription</key> <string>This app uses your location to show nearby content.</string> </dict> </plist>