extrainfo.plist 852 B

12345678910111213141516171819202122232425262728293031
  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. <key>CFBundleVersion</key>
  6. <string>0.0.0</string>
  7. <key>CFBundleIdentifier</key>
  8. <string>x.y.z.z.y</string>
  9. <key>LSApplicationCategoryType</key>
  10. <string>public.app-category.games</string>
  11. <key>TestKeyString</key>
  12. <string>String data</string>
  13. <key>TestKeyBool</key>
  14. <true/>
  15. <key>TestKeyInt</key>
  16. <integer>12345</integer>
  17. <key>TestKeyArray</key>
  18. <array>
  19. <string>public.content</string>
  20. <string>public.data</string>
  21. </array>
  22. <key>TestKeyDict</key>
  23. <dict>
  24. <key>Number</key>
  25. <integer>98765</integer>
  26. <key>CFBundleVersion</key>
  27. <string>0.0.0</string>
  28. </dict>
  29. </dict>
  30. </plist>