Info.plist 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3. <plist version="1.0">
  4. <dict>
  5. <!-- The Mac App Store requires you specify if the app uses encryption. -->
  6. <!-- Please consult https://developer.apple.com/documentation/bundleresources/information_property_list/itsappusesnonexemptencryption -->
  7. <!-- <key>ITSAppUsesNonExemptEncryption</key> -->
  8. <!-- Please indicate <true/> or <false/> here. -->
  9. <!-- Specify the category for your app here. -->
  10. <!-- Please consult https://developer.apple.com/documentation/bundleresources/information_property_list/lsapplicationcategorytype -->
  11. <!-- <key>LSApplicationCategoryType</key> -->
  12. <!-- <string>public.app-category.YOUR-CATEGORY-HERE</string> -->
  13. <key>UIDeviceFamily</key>
  14. <array>
  15. <integer>2</integer>
  16. </array>
  17. <key>LSApplicationCategoryType</key>
  18. <string>public.app-category.lifestyle</string>
  19. <key>UIRequiredDeviceCapabilities</key>
  20. <array>
  21. <string>arm64</string>
  22. </array>
  23. <key>UISupportedInterfaceOrientations</key>
  24. <array>
  25. <string>UIInterfaceOrientationPortrait</string>
  26. <string>UIInterfaceOrientationLandscapeLeft</string>
  27. <string>UIInterfaceOrientationLandscapeRight</string>
  28. </array>
  29. <key>UISupportedInterfaceOrientations~ipad</key>
  30. <array>
  31. <string>UIInterfaceOrientationPortrait</string>
  32. <string>UIInterfaceOrientationPortraitUpsideDown</string>
  33. <string>UIInterfaceOrientationLandscapeLeft</string>
  34. <string>UIInterfaceOrientationLandscapeRight</string>
  35. </array>
  36. <key>XSAppIconAssets</key>
  37. <string>Assets.xcassets/appicon.appiconset</string>
  38. </dict>
  39. </plist>